]> git.sur5r.net Git - cc65/blob - libsrc/geos-common/mousesprite/getnextchar.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / geos-common / mousesprite / getnextchar.s
1 ;
2 ; Maciej 'YTM/Elysium' Witkowiak
3 ;
4 ; 21.12.1999, 2.1.2003
5
6 ; char GetNextChar (void);
7 ;       note that if it returns 0 (FALSE) then no characters are available
8
9             .export _GetNextChar
10
11             .include "jumptab.inc"
12
13 _GetNextChar:
14         jsr GetNextChar
15         ldx #0
16         tay                     ; preserve Z flag
17         rts