mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
14 lines
254 B
ArmAsm
14 lines
254 B
ArmAsm
|
;
|
||
|
; Christian Groessler, 13-Mar-2014
|
||
|
;
|
||
|
; void gotox (unsigned char x);
|
||
|
;
|
||
|
|
||
|
.include "atari5200.inc"
|
||
|
.export _gotox
|
||
|
.import setcursor
|
||
|
|
||
|
_gotox:
|
||
|
sta COLCRS_5200 ; Set X
|
||
|
jmp setcursor
|