mirror of
https://github.com/cc65/cc65.git
synced 2026-04-23 23:17:45 +00:00
Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
+14
-14
@@ -5,28 +5,28 @@
|
||||
;
|
||||
|
||||
.export __sysremove
|
||||
.import pushname, popname
|
||||
.import pushname, popname
|
||||
|
||||
.include "zeropage.inc"
|
||||
.include "mli.inc"
|
||||
.include "zeropage.inc"
|
||||
.include "mli.inc"
|
||||
|
||||
__sysremove:
|
||||
; Push name
|
||||
jsr pushname
|
||||
bne oserr
|
||||
jsr pushname
|
||||
bne oserr
|
||||
|
||||
; Set pushed name
|
||||
lda sp
|
||||
ldx sp+1
|
||||
sta mliparam + MLI::DESTROY::PATHNAME
|
||||
stx mliparam + MLI::DESTROY::PATHNAME+1
|
||||
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
|
||||
lda #DESTROY_CALL
|
||||
ldx #DESTROY_COUNT
|
||||
jsr callmli
|
||||
|
||||
; Cleanup name
|
||||
jsr popname ; Preserves A
|
||||
jsr popname ; Preserves A
|
||||
|
||||
oserr: rts
|
||||
oserr: rts
|
||||
|
||||
Reference in New Issue
Block a user