snake6502/src/zeropage.asm

18 lines
463 B
NASM
Raw Normal View History

2020-04-01 19:11:08 +00:00
; Zero page utility pointers
; ----------------------------------------------------------------------
; Where is the snake head in video memory? Do math to calculate address
; using pointer at tileMem,tileMem+1
tileMem DS 2
; Pointer to status string
printStatusString DS 2
; Pointer to intro string
printIntroString DS 2
2020-04-01 19:11:08 +00:00
; Pointer to screen position where to print intro string
introScreenStart DS 2
2020-04-01 19:11:08 +00:00
; Note: Locations $90-$FF in zeropage are used by kernal