mirror of
https://github.com/cc65/cc65.git
synced 2025-02-06 12:31:12 +00:00
22 lines
418 B
ArmAsm
22 lines
418 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
;
|
|
; 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
|
|
.import return0
|
|
|
|
_bgcolor := return0
|
|
|
|
_bordercolor := return0
|
|
|
|
_textcolor:
|
|
ldx #$00
|
|
lda #$03 ; COLOR_WHITE
|
|
rts
|
|
|
|
|