]> git.sur5r.net Git - cc65/blob - libsrc/atmos/gotox.s
Forgot a cast, sorry
[cc65] / libsrc / atmos / gotox.s
1 ;
2 ; Ullrich von Bassewitz, 2003-04-13
3 ;
4 ; void gotox (unsigned char x);
5 ;
6
7         .export         _gotox
8
9         .include        "atmos.inc"
10
11 .proc   _gotox
12
13         sta     CURS_X          ; Set X
14         rts
15
16 .endproc
17
18