mirror of
https://github.com/cc65/cc65.git
synced 2025-02-06 12:31:12 +00:00
16 lines
128 B
ArmAsm
16 lines
128 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 26.10.2000
|
||
|
;
|
||
|
; Screen size variables
|
||
|
;
|
||
|
|
||
|
.export xsize, ysize
|
||
|
|
||
|
.bss
|
||
|
|
||
|
xsize: .res 1
|
||
|
ysize: .res 1
|
||
|
|
||
|
|
||
|
|