[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Online 6502 Assembly Tutorial with embedded JavaScript emulator which acts as assembler, machine, and debugger in one.



On Wednesday, February 6, 2013 3:03:53 AM UTC-6, nyder wrote:
> http://skilldrick.github.com/easy6502/
> 
> 
> 
> Saw this on Hack-a-Day.

It's cute, but only marginally useful IMHO.  The hardest part about learning ASM coding is understanding the interaction of the registers and flags.  It really requires a stepwise debugger to see what is going on, understand how branching is occurring and so on.  Without the ability to step a running program, it's only marginally useful since you have to guess-and-check.

I like that it has a small graphics mode built in though, that can be useful.

That being said, I've seen some other cool ASM tools to add to the list.

http://www.visual6502.org/JSSim/
 -- Click on Advanced to get good trace information, links to easy6502 as well

http://e-tradition.net/bytes/6502/assembler.html
 -- Set of online tools include an assembler, disassembler and 6502 emulator with debugger

-B