2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
;
|
|
|
|
; void gotoxy (unsigned char x, unsigned char y);
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "atari.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2016-06-05 12:58:38 +00:00
|
|
|
.export gotoxy, _gotoxy
|
2013-05-09 11:56:54 +00:00
|
|
|
.import popa
|
|
|
|
.import setcursor
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2016-06-05 12:58:38 +00:00
|
|
|
gotoxy:
|
|
|
|
jsr popa ; Get Y
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
_gotoxy: ; Set the cursor position
|
|
|
|
sta ROWCRS ; Set Y
|
|
|
|
jsr popa ; Get X
|
|
|
|
sta COLCRS ; Set X
|
|
|
|
lda #0
|
2016-06-05 12:58:38 +00:00
|
|
|
sta COLCRS+1
|
2013-05-09 11:56:54 +00:00
|
|
|
jmp setcursor
|