]> git.sur5r.net Git - cc65/blob - libsrc/cbm/wherey.s
added sleep() implementation
[cc65] / libsrc / cbm / wherey.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; unsigned char wherey (void);
5 ;
6
7         .export         _wherey
8         .import         PLOT
9
10
11 .proc   _wherey
12         sec
13         jsr     PLOT            ; Get cursor position
14         txa
15         ldx     #$00
16         rts
17 .endproc
18