]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_getcolorcount.s
Fixed _textcolor definition.
[cc65] / libsrc / tgi / tgi_getcolorcount.s
1 ;
2 ; Ullrich von Bassewitz, 22.06.2002
3 ;
4 ; unsigned char tgi_getcolorcount (void);
5 ; /* Get the number of available colors */
6
7         .include        "tgi-kernel.inc"
8
9 .proc   _tgi_getcolorcount
10
11         lda     _tgi_colorcount
12         ldx     #0
13         rts
14
15 .endproc