]> git.sur5r.net Git - cc65/blob - libsrc/geos-common/file/readbyte.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / geos-common / file / readbyte.s
1 ;
2 ; Maciej 'YTM/Elysium' Witkowiak
3 ;
4 ; 25.12.1999, 2.1.2003
5
6 ; char ReadByte  (void);
7
8             .import __oserror
9             .export _ReadByte
10
11             .include "jumptab.inc"
12
13 _ReadByte:
14         jsr ReadByte
15         stx __oserror
16         ldx #0
17         rts