1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 19:29:18 +00:00
cc65/libsrc/telestrat/gotoxy.s
2017-02-25 22:23:46 +01:00

20 lines
370 B
ArmAsm

;
; jede jede@oric.org 2017-02-25
;
.export _gotoxy
.import popa
.importzp sp
.include "telestrat.inc"
.proc _gotoxy
; 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
sta SCRY
jsr popa
sta SCRX
rts
.endproc