mirror of
https://github.com/cc65/cc65.git
synced 2026-04-20 17:20:49 +00:00
Allocate own zp pointer for conio implementation
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
;
|
||||
; extzp.inc for the Atari 7800
|
||||
;
|
||||
; Karri Kaksonen, 2022-04-05
|
||||
;
|
||||
; Assembler include file that imports the runtime zero page locations used
|
||||
; by the atari7800 runtime, ready for usage in asm code.
|
||||
;
|
||||
|
||||
.global ptr7800: zp
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
;
|
||||
; Karri Kaksonen, 2022-04-05
|
||||
;
|
||||
; zeropage locations for exclusive use by the library
|
||||
;
|
||||
|
||||
.include "extzp.inc"
|
||||
|
||||
.segment "EXTZP" : zeropage
|
||||
|
||||
ptr7800: .res 2
|
||||
Reference in New Issue
Block a user