1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-17 09:29:10 +00:00
cc65/libsrc/telestrat/gotoxy.s

20 lines
370 B
ArmAsm
Raw Normal View History

;
; jede jede@oric.org 2017-02-25
;
2017-02-25 20:32:06 +00:00
.export _gotoxy
.import popa
2017-02-25 21:23:46 +00:00
.importzp sp
2017-02-25 20:32:06 +00:00
.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
sta SCRY
jsr popa
sta SCRX
2017-02-25 20:32:06 +00:00
rts
.endproc