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