cc65/libsrc/telestrat/gotoxy.s

18 lines
341 B
ArmAsm
Raw Normal View History

2017-02-25 21:32:06 +01:00
.export _gotoxy
.import popa
.importzp sp,tmp2,tmp3,tmp1
.include "telestrat.inc"
.proc _gotoxy
2017-02-25 22:10:13 +01: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 21:32:06 +01:00
sta SCRY
jsr popa
sta SCRX
rts
.endproc