2000-05-28 13:40:48 +00:00
|
|
|
;
|
2003-01-02 01:50:39 +00:00
|
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
2003-01-02 01:50:39 +00:00
|
|
|
; 21.12.1999, 2.1.2003
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; char GetNextChar (void);
|
2013-05-09 11:56:54 +00:00
|
|
|
; note that if it returns 0 (FALSE) then no characters are available
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export _GetNextChar
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "jumptab.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-01-02 01:50:39 +00:00
|
|
|
_GetNextChar:
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr GetNextChar
|
|
|
|
ldx #0
|
|
|
|
tay ; preserve Z flag
|
|
|
|
rts
|