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