2014-11-22 00:07:55 +00:00
|
|
|
;
|
2015-01-11 17:22:36 +00:00
|
|
|
; copied from CBM implementation
|
|
|
|
;
|
|
|
|
; originally by:
|
2014-11-22 00:07:55 +00:00
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
;
|
|
|
|
; void gotoxy (unsigned char x, unsigned char y);
|
|
|
|
;
|
2016-06-05 12:58:38 +00:00
|
|
|
.export gotoxy, _gotoxy
|
2014-11-22 00:07:55 +00:00
|
|
|
.import popa, plot
|
2015-02-12 21:12:51 +00:00
|
|
|
.include "extzp.inc"
|
2014-11-22 00:07:55 +00:00
|
|
|
|
2016-06-05 12:58:38 +00:00
|
|
|
gotoxy:
|
|
|
|
jsr popa ; Get Y
|
|
|
|
|
2014-11-22 00:07:55 +00:00
|
|
|
_gotoxy:
|
|
|
|
sta CURS_Y ; Set Y
|
|
|
|
jsr popa ; Get X
|
|
|
|
sta CURS_X ; Set X
|
|
|
|
jmp plot ; Set the cursor position
|