1;
2; Ullrich von Bassewitz, 2003-05-02
3;
4; unsigned char wherey (void);
5;
6
7        .export         _wherey
8
9        .include        "gamate.inc"
10        .include        "extzp.inc"
11
12.proc   _wherey
13
14        lda     CURS_Y
15        ldx     #$00
16        rts
17
18.endproc
19
20
21