]> git.sur5r.net Git - cc65/blob - libsrc/atmos/_scrsize.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / atmos / _scrsize.s
1 ;
2 ; Ullrich von Bassewitz, 2003-04-13
3 ;
4 ; Screen size variables
5 ;
6
7         .export         screensize
8
9 .proc   screensize
10
11         ldx     #40
12         ldy     #28
13         rts
14
15 .endproc
16
17