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