]> git.sur5r.net Git - cc65/blob - libsrc/plus4/_scrsize.s
Adjusted C declarations to the changed static driver names.
[cc65] / libsrc / plus4 / _scrsize.s
1 ;
2 ; Ullrich von Bassewitz, 26.10.2000
3 ;
4 ; Screen size variables
5 ;
6
7         .export         screensize
8
9 ; We will return the values directly instead of banking in the ROM and calling
10 ; SCREEN which is a lot more overhead in code size and CPU cycles.
11
12 .proc   screensize
13
14         ldx     #40
15         ldy     #25
16         rts
17
18 .endproc
19
20
21