]> git.sur5r.net Git - cc65/blob - libsrc/nes/_scrsize.s
Two fixes from Stefan Haubenthal
[cc65] / libsrc / nes / _scrsize.s
1 ;
2 ; Ullrich von Bassewitz, 2003-04-14
3 ;
4 ; Screen size function
5 ;
6
7         .export         screensize
8
9         .include        "nes.inc"
10
11
12 .proc   screensize
13
14         ldx     #screenrows
15         ldy     #charsperline
16         rts
17
18 .endproc
19
20