New stuff contributed by Oliver Schmidt
git-svn-id: svn://svn.cc65.org/cc65/trunk@3608 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
32
libsrc/apple2/sysremove.s
Normal file
32
libsrc/apple2/sysremove.s
Normal file
@@ -0,0 +1,32 @@
|
||||
;
|
||||
; 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 sp
|
||||
ldx 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
|
||||
Reference in New Issue
Block a user