]> git.sur5r.net Git - cc65/blob - wherey.s
3a940c581df2c78f1b4910e06ddae5aaee462b8b
[cc65] / 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