]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_getyres.s
Fixed _textcolor definition.
[cc65] / libsrc / tgi / tgi_getyres.s
1 ;
2 ; Ullrich von Bassewitz, 21.06.2002
3 ;
4 ; unsigned tgi_getyres (void);
5 ; /* Return the resolution in Y direction */
6
7
8         .include        "tgi-kernel.inc"
9
10 .proc   _tgi_getyres
11
12         lda     _tgi_yres
13         ldx     _tgi_yres+1
14         rts
15
16 .endproc