Removed revers as it doesn't influence clrscr, cclear, chline, cvline and does look pretty ugly on cputs because there's no opaque background.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5861 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
18
libsrc/geos-common/conio/dummies.s
Normal file
18
libsrc/geos-common/conio/dummies.s
Normal file
@@ -0,0 +1,18 @@
|
||||
;
|
||||
; Maciej 'YTM/Elysium' Witkowiak
|
||||
;
|
||||
; 27.10.2001
|
||||
|
||||
; unsigned char __fastcall__ textcolor (unsigned char color);
|
||||
; unsigned char __fastcall__ bgcolor (unsigned char color);
|
||||
; unsigned char __fastcall__ bordercolor (unsigned char color);
|
||||
; unsigned char __fastcall__ revers (unsigned char onoff);
|
||||
;
|
||||
|
||||
.export _textcolor, _bgcolor, _bordercolor, _revers
|
||||
.import return0
|
||||
|
||||
_textcolor = return0
|
||||
_bgcolor = return0
|
||||
_bordercolor = return0
|
||||
_revers = return0
|
||||
Reference in New Issue
Block a user