mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
18 lines
213 B
ArmAsm
18 lines
213 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 25.12.99
|
||
|
|
||
|
; char ReadByte (void);
|
||
|
|
||
|
.export _ReadByte
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_ReadByte:
|
||
|
jsr ReadByte
|
||
|
stx errno
|
||
|
rts
|