]> git.sur5r.net Git - cc65/blob - libsrc/atmos/wherex.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / atmos / wherex.s
1 ;
2 ; Ullrich von Bassewitz, 2003-04-13
3 ;
4 ; unsigned char wherex (void);
5 ;
6
7         .export         _wherex
8
9         .include        "atmos.inc"
10
11 .proc   _wherex
12
13         ldx     #$00
14         lda     CURS_X
15         rts
16
17 .endproc
18