]> git.sur5r.net Git - cc65/blob - libsrc/pet/_scrsize.s
Minor style fix.
[cc65] / libsrc / pet / _scrsize.s
1 ;
2 ; Ullrich von Bassewitz, 26.10.2000
3 ;
4 ; Screen size variables
5 ;
6
7         .export         screensize
8
9         .include        "pet.inc"
10
11 .proc   screensize
12
13         ldx     SCR_LINELEN
14         inx                     ; Variable is one less
15         ldy     #25
16         rts
17
18 .endproc
19