mirror of
https://github.com/cc65/cc65.git
synced 2025-02-14 03:31:59 +00:00
22 lines
287 B
ArmAsm
22 lines
287 B
ArmAsm
|
|
;
|
|
; Maciej 'YTM/Alliance' Witkowiak
|
|
;
|
|
; 25.12.99
|
|
|
|
; char SaveFile (struct fileheader *myHeader);
|
|
|
|
.import __oserror
|
|
.export _SaveFile
|
|
|
|
.include "../inc/jumptab.inc"
|
|
.include "../inc/geossym.inc"
|
|
|
|
_SaveFile:
|
|
sta r9L
|
|
stx r9H
|
|
jsr SaveFile
|
|
stx __oserror
|
|
txa
|
|
rts
|