1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

remove soft80_bordercolor override

This commit is contained in:
mrdudz 2015-10-14 17:33:58 +02:00
parent 59dd15aa55
commit f391c1c3d5
2 changed files with 0 additions and 21 deletions

View File

@ -15,10 +15,6 @@
.export _textcolor := soft80_textcolor
.export _bgcolor := soft80_bgcolor
; soft80_bordercolor.s
.import soft80_bordercolor
.export _bordercolor := soft80_bordercolor
; soft80_cputc.s
.import soft80_cputc
.import soft80_cputcxy

View File

@ -1,17 +0,0 @@
;
; Groepaz/Hitmen, 12.10.2015
;
; unsigned char __fastcall__ bordercolor (unsigned char color);
;
.export soft80_bordercolor
.include "c64.inc"
; FIXME: if we'd move this function into a seperate file in the regular
; conio lib, then we dont need this override at all.
soft80_bordercolor:
ldx VIC_BORDERCOLOR ; get old value
sta VIC_BORDERCOLOR ; set new value
txa
rts