]> git.sur5r.net Git - cc65/blob - libsrc/atari/gotoy.s
Just removed some trailing spaces.
[cc65] / libsrc / atari / gotoy.s
1 ;
2 ; Christian Groessler, 19-Feb-2000
3 ;
4 ; void gotoy (unsigned char y);
5 ;
6
7         .include        "atari.inc"
8         .export         _gotoy
9         .import         setcursor
10
11 _gotoy:
12         sta     ROWCRS          ; Set Y
13         jmp     setcursor