mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
16 lines
303 B
ArmAsm
16 lines
303 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
|
||
|
lda #0
|
||
|
sta COLCRS_5200+1
|
||
|
jmp setcursor
|