mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
18 lines
186 B
ArmAsm
18 lines
186 B
ArmAsm
|
;
|
||
|
; Screen size variables
|
||
|
;
|
||
|
|
||
|
|
||
|
|
||
|
.export _screensize
|
||
|
_screensize:
|
||
|
ldx xsize
|
||
|
ldy ysize
|
||
|
rts
|
||
|
|
||
|
.rodata
|
||
|
.export xsize, ysize
|
||
|
|
||
|
xsize: .byte 64
|
||
|
ysize: .byte 28
|