1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/plus4/_scrsize.s

22 lines
335 B
ArmAsm

;
; Ullrich von Bassewitz, 26.10.2000
;
; Screen size variables
;
.export screensize
; We will return the values directly instead of banking in the ROM and calling
; SCREEN which is a lot more overhead in code size and CPU cycles.
.proc screensize
ldx #40
ldy #25
rts
.endproc