mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 08:05:51 +00:00
17 lines
261 B
ArmAsm
17 lines
261 B
ArmAsm
;
|
|
; jede jede@oric.org 2017-02-25
|
|
;
|
|
.export _gotox
|
|
.import OLD_CHARCOLOR, OLD_BGCOLOR
|
|
|
|
.include "telestrat.inc"
|
|
|
|
.proc _gotox
|
|
sta SCRX
|
|
|
|
lda #$FF
|
|
sta OLD_CHARCOLOR
|
|
sta OLD_BGCOLOR
|
|
rts
|
|
.endproc
|