cgetc.o         \
                chline.o        \
                clrscr.o        \
-               color.o         \
                cputc.o         \
                cursor.o        \
                cvline.o        \
+               dummies.o       \
                gotoxy.o        \
                kbhit.o         \
-               revers.o        \
                where.o
 
+++ /dev/null
-;
-; 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);
-;
-
-           .export _textcolor, _bgcolor, _bordercolor
-
-; for GEOS 2.0 there is no color support, perhaps Wheels has it
-
-_textcolor:
-_bgcolor:
-_bordercolor:
-       rts
 
--- /dev/null
+;
+; 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
 
+++ /dev/null
-;
-; Maciej 'YTM/Elysium' Witkowiak
-;
-; 27.10.2001
-
-; unsigned char revers (unsigned char onoff);
-
-           .export _revers
-           .importzp tmp1
-
-           .include "geossym.inc"
-           .include "const.inc"
-
-_revers:
-       tax
-       bne L0                  ; turn on
-       lda #0
-       .byte $2c
-L0:    lda #SET_REVERSE
-       sta tmp1
-
-       lda currentMode
-       tax
-       and #SET_REVERSE
-       tay                     ; store old value
-       txa
-       and #%11011111          ; mask out
-       ora tmp1                ; set new value
-       sta currentMode
-
-       ldx #0
-       tya
-       beq L1
-       lda #1
-L1:    rts