Correcting scrsize.s into _scrsize.s

This commit is contained in:
jede
2017-02-03 21:11:37 +01:00
parent d76911d38a
commit d2fc2c74fb

View File

@@ -0,0 +1,19 @@
;
; 2003-04-13, Ullrich von Bassewitz
; 2013-07-16, Greg King
;
; Screen size variables
;
.export screensize
.include "telestrat.inc"
.proc screensize
ldx #SCREEN_XSIZE
ldy #SCREEN_YSIZE
rts
.endproc