]> git.sur5r.net Git - cc65/blob - libsrc/nes/wherex.s
Avoid unintended file "shadowing".
[cc65] / libsrc / nes / wherex.s
1 ;
2 ; Ullrich von Bassewitz, 2003-05-02
3 ;
4 ; unsigned char wherex (void);
5 ;
6
7         .export         _wherex
8
9         .include        "nes.inc"
10
11 .proc   _wherex
12
13         lda     CURS_X
14         ldx     #$00
15         rts
16
17 .endproc
18
19