mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
25 lines
315 B
ArmAsm
25 lines
315 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 25.12.99
|
||
|
|
||
|
; char RenameFile (char *source, char *target);
|
||
|
|
||
|
.export _RenameFile
|
||
|
.import popax
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_RenameFile:
|
||
|
sta r0L
|
||
|
stx r0H
|
||
|
jsr popax
|
||
|
sta r6L
|
||
|
stx r6H
|
||
|
jsr RenameFile
|
||
|
stx errno
|
||
|
txa
|
||
|
rts
|