mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +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
|