mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
2f10491672
git-svn-id: svn://svn.cc65.org/cc65/trunk@5437 b7a2c559-68d2-44c3-8de9-860c34a00d81
21 lines
262 B
ArmAsm
21 lines
262 B
ArmAsm
|
|
;
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
;
|
|
; 19.07.2005
|
|
|
|
; unsigned char __fastcall__ _sysremove (const char* name);
|
|
|
|
.export __sysremove
|
|
|
|
.include "jumptab.inc"
|
|
.include "geossym.inc"
|
|
|
|
__sysremove:
|
|
sta r0L
|
|
stx r0H
|
|
jsr DeleteFile
|
|
txa
|
|
ldx #0
|
|
rts
|