mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
15 lines
290 B
ArmAsm
15 lines
290 B
ArmAsm
; 2019-07-02, Jede (jede@oric.org)
|
|
;
|
|
|
|
.export _bgcolor
|
|
.import BGCOLOR
|
|
|
|
.include "telestrat.inc"
|
|
|
|
.proc _bgcolor
|
|
ldx BGCOLOR ; Get previous color
|
|
sta BGCOLOR
|
|
txa ; Return previous color
|
|
rts
|
|
.endproc
|