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