]> git.sur5r.net Git - cc65/blob - libsrc/cbm/gotoy.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / cbm / gotoy.s
1 ;
2 ; Ullrich von Bassewitz, 0.08.1998
3 ;
4 ; void gotoy (unsigned char y);
5 ;
6
7         .export         _gotoy
8         .import         plot
9         .importzp       CURS_Y
10
11 _gotoy: sta     CURS_Y          ; Set the new position
12         jmp     plot            ; And activate it
13