]> git.sur5r.net Git - cc65/blob - libsrc/c1p/wherey.s
Configuration file for assembler-only build.
[cc65] / libsrc / c1p / 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