]> git.sur5r.net Git - cc65/blob - libsrc/osic1p/wherey.s
Rename c1p target to osic1p
[cc65] / libsrc / osic1p / wherey.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ; Copied from cbm/wherey.s
4 ;
5 ; unsigned char wherey (void);
6 ;
7         .export         _wherey
8         .import         CURS_Y: zp
9
10 .proc   _wherey
11         lda     CURS_Y
12         ldx     #$00
13         rts
14 .endproc