]> git.sur5r.net Git - cc65/blob - libsrc/apple2/where.s
Added getenv()
[cc65] / libsrc / apple2 / where.s
1
2         ;; Keivn Ruland
3         ;;
4         ;; unsigned char wherex( void );
5         ;; unsigned char wherey( void );
6
7         .export         _wherex, _wherey
8
9         .include        "apple2.inc"
10
11 _wherex:
12         lda     CH
13         rts
14
15 _wherey:
16         lda     CV
17         rts
18