A2osX/BIN/CP.S.txt

52 lines
1.4 KiB
Plaintext
Raw Normal View History

2016-05-01 21:13:54 +00:00
NEW
2019-07-26 14:23:07 +00:00
AUTO 3,1
2016-05-01 21:13:54 +00:00
.LIST OFF
.OP 65C02
.OR $2000
2020-02-23 20:46:25 +00:00
.TF bin/cp
2016-05-01 21:13:54 +00:00
*--------------------------------------
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
2016-05-01 21:13:54 +00:00
*--------------------------------------
2019-04-29 15:47:17 +00:00
X.ENTER.SUBDIR .EQ 0
X.COPY.TO.DEST .EQ 1
X.DELETE.SOURCE .EQ 0
2016-05-01 21:13:54 +00:00
*--------------------------------------
2020-08-25 14:54:30 +00:00
.INB usr/src/shared/x.cpmvrm.s
.INB usr/src/shared/x.fileenum.s
2016-05-01 21:13:54 +00:00
*--------------------------------------
CS.END
2016-05-01 21:13:54 +00:00
*--------------------------------------
2019-10-28 06:32:12 +00:00
OptionList .AS "CRYQcryq"
OptionVars .DA #bContinue,#bRecurse,#bNoConfirm,#bQuiet,#bContinue,#bRecurse,#bNoConfirm,#bQuiet
2016-05-01 21:13:54 +00:00
*--------------------------------------
2019-10-28 06:32:12 +00:00
MSG.USAGE .AS "Usage : CP [Src File/Dir, *,? wildcards allowed]\r\n"
.AS " -C : Continue on error\r\n"
.AS " -Q : Quiet\r\n"
.AS " -R : Recurse subdirectories\r\n"
.AZ " -Y : Dont't prompt for override\r\n"
MSG.DIR .AZ "CP Dir :%s to %s..."
2020-02-29 14:06:28 +00:00
MSG.REG .AZ "CP File:%s to %s..."
MSG.OVERWRITE .AZ "Overwrite %s [Yes,No,All]?"
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) Copied.\r\n"
2016-05-01 21:13:54 +00:00
*--------------------------------------
.DUMMY
.OR 0
DS.START
bContinue .BS 1
bRecurse .BS 1
bNoConfirm .BS 1
bQuiet .BS 1
2020-08-25 14:54:30 +00:00
.INB usr/src/shared/x.cpmvrm.g
.INB usr/src/shared/x.fileenum.g
DS.END .ED
2016-05-01 21:13:54 +00:00
*--------------------------------------
MAN
2020-05-21 12:55:49 +00:00
SAVE usr/src/bin/cp.s
2016-05-01 21:13:54 +00:00
ASM