aboutsummaryrefslogtreecommitdiff
path: root/conio/gotox.s
blob: f7c78b486bbac712d255e2df4dbe7afe3ecf057a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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