Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NES Game development: ASM6 tutorials?

I'm a NES development newbie and I've found the Nerdy Nights tutorials really handy, but it uses nesasm. As I understand it, ASM6 is much better than nesasm. Does it have comparable tutorials somewhere that I can look up?

Also, is there an official ASM6 page? The version I have of ASM6 is 1.51 and I have no idea if there's a more recent version.

like image 821
djcouchycouch Avatar asked May 28 '11 18:05

djcouchycouch


1 Answers

The ASM6 download (http://home.comcast.net/~olimar/NES/) has most of the basic language information in the README.TXT file packaged with it. This information spells out the specific unique features in ASM6, but that's where the uniqueness ends. Since ASM6 is simply geared toward 6502 processors and is not NES specific, it can do whatever you program it to do. The good news is, since it's basically just assembly, you can continue to use your nesasm tutorials. Just read up on the specific differences in the languages, like comment syntax or labeling, and you should be good to go.

Also, that version I linked at the top is for ASM6 v1.6. Enjoy!

like image 196
James Tomasino Avatar answered Oct 17 '22 21:10

James Tomasino