1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

17 lines
261 B
ArmAsm
Raw Normal View History

;
; jede jede@oric.org 2017-02-25
;
.export _gotox
.import OLD_CHARCOLOR, OLD_BGCOLOR
2019-02-05 23:27:52 +01:00
.include "telestrat.inc"
.proc _gotox
sta SCRX
lda #$FF
sta OLD_CHARCOLOR
sta OLD_BGCOLOR
rts
2019-02-05 23:27:52 +01:00
.endproc