]> git.sur5r.net Git - cc65/blob - libsrc/osic1p/wherex.s
Add a goto indirect jump from pointer
[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         .include        "extzp.inc"
9
10 .proc   _wherex
11         lda     CURS_X
12         ldx     #$00
13         rts
14 .endproc