mirror of
https://github.com/cc65/cc65.git
synced 2024-12-26 08:32:00 +00:00
25 lines
313 B
ArmAsm
25 lines
313 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 25.12.99
|
||
|
|
||
|
; char ReadRecord (char *buffer, int length);
|
||
|
|
||
|
.export _ReadRecord
|
||
|
.import popax
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_ReadRecord:
|
||
|
sta r2L
|
||
|
stx r2H
|
||
|
jsr popax
|
||
|
sta r7L
|
||
|
stx r7H
|
||
|
jsr ReadRecord
|
||
|
stx errno
|
||
|
txa
|
||
|
rts
|