]> git.sur5r.net Git - cc65/blob - libsrc/osic1p/wherey.s
atari5200: add alternative conio screen (20x12 resolution)
[cc65] / libsrc / osic1p / wherey.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ; Copied from cbm/wherey.s
4 ;
5 ; unsigned char wherey (void);
6 ;
7         .export         _wherey
8         .include        "extzp.inc"
9
10 .proc   _wherey
11         lda     CURS_Y
12         ldx     #$00
13         rts
14 .endproc