mirror of
https://github.com/cc65/cc65.git
synced 2025-01-16 13:31:16 +00:00
31 lines
467 B
ArmAsm
31 lines
467 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Elysium' Witkowiak
|
||
|
;
|
||
|
; 4.4.2003
|
||
|
|
||
|
; char __fastcall__ GetFile(char flag, const char *fname, const char *loadaddr, const char *datadname, char *datafname);
|
||
|
|
||
|
.export _GetFile
|
||
|
.import popa, popax, setoserror
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_GetFile:
|
||
|
sta r3L
|
||
|
stx r3H
|
||
|
jsr popax
|
||
|
sta r2L
|
||
|
stx r2H
|
||
|
jsr popax
|
||
|
sta r7L
|
||
|
stx r7H
|
||
|
jsr popax
|
||
|
sta r6L
|
||
|
stx r6H
|
||
|
jsr popa
|
||
|
sta r0L
|
||
|
jsr GetFile
|
||
|
jmp setoserror
|