1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00
cc65/libsrc/telestrat/gotoxy.s

27 lines
559 B
ArmAsm
Raw Normal View History

;
; 2017-02-25, jede <jede@oric.org>
; 2017-06-15, Greg King
;
; void gotoxy (unsigned char x, unsigned char y);
;
.export gotoxy, _gotoxy
.import popa
.importzp sp
2017-02-25 20:32:06 +00:00
.include "telestrat.inc"
gotoxy: jsr popa ; Get Y
2017-02-25 20:32:06 +00:00
.proc _gotoxy
; This function moves only the display cursor; it does not move the prompt position.
; In telemon, there is a position for the prompt, and another for the cursor.
sta SCRY
jsr popa
sta SCRX
rts
.endproc