1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00
cc65/libsrc/telestrat/gotoxy.s

18 lines
341 B
ArmAsm
Raw Normal View History

2017-02-25 20:32:06 +00:00
.export _gotoxy
.import popa
.importzp sp,tmp2,tmp3,tmp1
.include "telestrat.inc"
.proc _gotoxy
2017-02-25 21:10:13 +00:00
; This function move only cursor for display, it does not move the prompt position
; in telemon, there is position for prompt, and another for the cursor
2017-02-25 20:32:06 +00:00
sta SCRY
jsr popa
sta SCRX
rts
.endproc