]> git.sur5r.net Git - cc65/blob - libsrc/apple2/color.s
Small change to make the color stuff consistent across platforms
[cc65] / libsrc / apple2 / color.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; unsigned char __fastcall__ textcolor (unsigned char color);
5 ; unsigned char __fastcall__ bgcolor (unsigned char color);
6 ; unsigned char __fastcall__ bordercolor (unsigned char color);
7 ;
8
9         .export         _textcolor, _bgcolor, _bordercolor
10         .import         return0, _revers
11
12         .include        "apple2.inc"
13
14 _textcolor      = return1
15
16 _bgcolor        = return0
17
18 _bordercolor    = return0
19
20