mirror of
https://github.com/cc65/cc65.git
synced 2024-11-07 06:05:50 +00:00
20 lines
295 B
ArmAsm
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
|
||
|
|
||
|
|