1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00

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
This commit is contained in:
cpg 2002-12-27 20:47:10 +00:00
parent b0abf68505
commit 46224edc85

View File

@ -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