1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00
cc65/libsrc/osic1p/_scrsize.s
2015-02-22 19:55:19 +01:00

20 lines
321 B
ArmAsm

;
; based on PET implementation
;
; originally by:
; Ullrich von Bassewitz, 26.10.2000
;
; Screen size variables
;
.export screensize
.include "extzp.inc"
.include "osic1p.inc"
.proc screensize
ldx #SCR_WIDTH
ldy #SCR_HEIGHT
rts
.endproc