1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-03 11:29:42 +00:00
cc65/libsrc/atari5200/_scrsize.s

20 lines
295 B
ArmAsm
Raw Permalink Normal View History

2019-04-02 20:06:53 +00:00
;
; 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