mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 03:04:31 +00:00
bf42f56500
git-svn-id: svn://svn.cc65.org/cc65/trunk@1306 b7a2c559-68d2-44c3-8de9-860c34a00d81
23 lines
394 B
PHP
23 lines
394 B
PHP
;
|
|
; 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
|
|
|
|
|
|
|
|
|