]> git.sur5r.net Git - cc65/blobdiff - libsrc/atmos/_scrsize.s
atari5200: fix COLOR defines' names
[cc65] / libsrc / atmos / _scrsize.s
index 24eec248f531a0fe65c7d02a20de8e0699108086..7a7af33ee41fc2d6d8b9d4907c8e04e093869647 100644 (file)
@@ -1,15 +1,17 @@
 ;
-; Ullrich von Bassewitz, 2003-04-13
+; 2003-04-13, Ullrich von Bassewitz
+; 2013-07-16, Greg King
 ;
 ; Screen size variables
 ;
 
-       .export         screensize
+        .export         screensize
+        .include        "atmos.inc"
 
 .proc   screensize
 
-        ldx     #40
-        ldy     #28
+        ldx     #SCREEN_XSIZE
+        ldy     #SCREEN_YSIZE
         rts
 
 .endproc