2014-11-30 10:20:57 +00:00
|
|
|
;
|
2015-11-17 14:14:15 +00:00
|
|
|
; void __fastcall__ gotoxy (unsigned char x, unsigned char y);
|
2014-11-30 10:20:57 +00:00
|
|
|
;
|
|
|
|
|
2016-06-05 12:58:38 +00:00
|
|
|
.export gotoxy, _gotoxy
|
2015-10-02 14:50:22 +00:00
|
|
|
|
2015-08-29 13:58:57 +00:00
|
|
|
.import popa, plot
|
2014-11-30 10:20:57 +00:00
|
|
|
|
2015-08-29 13:58:57 +00:00
|
|
|
.include "pce.inc"
|
2015-09-19 13:37:39 +00:00
|
|
|
.include "extzp.inc"
|
2014-11-30 10:20:57 +00:00
|
|
|
|
2016-06-05 12:58:38 +00:00
|
|
|
gotoxy:
|
|
|
|
jsr popa ; Get Y
|
|
|
|
|
2014-11-30 10:20:57 +00:00
|
|
|
_gotoxy:
|
2015-08-29 13:58:57 +00:00
|
|
|
sta CURS_Y ; Set Y
|
|
|
|
jsr popa ; Get X
|
|
|
|
sta CURS_X ; Set X
|
|
|
|
jmp plot ; Set the cursor position
|