A2osX/BIN/RM.S.txt

50 lines
1.3 KiB
Plaintext
Raw Normal View History

NEW
2019-05-02 09:52:32 +00:00
AUTO 3,1
.LIST OFF
.OP 65C02
.OR $2000
2020-02-23 20:46:25 +00:00
.TF bin/rm
*--------------------------------------
2020-05-21 12:55:49 +00:00
.INB inc/macros.i
.INB inc/a2osx.i
.INB inc/mli.i
.INB inc/mli.e.i
*--------------------------------------
2019-04-29 15:47:17 +00:00
X.ENTER.SUBDIR .EQ 0
X.COPY.TO.DEST .EQ 0
X.DELETE.SOURCE .EQ 1
2016-10-30 18:19:43 +00:00
*--------------------------------------
2020-05-21 12:55:49 +00:00
.INB usr/src/bin/x.cpmvrm.s
.INB usr/src/bin/x.fileenum.s
*--------------------------------------
CS.END
2016-10-30 18:19:43 +00:00
*--------------------------------------
2019-10-28 06:32:12 +00:00
OptionList .AS "CRQcrq"
2019-02-28 09:55:51 +00:00
OptionVars .DA #bContinue,#bRecurse,#bQuiet,#bContinue,#bRecurse,#bQuiet
2016-10-30 18:19:43 +00:00
*--------------------------------------
2019-02-28 09:55:51 +00:00
MSG.USAGE .AS "Usage : RM [File/Dir, *,? wildcards allowed]\r\n"
.AS " -C : Continue on error\r\n"
.AS " -Q : Quiet\r\n"
.AZ " -R : Recurse subdirectories\r\n"
2019-01-17 15:05:48 +00:00
MSG.DIR .AZ "RM Dir :%s..."
2020-02-29 14:06:28 +00:00
MSG.REG .AZ "RM File:%s..."
2018-08-23 15:16:20 +00:00
MSG.OK .AZ "[OK]"
2019-10-28 06:32:12 +00:00
MSG.ERR .AS "[%h]"
MSG.CRLF .AZ "\r\n"
MSG.DONE .AZ "%D File(s) Removed.\r\n"
*--------------------------------------
.DUMMY
.OR 0
DS.START
2016-10-30 18:19:43 +00:00
bContinue .BS 1
bRecurse .BS 1
bQuiet .BS 1
2020-05-21 12:55:49 +00:00
.INB usr/src/bin/x.cpmvrm.g
.INB usr/src/bin/x.fileenum.g
DS.END
.ED
*--------------------------------------
MAN
2020-05-21 12:55:49 +00:00
SAVE usr/src/bin/rm.s
ASM