1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-02 06:56:39 +00:00
cc65/libsrc/atari/save_area.s
Christian Groessler 2f6e7874c6 "save area" is used to save modified system variables and ports. It's
shared between the second and main chunk.
2013-05-30 02:31:25 +02:00

26 lines
449 B
ArmAsm

;
; Atari XL, shared data between 2nd load chunk and main chunk
;
; Contains old values of modified system variables and ports.
;
; Christian Groessler, chris@groessler.org, 2013
;
.if .defined(__ATARIXL__)
.export SAVMSC_save
.export MEMTOP_save
.export APPMHI_save
.export RAMTOP_save
.export PORTB_save
.segment "SAVEAREA"
SAVMSC_save: .res 2
MEMTOP_save: .res 2
APPMHI_save: .res 2
RAMTOP_save: .res 1
PORTB_save: .res 1
.endif