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