1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/atari5200/_scrsize.s
2019-04-12 12:49:38 +02:00

20 lines
295 B
ArmAsm

;
; Christian Groessler, 02-Apr-2019
;
; Screen size variables
;
.export screensize
.importzp screen_width, screen_height
.include "atari.inc"
.proc screensize
ldx #screen_width
ldy #screen_height
rts
.endproc