]> git.sur5r.net Git - cc65/blob - libsrc/nes/wherey.s
Fixed _textcolor definition.
[cc65] / libsrc / nes / wherey.s
1 ;
2 ; Ullrich von Bassewitz, 2003-05-02
3 ;
4 ; unsigned char wherey (void);
5 ;
6
7         .export         _wherey
8
9         .include        "nes.inc"
10
11 .proc   _wherey
12
13         lda     CURS_Y
14         ldx     #$00
15         rts
16
17 .endproc
18
19