]> git.sur5r.net Git - cc65/blob - libsrc/atari/gotox.s
Changed most "backticks" (grave accents) into apostrophes.
[cc65] / libsrc / atari / gotox.s
1 ;
2 ; Christian Groessler, 19-Feb-2000
3 ;
4 ; void gotox (unsigned char x);
5 ;
6
7         .include        "atari.inc"
8         .export         _gotox
9         .import         setcursor
10
11 _gotox:
12         sta     COLCRS          ; Set X
13         lda     #0
14         sta     COLCRS+1
15         jmp     setcursor