There is plenty of ways to play around with the old 6502 prossesor, but I'd say that the best plase to try it for the first time is here
skilldrick.github.io/easy6502
There is a good amount of infomation on this page to really get to learn about the CPU arkitecture with not that much else to learn.
But if you'd like to go with just one text fuild to write code in, then there is a more cut down page from the same site
skilldrick.github.io/easy6502/simulator.html
Then there is the needed docs for every instroction the 6502 supports (only legal instructions work in the emulator)
www.masswerk.at/6502/6502_instruction_set.html
There is one thing the emulator won't tell you, that is it has support for hardcoding values/data using the Assembler directive DCB, it's only taking one byte at a time, but you can use it with multiple bytes sepperated with a comma (a byte holds a value from 0 to 255 or also writen as $00 to $FF)
0 comments