mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
19 lines
208 B
ArmAsm
19 lines
208 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 26.10.2000
|
||
|
;
|
||
|
; Screen size variables
|
||
|
;
|
||
|
|
||
|
.export screensize
|
||
|
|
||
|
.include "../apple2/apple2.inc"
|
||
|
|
||
|
.proc screensize
|
||
|
|
||
|
ldx WNDWDTH
|
||
|
ldy #24
|
||
|
rts
|
||
|
|
||
|
.endproc
|
||
|
|