1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00
cc65/libsrc/osic1p/_scrsize.s

20 lines
321 B
ArmAsm
Raw Normal View History

2014-11-30 15:01:43 +00:00
;
; based on PET implementation
;
; originally by:
; Ullrich von Bassewitz, 26.10.2000
;
; Screen size variables
;
.export screensize
.include "extzp.inc"
.include "osic1p.inc"
2014-11-30 15:01:43 +00:00
.proc screensize
ldx #SCR_WIDTH
ldy #SCR_HEIGHT
2014-11-30 15:01:43 +00:00
rts
.endproc