]> git.sur5r.net Git - cc65/blob - libsrc/atmos/color.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / atmos / color.s
1 ;
2 ; Ullrich von Bassewitz, 2003-04-13
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, return1
11
12 _textcolor      = return1
13
14 _bgcolor        = return0
15
16 _bordercolor    = return0
17
18