You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
393 B
PHTML
22 lines
393 B
PHTML
;
|
|
; zeropage.inc
|
|
;
|
|
; (C) Copyright 2002 Ullrich von Bassewitz (uz@cc65.org)
|
|
;
|
|
|
|
; Assembler include file that imports the runtime zero page locations used
|
|
; by the compiler, ready for usage in asm code.
|
|
|
|
.importzp sp, sreg, regsave
|
|
.importzp ptr1, ptr2, ptr3, ptr4
|
|
.importzp tmp1, tmp2, tmp3, tmp4
|
|
.importzp regbank
|
|
|
|
; The total amount of zero page space used
|
|
|
|
zpspace = 26
|
|
|
|
|
|
|
|
|