]> git.sur5r.net Git - cc65/blob - libsrc/geos-common/conio/dummies.s
Removed revers as it doesn't influence clrscr, cclear, chline, cvline and does look...
[cc65] / libsrc / geos-common / conio / dummies.s
1 ;
2 ; Maciej 'YTM/Elysium' Witkowiak
3 ;
4 ; 27.10.2001
5
6 ; unsigned char __fastcall__ textcolor (unsigned char color);
7 ; unsigned char __fastcall__ bgcolor (unsigned char color);
8 ; unsigned char __fastcall__ bordercolor (unsigned char color);
9 ; unsigned char __fastcall__ revers (unsigned char onoff);
10 ;
11
12             .export _textcolor, _bgcolor, _bordercolor, _revers
13             .import return0
14
15 _textcolor      = return0
16 _bgcolor        = return0
17 _bordercolor    = return0
18 _revers         = return0