mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
21 lines
270 B
ArmAsm
21 lines
270 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 25.12.99
|
||
|
|
||
|
; char GetFHdrInfo (struct filehandle *myFile);
|
||
|
|
||
|
.export _GetFHdrInfo
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_GetFHdrInfo:
|
||
|
sta r9L
|
||
|
stx r9H
|
||
|
jsr GetFHdrInfo
|
||
|
stx errno
|
||
|
txa
|
||
|
rts
|