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