mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 08:05:51 +00:00
ec5e38617a
Includes some other small fixes/cleanups.
20 lines
435 B
ArmAsm
20 lines
435 B
ArmAsm
;
|
|
; Christian Groessler, 13-Mar-2014
|
|
;
|
|
; void gotoxy (unsigned char x, unsigned char y);
|
|
;
|
|
|
|
.include "atari5200.inc"
|
|
|
|
.export gotoxy, _gotoxy
|
|
.import popa
|
|
|
|
gotoxy:
|
|
jsr popa ; Get Y
|
|
|
|
_gotoxy: ; Set the cursor position
|
|
sta ROWCRS_5200 ; Set Y
|
|
jsr popa ; Get X
|
|
sta COLCRS_5200 ; Set X
|
|
rts
|