mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
ec5e38617a
Includes some other small fixes/cleanups.
13 lines
206 B
ArmAsm
13 lines
206 B
ArmAsm
;
|
|
; Christian Groessler, 13-Mar-2014
|
|
;
|
|
; void gotox (unsigned char x);
|
|
;
|
|
|
|
.include "atari5200.inc"
|
|
.export _gotox
|
|
|
|
_gotox:
|
|
sta COLCRS_5200 ; Set X
|
|
rts
|