]> git.sur5r.net Git - cc65/blob - gotoy.s
baa95a773f2dc73a9992702bf825e2d61c27e2bf
[cc65] / gotoy.s
1 ;
2 ; Ullrich von Bassewitz, 2003-04-13
3 ;
4 ; void gotoy (unsigned char y);
5 ;
6
7         .export         _gotoy
8
9         .include        "atmos.inc"
10
11 .proc   _gotoy
12
13         sta     CURS_Y          ; Set Y
14         rts
15
16 .endproc
17
18