]> git.sur5r.net Git - cc65/blob - libsrc/apple2/gotoy.s
cfg/atari-xex.cfg: fix typo in comment
[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         .import         VTABZ
9
10         .include        "apple2.inc"
11
12 _gotoy:
13         clc
14         adc     WNDTOP
15         sta     CV              ; Store Y
16         jmp     VTABZ
17
18