1
0
mirror of https://github.com/cc65/cc65.git synced 2026-01-27 04:16:12 +00:00
Files
cc65/libsrc/apple2/sysremove.s
2025-06-04 06:37:59 +00:00

33 lines
693 B
ArmAsm

;
; Oliver Schmidt, 15.04.2005
;
; unsigned char __fastcall__ _sysremove (const char* name);
;
.export __sysremove
.import pushname, popname
.include "zeropage.inc"
.include "mli.inc"
__sysremove:
; Push name
jsr pushname
bne oserr
; Set pushed name
lda c_sp
ldx c_sp+1
sta mliparam + MLI::DESTROY::PATHNAME
stx mliparam + MLI::DESTROY::PATHNAME+1
; Remove file
lda #DESTROY_CALL
ldx #DESTROY_COUNT
jsr callmli
; Cleanup name
jsr popname ; Preserves A
oserr: rts