mirror of
https://github.com/cc65/cc65.git
synced 2025-03-30 04:31:37 +00:00
15 lines
189 B
ArmAsm
15 lines
189 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
;
|
|
; Screen size variables
|
|
;
|
|
|
|
.export screensize
|
|
|
|
.include "../apple2/apple2.inc"
|
|
|
|
screensize:
|
|
ldx WNDWDTH
|
|
ldy #24
|
|
rts
|