1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

remove abc ptrs

This commit is contained in:
Brian Peek 2023-10-06 19:51:36 -07:00
parent 12193790e5
commit 32a20cf5ca
2 changed files with 0 additions and 15 deletions

View File

@ -12,10 +12,6 @@
.global __iodir: zp .global __iodir: zp
.global __viddma: zp .global __viddma: zp
.global __sprsys: zp .global __sprsys: zp
.global _abc_score_ptr0: zp
.global _abc_score_ptr1: zp
.global _abc_score_ptr2: zp
.global _abc_score_ptr3: zp
.global _FileEntry: zp .global _FileEntry: zp
.global _FileStartBlock: zp .global _FileStartBlock: zp
.global _FileBlockOffset: zp .global _FileBlockOffset: zp
@ -25,6 +21,3 @@
.global _FileCurrBlock: zp .global _FileCurrBlock: zp
.global _FileBlockByte: zp .global _FileBlockByte: zp
.global _FileDestPtr: zp .global _FileDestPtr: zp

View File

@ -16,13 +16,6 @@ __iodir: .res 1
__viddma: .res 1 __viddma: .res 1
__sprsys: .res 1 __sprsys: .res 1
; ------------------------------------------------------------------------
; 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 ; Filesystem variables needed for reading stuff from the Lynx cart
_FileEntry: ; The file directory entry is 8 bytes _FileEntry: ; The file directory entry is 8 bytes
@ -35,4 +28,3 @@ _FileFileLen: .res 2
_FileCurrBlock: .res 1 _FileCurrBlock: .res 1
_FileBlockByte: .res 2 _FileBlockByte: .res 2
_FileDestPtr: .res 2 _FileDestPtr: .res 2