2004-11-06 13:51:02 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2004-11-06
|
|
|
|
;
|
|
|
|
; zeropage locations for exclusive use by the library
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "extzp.inc"
|
|
|
|
|
|
|
|
.segment "EXTZP" : zeropage
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; mikey and suzy shadow registers
|
|
|
|
|
|
|
|
__iodat: .res 1
|
|
|
|
__iodir: .res 1
|
|
|
|
__viddma: .res 1
|
|
|
|
__sprsys: .res 1
|
|
|
|
|
2004-11-29 16:03:00 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; sound effect pointers for multitimbral Lynx music hardware
|
|
|
|
_abc_score_ptr0: .res 2
|
|
|
|
_abc_score_ptr1: .res 2
|
|
|
|
_abc_score_ptr2: .res 2
|
|
|
|
_abc_score_ptr3: .res 2
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Filesystem variables needed for reading stuff from the Lynx cart
|
2013-05-09 11:56:54 +00:00
|
|
|
_FileEntry: ; The file directory entry is 8 bytes
|
2004-11-29 16:03:00 +00:00
|
|
|
_FileStartBlock: .res 1
|
|
|
|
_FileBlockOffset: .res 2
|
|
|
|
_FileExecFlag: .res 1
|
|
|
|
_FileDestAddr: .res 2
|
|
|
|
_FileFileLen: .res 2
|
|
|
|
|
|
|
|
_FileCurrBlock: .res 1
|
|
|
|
_FileBlockByte: .res 2
|
|
|
|
_FileDestPtr: .res 2
|
2004-11-06 13:51:02 +00:00
|
|
|
|