mirror of
https://github.com/cc65/cc65.git
synced 2025-02-11 00:31:06 +00:00
16 lines
155 B
ArmAsm
16 lines
155 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
;
|
|
; Screen size variables
|
|
;
|
|
|
|
.export screensize
|
|
|
|
.proc screensize
|
|
|
|
ldx #40
|
|
ldy #24
|
|
rts
|
|
|
|
.endproc
|