mirror of
https://github.com/cc65/cc65.git
synced 2024-11-07 21:10:15 +00:00
21 lines
260 B
ArmAsm
21 lines
260 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 25.12.99
|
||
|
|
||
|
; char SaveFile (struct fileheader *myHeader);
|
||
|
|
||
|
.export _SaveFile
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_SaveFile:
|
||
|
sta r9L
|
||
|
stx r9H
|
||
|
jsr SaveFile
|
||
|
stx errno
|
||
|
txa
|
||
|
rts
|