]> git.sur5r.net Git - cc65/blob - libsrc/telemon30/_scrsize.s
Correcting spaces
[cc65] / libsrc / telemon30 / _scrsize.s
1 ;
2 ; 2003-04-13, Ullrich von Bassewitz
3 ; 2013-07-16, Greg King
4 ;
5 ; Screen size variables
6 ;
7
8         .export         screensize
9         .include        "telemon30.inc"
10
11 .proc   screensize
12
13         ldx     #SCREEN_XSIZE
14         ldy     #SCREEN_YSIZE
15         rts
16
17 .endproc
18
19