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