2003-04-13 22:12:09 +00:00
|
|
|
;
|
2017-06-15 20:44:46 +00:00
|
|
|
; 2003-04-13, Ullrich von Bassewitz
|
|
|
|
; 2017-06-15, Greg King
|
2003-04-13 22:12:09 +00:00
|
|
|
;
|
|
|
|
; void gotoxy (unsigned char x, unsigned char y);
|
|
|
|
;
|
|
|
|
|
2017-06-15 20:44:46 +00:00
|
|
|
.export gotoxy, _gotoxy
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.import popa
|
2003-04-13 22:12:09 +00:00
|
|
|
|
|
|
|
.include "atmos.inc"
|
|
|
|
|
2017-06-15 20:44:46 +00:00
|
|
|
gotoxy: jsr popa ; Get Y
|
|
|
|
|
2003-04-13 22:12:09 +00:00
|
|
|
.proc _gotoxy
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
sta CURS_Y ; Set Y
|
|
|
|
jsr popa ; Get X
|
|
|
|
sta CURS_X ; Set X
|
2003-04-13 22:12:09 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|