]> git.sur5r.net Git - cc65/blob - libsrc/cbm/wherey.s
Protect random counter against ProDOS.
[cc65] / libsrc / cbm / wherey.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; unsigned char wherey (void);
5 ;
6
7         .export         _wherey
8         .import         CURS_Y: zp
9
10
11 .proc   _wherey
12         lda     CURS_Y
13         ldx     #$00
14         rts
15 .endproc
16