]> git.sur5r.net Git - cc65/blob - libsrc/c1p/_scrsize.s
3b0d71c2f6d6ec72f80378dcb803e64aef1f707d
[cc65] / libsrc / c1p / _scrsize.s
1 ;
2 ; based on PET implementation
3 ;
4 ; originally by:
5 ; Ullrich von Bassewitz, 26.10.2000
6 ;
7 ; Screen size variables
8 ;
9
10         .export         screensize
11
12         .include        "extzp.inc"
13
14 .proc   screensize
15
16         ldx     SCR_LINELEN
17         inx                     ; Variable is one less
18         ldy     #25
19         rts
20
21 .endproc