1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00
cc65/libsrc/telestrat/gotoy.s

18 lines
371 B
ArmAsm
Raw Normal View History

;
; jede jede@oric.org 2017-02-25
;
.export _gotoy
2019-07-07 20:02:48 +00:00
.import update_adscr
.include "telestrat.inc"
.proc _gotoy
sta SCRY
2019-07-07 20:02:48 +00:00
jsr update_adscr
2019-07-06 08:19:45 +00:00
; We change the current line, it means that we need to put color attributes again.
; That is not the case with _gotox because, it's on the same line attribute are already set
rts
2019-02-05 22:27:52 +00:00
.endproc