mastodon.gamedev.place is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server focused on game development and related topics.

Server stats:

5.1K
active users

#mos6502

3 posts3 participants0 posts today
root42<p>Now <a href="https://chaos.social/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> seminar with svolli<br><a href="https://chaos.social/tags/Revision2025" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Revision2025</span></a></p>
root42<p>Thanks to svolli I now own two fake 65C02 -- which are actually real 6502! Oh how the tables have turned...<br><a href="https://chaos.social/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a></p>
Armin Hanisch<p>Für alle Retrofans und Liebhaber des Commodore PET (und des 6502): <a href="https://www.masswerk.at/pet/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="">masswerk.at/pet/</span><span class="invisible"></span></a><br>Cooler Emulator und Du kannst nicht nur Programme per Drag &amp; Drop auf den Bildschirm laden, sondern auch einfach Assembler-Quellcode dort ablegen und übersetzen lassen. 😎</p><p><a href="https://bildung.social/tags/PET" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PET</span></a> <a href="https://bildung.social/tags/RetroComputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RetroComputing</span></a> <a href="https://bildung.social/tags/MOS6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MOS6502</span></a> <a href="https://bildung.social/tags/Assembler" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Assembler</span></a></p>
Felix Palmen :freebsd: :c64:<p><span class="h-card" translate="no"><a href="https://fosstodon.org/@jbqueru" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>jbqueru</span></a></span> <span class="h-card" translate="no"><a href="https://mastodon.bsd.cafe/@gumnos" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>gumnos</span></a></span> <span class="h-card" translate="no"><a href="https://mastodon.bsd.cafe/@mms" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>mms</span></a></span> Well, it has a PC of course, which is technically an "address register" 😏 not a general-purpose one though.</p><p>Instructions are simple 8bit values (operation and mode combined to one opcode) and regarding which modes are available for which operation, I'd say you get quickly used to it. It's (partially) related to the purposes of the registers. None is really "general purpose", only A comes close, but yep, it can't do one thing X and Y can do: count.</p><p><a href="https://mastodon.bsd.cafe/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> coders use the "<a href="https://mastodon.bsd.cafe/tags/zeropage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>zeropage</span></a>" in a way you'd otherwise use additional registers, which makes a lot of sense. The clocks for RAM and CPU are the same, RAM accesses need few clock cycles, and for the zeropage even fewer. There you can have your "address registers", 16 bits stored in little-endian.</p>
Laurent FRANCOISE<p>Je rattrape (un peu) mon retard dans les montages à assembler avec ces deux "NOP testers" pour <a href="https://piaille.fr/tags/z80" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>z80</span></a> et <a href="https://piaille.fr/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <br>Et un NOP testeur céquoidon ? C'est un montage qui permet de vérifier qu'un microprocesseur est vivant en présentant la commande NOP sur le bus de données (câblée en dur sur le circuit) et en regardant ce qu'il se passe sur le bus d'adresse : la commande NOP ne faisant rien le processeur passe juste à l'instruction suivante ce qui a pour effet d'incrémenter l'adresse, visualisée ici avec une série de LEDs.<br>L'horloge est ici un 555 pour que ça aille assez lentement pour y voir quelque chose !<br><a href="https://piaille.fr/tags/retrocomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>retrocomputing</span></a></p>
µP<p>Just received the "W.O.P.R. 64" cartridge for the <a href="https://mastodon.social/tags/C64" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>C64</span></a> expansion port. It features 32 LEDs to indicating signals on the <a href="https://mastodon.social/tags/MOS6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MOS6502</span></a> address and data busses and for 8 control port indicators:</p><p><a href="https://www.tindie.com/products/thedarkforest/wopr64-for-commodore-64/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">tindie.com/products/thedarkfor</span><span class="invisible">est/wopr64-for-commodore-64/</span></a></p><p><a href="https://mastodon.social/tags/RetroComputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RetroComputing</span></a> <a href="https://mastodon.social/tags/Commodore64" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Commodore64</span></a></p>
Screwtapello<p>It finally occurred to me that my 6502 instruction database is unhelpful for writing an emulator: it records that certain instructions can take a variable number of cycles, but not the cause of the variation. As a result, it can't represent things like "an Absolute Indexed With X addressing mode takes an extra cycle for crossing a page boundary, unless the instruction writes a value, unless it reads *and* writes, unless it's INC or DEC". That information would have to be hard-coded into the emulator, and that undermines the values of having a machine-readable reference.</p><p>So I'm going to have to expand it to report more detail about the variable cycles, instead of just adding them up.</p><p><a href="https://gitlab.com/Screwtapello/isa65xx" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">gitlab.com/Screwtapello/isa65x</span><span class="invisible">x</span></a></p><p><a href="https://teh.entar.net/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <a href="https://teh.entar.net/tags/WDC6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>WDC6502</span></a></p>
The Oasis BBS<p>Illegal Opcodes of the MOS 6502: Glitches That Work<br><a href="https://techhub.social/tags/MOS6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MOS6502</span></a> <a href="https://techhub.social/tags/Commodore64" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Commodore64</span></a> <a href="https://techhub.social/tags/C64" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>C64</span></a> <a href="https://techhub.social/tags/RetroComputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RetroComputing</span></a> <a href="https://techhub.social/tags/Assembler" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Assembler</span></a> <a href="https://techhub.social/tags/IllegalOpcodes" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IllegalOpcodes</span></a> <a href="https://techhub.social/tags/Tech" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Tech</span></a> <a href="https://techhub.social/tags/Secrets" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Secrets</span></a> <a href="https://techhub.social/tags/Opcodes" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Opcodes</span></a> <a href="https://techhub.social/tags/CPU" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CPU</span></a> <a href="https://techhub.social/tags/Programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programming</span></a> <a href="https://techhub.social/tags/TechHistory" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TechHistory</span></a> <a href="https://techhub.social/tags/ReverseEngineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ReverseEngineering</span></a> <a href="https://techhub.social/tags/VintageTech" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VintageTech</span></a><br><a href="https://theoasisbbs.com/illegal-opcodes-of-the-mos-6502-glitches-that-work/?feed_id=2575&amp;_unique_id=67ed37a91512c" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">theoasisbbs.com/illegal-opcode</span><span class="invisible">s-of-the-mos-6502-glitches-that-work/?feed_id=2575&amp;_unique_id=67ed37a91512c</span></a></p>
The Oasis BBS<p>Unearthing Commodore 64’s Hidden Illegal Opcodes<br><a href="https://techhub.social/tags/Commodore64" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Commodore64</span></a> <a href="https://techhub.social/tags/RetroProgramming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RetroProgramming</span></a> <a href="https://techhub.social/tags/MOS6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MOS6502</span></a> <a href="https://techhub.social/tags/C64" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>C64</span></a> <a href="https://techhub.social/tags/IllegalOpcodes" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IllegalOpcodes</span></a> <a href="https://techhub.social/tags/VintageComputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VintageComputing</span></a> <a href="https://techhub.social/tags/8bitMagic" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>8bitMagic</span></a> <a href="https://techhub.social/tags/IllegalOpcodes" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IllegalOpcodes</span></a> <a href="https://techhub.social/tags/RetroComputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RetroComputing</span></a> <a href="https://techhub.social/tags/Assembler" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Assembler</span></a> <a href="https://techhub.social/tags/Coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Coding</span></a> <a href="https://techhub.social/tags/Secrets" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Secrets</span></a> <a href="https://techhub.social/tags/Retro" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Retro</span></a> <a href="https://techhub.social/tags/Hacking" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Hacking</span></a> <a href="https://techhub.social/tags/OldSchool" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OldSchool</span></a><br><a href="https://theoasisbbs.com/unearthing-commodore-64s-hidden-illegal-opcodes/?feed_id=2467&amp;_unique_id=67e69dd2278fc" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">theoasisbbs.com/unearthing-com</span><span class="invisible">modore-64s-hidden-illegal-opcodes/?feed_id=2467&amp;_unique_id=67e69dd2278fc</span></a></p>
𝚜𝚞𝚣𝚊<p><a href="https://mastodon.social/tags/vcfe" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vcfe</span></a> <a href="https://mastodon.social/tags/vintagecomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vintagecomputing</span></a> <a href="https://mastodon.social/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <a href="https://mastodon.social/tags/commodorepet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>commodorepet</span></a> <a href="https://mastodon.social/tags/muenchen" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>muenchen</span></a></p>
𝚜𝚞𝚣𝚊<p>Mein PET hat gerade den nächsten Termin eingetippt: 3./4. Mai 2025 VCFe in München </p><p><a href="https://mastodon.social/tags/VCFe2025" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VCFe2025</span></a> <a href="https://mastodon.social/tags/vintagecomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vintagecomputing</span></a> <a href="https://mastodon.social/tags/CommodorePET" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CommodorePET</span></a> <a href="https://mastodon.social/tags/6502Forever" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>6502Forever</span></a> <a href="https://mastodon.social/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <a href="https://mastodon.social/tags/vcfe24" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vcfe24</span></a> <a href="https://mastodon.social/tags/VCFe" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VCFe</span></a> <a href="https://mastodon.social/tags/vintagecomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vintagecomputing</span></a> <a href="https://mastodon.social/tags/retrocomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>retrocomputing</span></a> <a href="https://mastodon.social/tags/muenchen" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>muenchen</span></a></p><p>Vintage Computer Festival Europa</p>
André Fachat<p>I am getting somewhere... <a href="https://mastodon.online/tags/8bit" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>8bit</span></a> <a href="https://mastodon.online/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a></p>
zeratul2099Today I noticed that the mighty 6502, the processor that not only powered all Atari 8-bit computers and consoles but also those from Apple, Commodore, Acorn, Nintendo and many more, turns 50(!) this year 😰<br> <br> Do you feel old yet? 🧓<br> <br> Pictured is the interior of the Atari 7800 with its 6502. So this is my final and last minute <a href="https://pixelfed.social/discover/tags/febratari?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#febratari</a> post<br> <br> <a href="https://pixelfed.social/discover/tags/retrogaming?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#retrogaming</a> <a href="https://pixelfed.social/discover/tags/retrocomputing?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#retrocomputing</a> <a href="https://pixelfed.social/discover/tags/videogamehistory?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#videogamehistory</a> <a href="https://pixelfed.social/discover/tags/videogames?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#videogames</a> <a href="https://pixelfed.social/discover/tags/atari?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#atari</a> <a href="https://pixelfed.social/discover/tags/atari7800?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#atari7800</a> #6502 <a href="https://pixelfed.social/discover/tags/mos6502?src=hash" class="u-url hashtag" rel="nofollow noopener noreferrer" target="_blank">#mos6502</a>
Atari Scene News<p>A webdemo dedicated to the MOS Technology 6502 microprocessor whose 50th anniversary we will celebrate this year, in the Sally version used in all <a href="https://mastodon.world/tags/Atari8bit" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Atari8bit</span></a> computers, original Atari 400/800 NTSC apart <a href="https://krystone.pl/6502/?Sally" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">krystone.pl/6502/?Sally</span><span class="invisible"></span></a> <a href="https://mastodon.world/tags/atari" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>atari</span></a> <a href="https://mastodon.world/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <a href="https://mastodon.world/tags/retrocomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>retrocomputing</span></a></p>
Profoundly Nerdy<p>I've tried several disassembly and reverse engineering projects. I always get stuck and the projects peter out. I'm mostly interested in working <a href="https://bitbang.social/tags/C64" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>C64</span></a> binaries back to maintainable <a href="https://bitbang.social/tags/asm" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>asm</span></a> source code. Some people call this source code archaeology. I'm at least 0/5.</p><p>I've kept to 4-8kB binaries without copy protection. Nothing crazy. Any suggestions on RE workflow or anything else that will improve my odds of success?</p><p><a href="https://bitbang.social/tags/revereengineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>revereengineering</span></a> <a href="https://bitbang.social/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <a href="https://bitbang.social/tags/retrocomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>retrocomputing</span></a> <a href="https://bitbang.social/tags/programmimg" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmimg</span></a></p>
Paolo Amoroso<p>Nemanja Trifunovic argues that the 6502 is a good instruction set for learning to program in Assembly.</p><p><a href="https://nemanjatrifunovic.substack.com/p/6502-is-a-good-starting-point-for" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">nemanjatrifunovic.substack.com</span><span class="invisible">/p/6502-is-a-good-starting-point-for</span></a></p><p><a href="https://fosstodon.org/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <a href="https://fosstodon.org/tags/assembly" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>assembly</span></a> <a href="https://fosstodon.org/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a></p>
At Mind<p>Apparently in 2025 the world still needs another 6502 assembler. So I made one <a href="https://docs.rs/c64-assembler/0.1.0/c64_assembler/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">docs.rs/c64-assembler/0.1.0/c6</span><span class="invisible">4_assembler/</span></a> <a href="https://mstdn.social/tags/RetroComputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RetroComputing</span></a> <a href="https://mstdn.social/tags/rust" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>rust</span></a> <a href="https://mstdn.social/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a></p>
Woodoo Prod<p>The 6502 CPU Powered a Whole Generation!</p><p><a href="https://youtu.be/acUH4lWe2NQ?feature=shared" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">youtu.be/acUH4lWe2NQ?feature=s</span><span class="invisible">hared</span></a></p><p><a href="https://mastodon.cloud/tags/CPU" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CPU</span></a> <a href="https://mastodon.cloud/tags/mos" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos</span></a> <a href="https://mastodon.cloud/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> #6502<br><a href="https://mastodon.cloud/tags/apple" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>apple</span></a> <a href="https://mastodon.cloud/tags/atari" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>atari</span></a> <a href="https://mastodon.cloud/tags/commodore" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>commodore</span></a> <a href="https://mastodon.cloud/tags/pet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pet</span></a> <a href="https://mastodon.cloud/tags/vic20" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vic20</span></a> <a href="https://mastodon.cloud/tags/oric" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>oric</span></a> <a href="https://mastodon.cloud/tags/acorn" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>acorn</span></a> <a href="https://mastodon.cloud/tags/electron" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>electron</span></a> <a href="https://mastodon.cloud/tags/bbc" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>bbc</span></a> <a href="https://mastodon.cloud/tags/arcade" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>arcade</span></a> <a href="https://mastodon.cloud/tags/toys" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>toys</span></a> <a href="https://mastodon.cloud/tags/vtech" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vtech</span></a> <a href="https://mastodon.cloud/tags/nintendo" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>nintendo</span></a> <a href="https://mastodon.cloud/tags/nes" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>nes</span></a> <a href="https://mastodon.cloud/tags/snes" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>snes</span></a> <a href="https://mastodon.cloud/tags/turbographx" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>turbographx</span></a> <a href="https://mastodon.cloud/tags/lynx" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>lynx</span></a> ..and so on..</p><p><a href="https://mastodon.cloud/tags/retrogaming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>retrogaming</span></a> <a href="https://mastodon.cloud/tags/retrocomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>retrocomputing</span></a> <a href="https://mastodon.cloud/tags/vntagecomputers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vntagecomputers</span></a> <a href="https://mastodon.cloud/tags/vintagecomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>vintagecomputing</span></a> <a href="https://mastodon.cloud/tags/oldcomputers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>oldcomputers</span></a> <a href="https://mastodon.cloud/tags/oldcomputing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>oldcomputing</span></a> <a href="https://mastodon.cloud/tags/history" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>history</span></a></p>
0x10f<p><span class="h-card" translate="no"><a href="https://hackers.town/@maddiefuzz" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>maddiefuzz</span></a></span> <span class="h-card" translate="no"><a href="https://oldbytes.space/@millihertz" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>millihertz</span></a></span> I'm bothered more by the weird unorthogonality of the direct indexed addressing modes. For example, there is:<br>- LDA absolute,x and LDA zeropage,x and LDA absolute,y but no LDA zeropage,y<br>- ASL absolute,x and ASL zeropage,x but no ASL absolute,y or ASL zeropage,y<br>- LDX zeropage,y and LDX absolute,y and STX zeropage,y but no STX absolute,y<br>- LDY zeropage,x and LDY absolute,x and STY zeropage,x but no STY absolute,x<br>- no indexed modes at all for CPX and CPY<br><a href="https://tech.lgbt/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a></p>
Ellie<p>All the addressing modes and operators implemented, a (unsynchronized) clock, a byte array 0x0000-0xffff bolted on as temporary ram, and a tiny bit of machine code jammed into the first dozen bytes by main.</p><p>This silly little computer can loop and increment the number at 0x0f forever!</p><p><a href="https://ellieayla.net/tags/mos6502" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mos6502</span></a> <a href="https://ellieayla.net/tags/nes_emulator" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>nes_emulator</span></a></p>