About This File
*** THIS FILE IS ALSO NOW IN THE DEMO SECTION TO ENABLE THE "TRY IT NOW" FEATURE ***
This may be of interest to absolute 6502 assembly beginners like me, although advanced 6502 programmers may cringe at the way I've done things here! This program does very little, but it is a repository of useful assembly routines for things like printing different bytes of memory (useful for debugging) as well as some basic math operations. I will keep adding to this as I progress through my assembly journey (I'm aiming to write my fractal BASIC programs in assembly).
Thanks to the following YouTubers for their excellent tutorials on all things 6502:
ChibiAkumas - YouTube (and also his excellent website: Assembly Tutorials: Learn 6502 Assembly Programming... With ChibiAkumas!)
Function usage: (notation for cc65 assembler)
jsr print
.byte (list of PETSCII character codes to print, ending in a $0 byte)
jsr println
.byte (list of PETSCII character codes to print, ending in a $0 byte)
jsr print_mem
.word (start address of memory dump)
Set MEMDUMPLEN to the number of addresses you wish print_mem to display.
What's New in Version 0.0.2 See changelog
Released
Added some functions including:
print_dec
print the contents of A as a decimal - adapted from the very useful: Number output in 6502 machine code - BeebWiki (mdfs.net)
neg_8
perform a 2s complement negate on the contents of A
Updated the print_mem function to include the decimal representation of the byte in memory. (Doesn't account for 2s complement negative numbers yet...)
With version 0.0.2:
- Download