From 46224edc851674482836d717040e908db58e441d Mon Sep 17 00:00:00 2001 From: cpg Date: Fri, 27 Dec 2002 20:47:10 +0000 Subject: [PATCH] removed due to better conio implementations of _bgcolor and _textcolor git-svn-id: svn://svn.cc65.org/cc65/trunk@1855 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/atari/atari_color.s | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 libsrc/atari/atari_color.s diff --git a/libsrc/atari/atari_color.s b/libsrc/atari/atari_color.s deleted file mode 100644 index 388669224..000000000 --- a/libsrc/atari/atari_color.s +++ /dev/null @@ -1,33 +0,0 @@ -; -; Christian Groessler, 13-Dec-2002 -; -; unsigned char __fastcall__ _atari_textcolor (unsigned char color); -; unsigned char __fastcall__ _atari_bgcolor (unsigned char color); -; unsigned char __fastcall__ _atari_bordercolor (unsigned char color); -; - - - .export __atari_textcolor, __atari_bgcolor, __atari_bordercolor - - .include "atari.inc" - -__atari_textcolor: - ldx COLOR1 ; get old value - sta COLOR1 ; set new value - txa - rts - - -__atari_bgcolor: - ldx COLOR2 ; get old value - sta COLOR2 ; set new value - txa - rts - - -__atari_bordercolor: - ldx COLOR4 ; get old value - sta COLOR4 ; set new value - txa - rts - -- 2.39.5