2003-04-13 22:12:09 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-04-13
|
|
|
|
;
|
|
|
|
; void gotoxy (unsigned char x, unsigned char y);
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export _gotoxy
|
|
|
|
.import popa
|
2003-04-13 22:12:09 +00:00
|
|
|
|
|
|
|
.include "atmos.inc"
|
|
|
|
|
|
|
|
.proc _gotoxy
|
|
|
|
|
2013-05-09 13:56:54 +02: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
|
|
|
|
|
|
|
|
|