mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
25 lines
347 B
ArmAsm
25 lines
347 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Elysium' Witkowiak
|
||
|
;
|
||
|
; 19.07.2005
|
||
|
|
||
|
; unsigned char __fastcall__ _sysrename (const char* oldname, const char* newname);
|
||
|
|
||
|
.export __sysrename
|
||
|
.import popax
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
__sysrename:
|
||
|
sta r0L
|
||
|
stx r0H
|
||
|
jsr popax
|
||
|
sta r6L
|
||
|
stx r6H
|
||
|
jsr RenameFile
|
||
|
txa
|
||
|
ldx #0
|
||
|
rts
|