A2osX/BIN/LC.S.txt

346 lines
6.1 KiB
Plaintext
Raw Normal View History

2020-07-23 16:48:45 +00:00
NEW
AUTO 3,1
.LIST OFF
.OP 65C02
.OR $2000
.TF bin/lc
*--------------------------------------
.INB inc/macros.i
.INB inc/a2osx.i
.INB inc/mli.i
.INB inc/mli.e.i
*--------------------------------------
X.ENTER.SUBDIR .EQ 0
X.COPY.TO.DEST .EQ 0
X.DELETE.SOURCE .EQ 0
*--------------------------------------
.DUMMY
.OR ZPBIN
ZS.START
ZPPtr1 .BS 2
ZPPtr2 .BS 2
ZPFileName .BS 2
ZPFileStat .BS 2
ZPFullPath .BS 2
ZPNewPath .BS 2
2021-07-28 16:50:59 +00:00
hSrcFullPath .BS 1
hSrcNewPath .BS 1
2020-07-23 16:48:45 +00:00
2021-07-28 16:50:59 +00:00
ArgIndex .BS 1
2020-07-23 16:48:45 +00:00
bPause .BS 1
bContinue .BS 1
bRecurse .BS 1
ZS.END .ED
*--------------------------------------
* File Header (16 Bytes)
*--------------------------------------
CS.START cld
jmp (.1,x)
.DA #$61 6502,Level 1 (65c02)
.DA #1 BIN Layout Version 1
.DA 0
.DA CS.END-CS.START Code Size (without Constants)
.DA DS.END-DS.START Data SegmentSize
.DA #64 Stack Size
.DA #ZS.END-ZS.START Zero Page Size
.DA 0
*--------------------------------------
* Relocation Table
*--------------------------------------
.1 .DA CS.INIT
.DA CS.RUN
2022-11-02 06:54:30 +00:00
.DA CS.DOEVENT
2020-07-23 16:48:45 +00:00
.DA CS.QUIT
L.MSG.USAGE .DA MSG.USAGE
L.MSG.DIR .DA MSG.DIR
L.MSG.FILE .DA MSG.FILE
L.MSG.OK .DA MSG.OK
L.MSG.ERR .DA MSG.ERR
.DA 0
*--------------------------------------
CS.INIT clc
rts
*--------------------------------------
2021-07-28 16:50:59 +00:00
CS.RUN inc ArgIndex
lda ArgIndex
2020-07-23 16:48:45 +00:00
>SYSCALL ArgV
bcs .5
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
>STYA ZPPtr1
lda (ZPPtr1)
cmp #'-'
bne .4
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
jsr CS.RUN.CheckOpt
bcc CS.RUN
2022-11-02 06:54:30 +00:00
.9 >LDYA L.MSG.USAGE
>SYSCALL PutS
2020-07-23 16:48:45 +00:00
lda #E.SYN
sec
rts
.4 >LDA.G hSrcBasePath
bne .9
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
>LDYA ZPPtr1
jsr InitSrcDirYA
bcc CS.RUN
.99 rts
*--------------------------------------
.5 >LDYAI 256
>SYSCALL GetMem
bcs .99
>STYA ZPFullPath
2021-07-28 16:50:59 +00:00
stx hSrcFullPath
2020-07-23 16:48:45 +00:00
>LDYAI 256
>SYSCALL GetMem
bcs .99
2021-05-04 17:31:21 +00:00
2020-07-23 16:48:45 +00:00
>STYA ZPNewPath
2021-07-28 16:50:59 +00:00
stx hSrcNewPath
2020-07-23 16:48:45 +00:00
*--------------------------------------
CS.RUN.LOOP ldy #S.PS.hStdIn
lda (pPS),y
2020-08-25 10:56:00 +00:00
>SYSCALL FEOF
2020-07-23 16:48:45 +00:00
bcs .99
tay
bne .1
>SYSCALL GetChar
bcs .99
cmp #$03 Ctrl-C
beq .99 Abort....
cmp #$13 Ctrl-S
bne .1
lda bPause
eor #$ff
sta bPause
bne CS.RUN.LOOP
.1 lda bPause
bne CS.RUN.LOOP Pause...
*--------------------------------------
jsr GetEntry
bcs CS.RUN.LEAVE
ldy #S.STAT.MODE+1
lda (ZPFileStat),y
and #$70
bne .5 REG file ?
jsr CS.RUN.FILE
bcc CS.RUN.NEXT
rts
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
.5 cmp /S.STAT.MODE.DIR DIR ?
beq .6
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
cmp /S.STAT.MODE.BDEV VOL ?
bne .9
.6 jsr CS.RUN.DIR
bcc CS.RUN.NEXT
rts
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
.9 lda #MLI.E.UNSUPST
sec
2022-11-02 06:54:30 +00:00
.99 rts
2020-07-23 16:48:45 +00:00
*--------------------------------------
CS.RUN.NEXT jsr GetNextEntry
bcc CS.RUN.LOOP
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
CS.RUN.LEAVE jsr LeaveSubDir
bcs .90
jsr BasePath..
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
jmp CS.RUN.NEXT
.90 lda #0
sec
.99 rts
*--------------------------------------
CS.RUN.DIR lda (ZPFileName)
cmp #'.'
bne .1
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
ldy #1
lda (ZPFileName),y
beq .8
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
cmp #'.'
bne .1
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
iny
lda (ZPFileName),y
beq .8
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
.1 jsr FilterMatch
bcs .8
jsr CS.RUN.GetFilePath
>PUSHW L.MSG.DIR
>PUSHW ZPFullPath
>PUSHBI 2
>SYSCALL PrintF
bcs .9
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
jsr CS.RUN.GetNewPath
>PUSHW ZPFullPath
>PUSHW ZPNewPath
2020-07-23 16:48:45 +00:00
>SYSCALL Rename
jsr CS.RUN.CheckErr
bcs .9
lda bRecurse
bpl .8
>LDYA ZPFileName is now lowercase
jmp EnterSubDirYA
.8 clc
.9 rts
*--------------------------------------
CS.RUN.FILE jsr FilterMatch
bcs .8 no match, skip....
jsr CS.RUN.GetFilePath
>PUSHW L.MSG.FILE
>PUSHW ZPFullPath
>PUSHBI 2
>SYSCALL PrintF
bcs .9
jsr CS.RUN.GetNewPath
2022-11-02 06:54:30 +00:00
2021-05-04 17:31:21 +00:00
>PUSHW ZPFullPath
>PUSHW ZPNewPath
2020-07-23 16:48:45 +00:00
>SYSCALL Rename
2021-05-04 17:31:21 +00:00
bra CS.RUN.CheckErr
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
.8 clc
2022-11-02 06:54:30 +00:00
.9 rts
2020-07-23 16:48:45 +00:00
*--------------------------------------
CS.RUN.CheckErr bcs .1
>LDYA L.MSG.OK
>SYSCALL PutS
rts
.1 pha
>PUSHW L.MSG.ERR
pla
pha
>PUSHA
>PUSHBI 1
>SYSCALL PrintF
lda bContinue
eor #$80
asl
pla
rts
*--------------------------------------
CS.RUN.GetFilePath
2021-05-04 17:31:21 +00:00
>PUSHW ZPFullPath
2020-07-23 16:48:45 +00:00
>LDA.G hSrcBasePath
>SYSCALL GetMemPtr
>PUSHYA
>SYSCALL StrCpy
2022-11-02 06:54:30 +00:00
2021-05-04 17:31:21 +00:00
>PUSHW ZPFullPath
2020-07-23 16:48:45 +00:00
>PUSHW ZPFileName
>SYSCALL StrCat
rts
*--------------------------------------
CS.RUN.GetNewPath
2021-05-04 17:31:21 +00:00
>PUSHW ZPNewPath
2020-07-23 16:48:45 +00:00
>LDA.G hSrcBasePath
>SYSCALL GetMemPtr
>PUSHYA
>SYSCALL StrCpy
2022-11-02 06:54:30 +00:00
2021-05-04 17:31:21 +00:00
>PUSHW ZPNewPath
2020-07-23 16:48:45 +00:00
>LDYA ZPFileName
2020-08-25 10:56:00 +00:00
>SYSCALL StrLwr
2022-11-02 06:54:30 +00:00
2020-07-23 16:48:45 +00:00
>PUSHW ZPFileName
>SYSCALL StrCat
rts
*--------------------------------------
CS.DOEVENT sec
rts
*--------------------------------------
CS.QUIT jsr LeaveSubDir
bcc CS.QUIT
>LDA.G hFilter
2021-07-28 16:50:59 +00:00
jsr .7
2020-07-23 16:48:45 +00:00
2021-07-28 16:50:59 +00:00
lda hSrcFullPath
jsr .7
2020-07-23 16:48:45 +00:00
2021-07-28 16:50:59 +00:00
lda hSrcNewPath
2020-07-23 16:48:45 +00:00
2021-07-28 16:50:59 +00:00
.7 beq .8
2020-07-23 16:48:45 +00:00
>SYSCALL FreeMem
.8 clc
rts
*--------------------------------------
2022-11-02 06:54:30 +00:00
CS.RUN.CheckOpt ldy #1
2020-07-23 16:48:45 +00:00
lda (ZPPtr1),y
ldx #OptionVars-OptionList-1
.2 cmp OptionList,x
beq .3
dex
bpl .2
sec
rts
.3 ldy OptionVars,x
lda #$ff
sta 0,y
clc
rts
*--------------------------------------
2020-08-25 14:54:30 +00:00
.INB usr/src/shared/x.fileenum.s
2020-07-23 16:48:45 +00:00
*--------------------------------------
CS.END
*--------------------------------------
OptionList .AS "CRcr"
OptionVars .DA #bContinue,#bRecurse
.DA #bContinue,#bRecurse
*--------------------------------------
2022-11-02 06:54:30 +00:00
MSG.USAGE .CS "Usage : LC File(s) (*,? wildcards allowed)\r\n"
.CS " -C : Continue on error\r\n"
.CZ " -R : Recurse subdirectories\r\n"
MSG.OK .CZ "[OK]"
MSG.ERR .CZ "[%h]\r\n"
MSG.DIR .CZ "Dir :%s..."
MSG.FILE .CZ "File:%s..."
2020-07-23 16:48:45 +00:00
*--------------------------------------
.DUMMY
.OR 0
2021-07-28 16:50:59 +00:00
DS.START .INB usr/src/shared/x.fileenum.g
2020-08-25 10:56:00 +00:00
DS.END .ED
2020-07-23 16:48:45 +00:00
*--------------------------------------
MAN
SAVE usr/src/bin/lc.s
ASM