mirror of
https://github.com/cc65/cc65.git
synced 2025-02-10 09:31:08 +00:00
22 lines
297 B
ArmAsm
22 lines
297 B
ArmAsm
|
|
;
|
|
; Maciej 'YTM/Alliance' Witkowiak
|
|
;
|
|
; 25.12.99
|
|
|
|
; char GetFHdrInfo (struct filehandle *myFile);
|
|
|
|
.import __oserror
|
|
.export _GetFHdrInfo
|
|
|
|
.include "../inc/jumptab.inc"
|
|
.include "../inc/geossym.inc"
|
|
|
|
_GetFHdrInfo:
|
|
sta r9L
|
|
stx r9H
|
|
jsr GetFHdrInfo
|
|
stx __oserror
|
|
txa
|
|
rts
|