mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
18 lines
426 B
ArmAsm
18 lines
426 B
ArmAsm
;
|
|
; Christian Groessler, 13-Mar-2014
|
|
;
|
|
; void gotoxy (unsigned char x, unsigned char y);
|
|
;
|
|
|
|
.include "atari5200.inc"
|
|
|
|
.export _gotoxy
|
|
.import popa
|
|
.import setcursor
|
|
|
|
_gotoxy: ; Set the cursor position
|
|
sta ROWCRS_5200 ; Set Y
|
|
jsr popa ; Get X
|
|
sta COLCRS_5200 ; Set X
|
|
jmp setcursor
|