]> git.sur5r.net Git - cc65/blob - libsrc/apple2/gotoy.s
Update from Oliver Schmidt: Includes gotox/gotoy which were missing before.
[cc65] / libsrc / apple2 / gotoy.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; void __fastcall__ gotoy (unsigned char y);
5 ;
6
7         .export         _gotoy
8
9         .import         VTABZ
10
11         .include        "apple2.inc"
12
13 _gotoy:
14         clc
15         adc     WNDTOP
16         sta     CV              ; Store Y
17         jmp     VTABZ
18
19