aboutsummaryrefslogtreecommitdiff
path: root/conio/gotox.s
diff options
context:
space:
mode:
Diffstat (limited to 'conio/gotox.s')
-rw-r--r--conio/gotox.s14
1 files changed, 14 insertions, 0 deletions
diff --git a/conio/gotox.s b/conio/gotox.s
new file mode 100644
index 0000000..f7c78b4
--- /dev/null
+++ b/conio/gotox.s
@@ -0,0 +1,14 @@
+;
+; Christian Groessler, 19-Feb-2000
+;
+; void gotox (unsigned char x);
+;
+
+ .include "atari.inc"
+ .export _gotox
+
+_gotox:
+ sta COLCRS ; Set X
+ lda #0
+ sta COLCRS+1
+ rts