2016-10-18 08:26:24 +02:00
|
|
|
|
NEW
|
2018-11-17 18:17:13 +01:00
|
|
|
|
PREFIX
|
2017-12-22 22:24:30 +01:00
|
|
|
|
AUTO 4,1
|
2016-10-18 08:26:24 +02:00
|
|
|
|
.LIST OFF
|
|
|
|
|
*--------------------------------------
|
2017-02-24 17:34:02 +01:00
|
|
|
|
X.MAX.RECURSE .EQ 8
|
|
|
|
|
*--------------------------------------
|
2017-09-22 17:25:21 +02:00
|
|
|
|
* Uses: (pData)
|
|
|
|
|
* hDIRs .BS X.MAX.RECURSE+1
|
|
|
|
|
* hDIRENTs .BS X.MAX.RECURSE+1
|
|
|
|
|
* Index .BS 1
|
|
|
|
|
* hSrcBasePath .BS 1
|
|
|
|
|
* hDstBasePath .BS 1 (optional)
|
|
|
|
|
* STAT .BS S.STAT
|
|
|
|
|
*--------------------------------------
|
2018-12-17 16:21:32 +01:00
|
|
|
|
* Compare a ZPFileName against pattern in Y,A (e.g. '*test?.txt')
|
|
|
|
|
* CC : match
|
|
|
|
|
* CS : no match
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
StrMatch >STYA ZPPtr2
|
|
|
|
|
|
|
|
|
|
lda (ZPPtr2) Get pattern 1st byte
|
|
|
|
|
beq .8 Match always if empty
|
|
|
|
|
|
|
|
|
|
ldy #0
|
|
|
|
|
|
|
|
|
|
bra .21
|
|
|
|
|
|
|
|
|
|
.1 inc ZPPtr2 Make PTR2 (pattern) advance to next char
|
|
|
|
|
bne .2
|
|
|
|
|
inc ZPPtr2+1
|
|
|
|
|
|
|
|
|
|
.2 lda (ZPPtr2) get pattern char
|
|
|
|
|
beq .41 end of pattern...
|
|
|
|
|
|
|
|
|
|
.21 cmp #'*'
|
|
|
|
|
beq .5
|
|
|
|
|
|
|
|
|
|
.3 lda (ZPFileName) we must match ? or regular char, check if at end of string
|
|
|
|
|
beq .9 no char left, exit with error
|
|
|
|
|
|
|
|
|
|
lda (ZPPtr2) get back pattern char
|
|
|
|
|
cmp #'?'
|
|
|
|
|
beq .4 no need to compare, any char will match
|
|
|
|
|
cmp (ZPFileName),y Regular Char, compare with string at Y
|
|
|
|
|
bne .9 no match, exit
|
|
|
|
|
|
|
|
|
|
.4 iny advance to next char to compare
|
|
|
|
|
bra .1 continue if remaining char in pattern
|
|
|
|
|
|
|
|
|
|
.41 lda (ZPFileName),y end of pattern, but end of string ?
|
|
|
|
|
|
|
|
|
|
beq .8 yes, string matched entirely
|
|
|
|
|
* no, remaining char in string, no match
|
|
|
|
|
.9 sec
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
.5 inc ZPPtr2 Make PTR2 advance to next char
|
|
|
|
|
bne .6
|
|
|
|
|
inc ZPPtr2+1
|
|
|
|
|
|
|
|
|
|
.6 lda (ZPPtr2) we have '*', last char of pattern ?
|
|
|
|
|
beq .8 yes, match everything, including empty string
|
|
|
|
|
|
|
|
|
|
lda (ZPPtr2) get next char of pattern
|
|
|
|
|
cmp #'*' another '*' ?
|
|
|
|
|
beq .5 yes, '**' = '*', go next char
|
|
|
|
|
cmp #'?' '*?' ? we must match a least one char
|
|
|
|
|
beq .3
|
|
|
|
|
|
|
|
|
|
.7 lda (ZPFileName),y we need at least one remaining char in string, check if at end of string
|
|
|
|
|
beq .9 no chance to match ? or regular char
|
|
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
lda (ZPPtr2) get again char in pattern
|
|
|
|
|
cmp (ZPFileName),y compare with char in string
|
|
|
|
|
bne .7 not equal to next non wildcard in pattern
|
|
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
bra .1 go check remaining char in pattern...
|
|
|
|
|
|
|
|
|
|
.8 clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2018-07-18 17:30:42 +02:00
|
|
|
|
InitSrcDirYA >SYSCALL RealPath
|
2016-10-20 18:04:35 +02:00
|
|
|
|
bcc .10
|
|
|
|
|
rts
|
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
.10 >STYA ZPPtr1
|
|
|
|
|
txa
|
|
|
|
|
>STA.G hFullPath
|
2017-09-28 17:39:12 +02:00
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
ldy #1
|
|
|
|
|
lda (ZPPtr1),y
|
2018-12-20 08:33:10 +01:00
|
|
|
|
beq .5 we have '/'
|
|
|
|
|
|
|
|
|
|
>PUSHEA.G STAT
|
2018-07-20 13:51:08 +02:00
|
|
|
|
>LDYA ZPPtr1
|
2017-02-24 17:34:02 +01:00
|
|
|
|
>SYSCALL Stat
|
2017-09-22 17:25:21 +02:00
|
|
|
|
bcs .1 File/DIR does not exists, go extract pattern
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
>LDA.G STAT+S.STAT.P.TYPE
|
2018-12-20 08:33:10 +01:00
|
|
|
|
cmp #S.FI.T.DIR
|
2017-09-22 17:25:21 +02:00
|
|
|
|
bne .4 TYPE not a DIR, extract....
|
2018-11-28 12:39:33 +01:00
|
|
|
|
|
|
|
|
|
bra .5 TYPE=DIR, do not extract pattern
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
.1 ldy #0 TYPE is not DIR, check if wc
|
2017-09-21 17:29:45 +02:00
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
.11 iny
|
2017-09-21 17:29:45 +02:00
|
|
|
|
lda (ZPPtr1),y Get Src Path Len
|
2017-10-03 17:33:30 +02:00
|
|
|
|
bne .11
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
dey
|
2017-09-22 17:25:21 +02:00
|
|
|
|
|
2017-07-05 16:45:19 +02:00
|
|
|
|
ldx #0 Init Wildcard count
|
|
|
|
|
|
2016-10-19 17:47:53 +02:00
|
|
|
|
.2 lda (ZPPtr1),y search backward for a /
|
|
|
|
|
cmp #'/'
|
|
|
|
|
beq .3
|
2017-09-22 17:25:21 +02:00
|
|
|
|
|
2017-07-05 16:45:19 +02:00
|
|
|
|
cmp #'?' Test if some wildcard chars....
|
|
|
|
|
beq .21
|
|
|
|
|
cmp #'*'
|
|
|
|
|
bne .22
|
|
|
|
|
|
|
|
|
|
.21 inx inc wildcard count
|
|
|
|
|
.22 dey
|
2016-10-19 17:47:53 +02:00
|
|
|
|
bne .2
|
|
|
|
|
|
2017-09-22 17:25:21 +02:00
|
|
|
|
.3 txa
|
|
|
|
|
beq .91 no wc, file not found....
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2017-09-22 17:25:21 +02:00
|
|
|
|
.4 ldy #0
|
|
|
|
|
|
|
|
|
|
.41 iny Search end of string.....
|
|
|
|
|
lda (ZPPtr1),y
|
|
|
|
|
bne .41
|
2017-07-05 16:45:19 +02:00
|
|
|
|
|
2017-09-22 17:25:21 +02:00
|
|
|
|
lda #'/'
|
|
|
|
|
|
|
|
|
|
.42 dey
|
|
|
|
|
cmp (ZPPtr1),y Search backward /
|
|
|
|
|
bne .42
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
|
|
|
|
tya
|
2017-10-03 17:33:30 +02:00
|
|
|
|
sec +1 to skip '/'
|
2017-09-21 17:29:45 +02:00
|
|
|
|
adc ZPPtr1
|
2017-09-22 17:25:21 +02:00
|
|
|
|
sta ZPPtr2
|
2017-09-21 17:29:45 +02:00
|
|
|
|
tay
|
|
|
|
|
lda ZPPtr1+1
|
|
|
|
|
adc #0
|
2017-09-22 17:25:21 +02:00
|
|
|
|
sta ZPPtr2+1
|
|
|
|
|
|
2018-12-20 17:23:43 +01:00
|
|
|
|
>SYSCALL strdup
|
2016-10-19 17:47:53 +02:00
|
|
|
|
bcs .9
|
|
|
|
|
txa
|
2017-09-22 17:25:21 +02:00
|
|
|
|
>STA.G hFilter
|
|
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
|
sta (ZPPtr2)
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2017-06-28 16:34:11 +02:00
|
|
|
|
.5 >LDYAI 256
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL GetMem Get a 256 buffer to store BasePath
|
2016-10-19 17:47:53 +02:00
|
|
|
|
bcs .9
|
|
|
|
|
|
|
|
|
|
>STYA ZPPtr2
|
|
|
|
|
txa
|
2017-09-21 17:29:45 +02:00
|
|
|
|
>STA.G hSrcBasePath
|
2017-07-05 16:45:19 +02:00
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
ldy #$ff
|
|
|
|
|
|
|
|
|
|
.6 iny
|
|
|
|
|
lda (ZPPtr1),y
|
|
|
|
|
sta (ZPPtr2),y
|
|
|
|
|
bne .6
|
|
|
|
|
|
2018-12-20 08:33:10 +01:00
|
|
|
|
dey
|
|
|
|
|
lda #'/'
|
|
|
|
|
cmp (ZPPtr2),y
|
|
|
|
|
beq .7
|
|
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
sta (ZPPtr2),y
|
|
|
|
|
iny
|
|
|
|
|
lda #0
|
|
|
|
|
sta (ZPPtr2),y
|
|
|
|
|
|
|
|
|
|
.7 >LDYA ZPPtr2
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL OpenDir
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
2016-10-19 17:47:53 +02:00
|
|
|
|
bcs .9
|
|
|
|
|
|
|
|
|
|
ldy #hDIRs
|
2016-10-28 11:37:57 +02:00
|
|
|
|
sta (pData),y set hDIRs[0] = Src Hdir
|
2016-10-20 18:04:35 +02:00
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
ldy #index
|
|
|
|
|
lda #1
|
2016-10-28 11:37:57 +02:00
|
|
|
|
sta (pData),y index=hDIRs[0]
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
|
|
|
|
jsr .9 Cleanup
|
|
|
|
|
|
|
|
|
|
clc
|
2016-10-20 18:04:35 +02:00
|
|
|
|
rts
|
2017-07-05 16:45:19 +02:00
|
|
|
|
|
2017-10-26 18:01:54 +02:00
|
|
|
|
.91 lda #MLI.E.FNOTFND
|
2017-09-22 17:25:21 +02:00
|
|
|
|
|
2016-10-19 17:47:53 +02:00
|
|
|
|
.9 pha
|
2017-09-22 17:25:21 +02:00
|
|
|
|
>LDA.G hFullPath
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL FreeMem
|
2016-10-19 17:47:53 +02:00
|
|
|
|
pla
|
|
|
|
|
sec
|
2016-10-28 11:37:57 +02:00
|
|
|
|
InitSrcDirYA.RTS
|
2016-10-19 17:47:53 +02:00
|
|
|
|
rts
|
2017-02-23 17:43:42 +01:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
.DO X.COPY.TO.DEST=1
|
2017-10-04 17:12:03 +02:00
|
|
|
|
|
2018-07-18 17:30:42 +02:00
|
|
|
|
InitDstDirYA >SYSCALL RealPath
|
2017-07-05 16:45:19 +02:00
|
|
|
|
bcs InitSrcDirYA.RTS
|
|
|
|
|
|
2017-02-23 17:43:42 +01:00
|
|
|
|
>STYA ZPPtr1
|
2017-10-03 17:33:30 +02:00
|
|
|
|
txa
|
|
|
|
|
>STA.G hFullPath
|
|
|
|
|
|
2017-09-25 17:50:33 +02:00
|
|
|
|
>PUSHEA.G STAT
|
2018-07-20 13:51:08 +02:00
|
|
|
|
>LDYA ZPPtr1
|
2017-06-26 17:28:18 +02:00
|
|
|
|
>SYSCALL Stat
|
|
|
|
|
bcs .1 File/DIR does not exists, go extract DstFileName
|
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
>LDA.G STAT+S.STAT.P.TYPE
|
2018-12-20 08:33:10 +01:00
|
|
|
|
cmp #S.FI.T.DIR
|
2017-06-26 17:28:18 +02:00
|
|
|
|
beq .5 Dst is a directory...no destfilename
|
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
.1 ldy #0
|
|
|
|
|
|
|
|
|
|
.11 iny Search end of string.....
|
|
|
|
|
lda (ZPPtr1),y
|
|
|
|
|
bne .11
|
2017-06-26 17:28:18 +02:00
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
lda #'/'
|
2017-06-26 17:28:18 +02:00
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
.2 dey
|
|
|
|
|
cmp (ZPPtr1),y Search backward /
|
|
|
|
|
bne .2
|
2017-06-26 17:28:18 +02:00
|
|
|
|
|
|
|
|
|
tya
|
2017-10-03 17:33:30 +02:00
|
|
|
|
sec +1 to skip '/'
|
|
|
|
|
adc ZPPtr1
|
|
|
|
|
sta ZPPtr2
|
|
|
|
|
tay
|
|
|
|
|
lda ZPPtr1+1
|
|
|
|
|
adc #0
|
|
|
|
|
sta ZPPtr2+1
|
|
|
|
|
|
2018-12-20 17:23:43 +01:00
|
|
|
|
>SYSCALL strdup
|
2017-06-26 17:28:18 +02:00
|
|
|
|
bcs .9
|
|
|
|
|
txa
|
2017-10-03 17:33:30 +02:00
|
|
|
|
>STA.G hDstFileName
|
|
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
|
sta (ZPPtr2)
|
2017-06-26 17:28:18 +02:00
|
|
|
|
|
2017-06-28 16:34:11 +02:00
|
|
|
|
.5 >LDYAI 256
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL GetMem Get a 256 buffer to store DstBasePath
|
2017-02-23 17:43:42 +01:00
|
|
|
|
bcs .9
|
|
|
|
|
|
|
|
|
|
>STYA ZPPtr2
|
|
|
|
|
txa
|
2017-10-03 17:33:30 +02:00
|
|
|
|
>STA.G hDstBasePath
|
2017-02-23 17:43:42 +01:00
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
ldy #$ff
|
2017-02-23 17:43:42 +01:00
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
.6 iny
|
|
|
|
|
lda (ZPPtr1),y
|
2017-02-23 17:43:42 +01:00
|
|
|
|
sta (ZPPtr2),y
|
|
|
|
|
bne .6
|
|
|
|
|
|
2017-10-03 17:33:30 +02:00
|
|
|
|
dey
|
|
|
|
|
|
2017-02-23 17:43:42 +01:00
|
|
|
|
lda #'/'
|
|
|
|
|
cmp (ZPPtr2),y
|
|
|
|
|
beq .7
|
|
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
sta (ZPPtr2),y
|
2017-10-03 17:33:30 +02:00
|
|
|
|
iny
|
|
|
|
|
lda #0
|
|
|
|
|
sta (ZPPtr2),y
|
2017-02-23 17:43:42 +01:00
|
|
|
|
|
|
|
|
|
.7 jsr .9 Cleanup
|
2017-06-26 17:28:18 +02:00
|
|
|
|
|
2017-02-23 17:43:42 +01:00
|
|
|
|
clc
|
|
|
|
|
.99 rts
|
|
|
|
|
|
|
|
|
|
.9 pha
|
2017-10-03 17:33:30 +02:00
|
|
|
|
>LDA.G hFullPath
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL FreeMem
|
2017-02-23 17:43:42 +01:00
|
|
|
|
pla
|
|
|
|
|
sec
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
.FIN
|
2016-10-19 17:47:53 +02:00
|
|
|
|
*--------------------------------------
|
2017-02-26 19:34:00 +01:00
|
|
|
|
GetNextEntry jsr GetEntry
|
|
|
|
|
bcs .9
|
2016-10-25 08:58:15 +02:00
|
|
|
|
|
2018-12-19 17:45:09 +01:00
|
|
|
|
jsr GetFilenameLen Save actual file len for setting up
|
|
|
|
|
pha new offset later
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
|
|
|
|
lda ZPFileStat
|
2016-10-26 22:51:06 +02:00
|
|
|
|
clc
|
2017-02-26 19:34:00 +01:00
|
|
|
|
adc #S.STAT
|
|
|
|
|
sta ZPFileName
|
2016-10-25 08:58:15 +02:00
|
|
|
|
|
2017-02-26 19:34:00 +01:00
|
|
|
|
lda ZPFileStat+1
|
|
|
|
|
adc /S.STAT
|
|
|
|
|
sta ZPFileName+1 Make nDIRENTs[i] point to next DIRENT
|
|
|
|
|
|
2018-12-20 08:33:10 +01:00
|
|
|
|
jsr GetFilenameLen are we at end of this buffer ?
|
2017-02-26 19:34:00 +01:00
|
|
|
|
beq .1 yes, go read next one ...
|
2016-10-25 08:58:15 +02:00
|
|
|
|
|
2018-12-19 17:45:09 +01:00
|
|
|
|
jsr SetFileStatPtr
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
jsr GetoDIRENT
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
pla Get back previous file len
|
2016-10-25 08:58:15 +02:00
|
|
|
|
|
2017-02-26 19:34:00 +01:00
|
|
|
|
sec
|
|
|
|
|
adc (pData),y
|
|
|
|
|
sta (pData),y
|
|
|
|
|
iny
|
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
lda #0
|
2017-02-26 19:34:00 +01:00
|
|
|
|
adc (pData),y
|
|
|
|
|
sta (pData),y
|
|
|
|
|
|
|
|
|
|
dey
|
|
|
|
|
|
|
|
|
|
lda #S.STAT
|
|
|
|
|
clc
|
|
|
|
|
adc (pData),y
|
2016-10-26 22:51:06 +02:00
|
|
|
|
sta (pData),y
|
|
|
|
|
iny
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
|
|
|
|
lda /S.STAT
|
|
|
|
|
adc (pData),y
|
2016-10-26 22:51:06 +02:00
|
|
|
|
sta (pData),y
|
2017-02-26 19:34:00 +01:00
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
|
2017-09-21 17:29:45 +02:00
|
|
|
|
.1 pla
|
|
|
|
|
jsr GetEntry.ReadDir
|
2017-02-26 19:34:00 +01:00
|
|
|
|
bcs .9
|
2017-09-21 17:29:45 +02:00
|
|
|
|
|
2018-12-19 17:45:09 +01:00
|
|
|
|
jsr GetFilenameLen
|
|
|
|
|
beq GetNextEntry.99
|
|
|
|
|
|
|
|
|
|
jsr SetFileStatPtr
|
2017-09-21 17:29:45 +02:00
|
|
|
|
|
2017-02-26 19:34:00 +01:00
|
|
|
|
clc
|
|
|
|
|
.9 rts
|
|
|
|
|
|
2018-12-19 17:45:09 +01:00
|
|
|
|
GetNextEntry.99 sec
|
2017-02-26 19:34:00 +01:00
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2018-11-21 14:08:11 +01:00
|
|
|
|
GetEntry jsr GethDIRENT
|
2017-02-26 19:34:00 +01:00
|
|
|
|
bne .1 we have a buffer to scan
|
|
|
|
|
|
|
|
|
|
jsr GetEntry.ReadDir First run, get first block
|
|
|
|
|
bcs .9 ZPFileName = start of buffer
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
2017-02-26 19:34:00 +01:00
|
|
|
|
lda (ZPFileName) Empty !!!
|
|
|
|
|
bne .8
|
2018-12-19 17:45:09 +01:00
|
|
|
|
|
2017-02-26 19:34:00 +01:00
|
|
|
|
sec
|
|
|
|
|
rts
|
|
|
|
|
|
2018-07-18 17:30:42 +02:00
|
|
|
|
.1 >SYSCALL GetMemPtr
|
2017-02-24 17:34:02 +01:00
|
|
|
|
>STYA ZPFileName
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
jsr GetoDIRENT
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
2017-02-24 17:34:02 +01:00
|
|
|
|
lda ZPFileName
|
|
|
|
|
clc
|
2016-10-26 22:51:06 +02:00
|
|
|
|
adc (pData),y
|
2017-02-24 17:34:02 +01:00
|
|
|
|
sta ZPFileName
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
|
|
|
|
iny
|
2017-02-24 17:34:02 +01:00
|
|
|
|
lda ZPFileName+1
|
2016-10-26 22:51:06 +02:00
|
|
|
|
adc (pData),y
|
2017-02-26 19:34:00 +01:00
|
|
|
|
sta ZPFileName+1 ZPFileName=ZPFileName+oDIRENT
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
2018-12-19 17:45:09 +01:00
|
|
|
|
.8 jsr GetFilenameLen
|
|
|
|
|
jsr SetFileStatPtr
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
|
|
|
|
clc
|
|
|
|
|
.9 rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
GetEntry.ReadDir
|
2018-11-21 14:08:11 +01:00
|
|
|
|
jsr GethDIRENT
|
2017-02-26 19:34:00 +01:00
|
|
|
|
beq .1
|
2018-11-21 14:08:11 +01:00
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
pha
|
|
|
|
|
lda #0
|
|
|
|
|
sta (pData),y reset hDIRENT
|
|
|
|
|
pla
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL FreeMem discard previous hDIRENT
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
.1 jsr GethDIR
|
2018-07-20 13:51:08 +02:00
|
|
|
|
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL ReadDir
|
2017-02-26 19:34:00 +01:00
|
|
|
|
bcs .9
|
|
|
|
|
>STYA ZPFileName
|
2016-10-28 11:37:57 +02:00
|
|
|
|
|
2017-02-26 19:34:00 +01:00
|
|
|
|
ldy #index
|
|
|
|
|
lda (pData),y
|
|
|
|
|
clc
|
|
|
|
|
adc #hDIRENTs-1
|
|
|
|
|
tay
|
|
|
|
|
txa get hDIRENT in A
|
2016-10-26 22:51:06 +02:00
|
|
|
|
sta (pData),y
|
2017-02-24 17:34:02 +01:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
jsr GetoDIRENT
|
|
|
|
|
|
|
|
|
|
lda #0 and reset offset for this buffer
|
2017-02-26 19:34:00 +01:00
|
|
|
|
sta (pData),y
|
|
|
|
|
iny
|
2016-10-26 22:51:06 +02:00
|
|
|
|
sta (pData),y
|
|
|
|
|
clc
|
2017-02-26 19:34:00 +01:00
|
|
|
|
.9 rts
|
2016-10-25 08:58:15 +02:00
|
|
|
|
*--------------------------------------
|
2016-10-20 18:04:35 +02:00
|
|
|
|
EnterSubDirYA >STYA ZPPtr2 save SUBDIR for StrCat
|
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
ldy #index
|
2016-10-20 18:04:35 +02:00
|
|
|
|
lda (pData),y
|
2016-11-08 17:56:05 +01:00
|
|
|
|
cmp #X.MAX.RECURSE
|
2016-10-26 22:51:06 +02:00
|
|
|
|
beq .9
|
2016-10-20 18:04:35 +02:00
|
|
|
|
|
2016-11-08 17:56:05 +01:00
|
|
|
|
ldy #hSrcBasePath
|
2018-11-21 14:08:11 +01:00
|
|
|
|
jsr EnterSubDirY
|
2016-10-26 22:51:06 +02:00
|
|
|
|
|
2016-10-20 18:04:35 +02:00
|
|
|
|
>LDYA ZPPtr1
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL OpenDir
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
bcs .9
|
2016-10-20 18:04:35 +02:00
|
|
|
|
pha
|
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
>INC.G index
|
2016-10-26 22:51:06 +02:00
|
|
|
|
tax
|
|
|
|
|
* clc from BCS
|
|
|
|
|
adc #hDIRs-1
|
2016-10-20 18:04:35 +02:00
|
|
|
|
tay
|
|
|
|
|
pla
|
|
|
|
|
sta (pData),y
|
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
txa make sure hDIRENTs[i] is closed
|
|
|
|
|
adc #hDIRENTs-1
|
|
|
|
|
tay
|
|
|
|
|
lda #0
|
|
|
|
|
sta (pData),y
|
|
|
|
|
|
2017-02-21 18:01:30 +01:00
|
|
|
|
.DO X.COPY.TO.DEST=1
|
2016-11-13 22:03:31 +01:00
|
|
|
|
ldy #hDstBasePath
|
2018-11-21 14:08:11 +01:00
|
|
|
|
jsr EnterSubDirY
|
2016-11-13 22:03:31 +01:00
|
|
|
|
.FIN
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
|
|
|
|
clc
|
2016-10-26 22:51:06 +02:00
|
|
|
|
.9 rts
|
2016-11-13 22:03:31 +01:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
EnterSubDirY lda (pData),y
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL GetMemPtr
|
2016-11-13 22:03:31 +01:00
|
|
|
|
|
|
|
|
|
>STYA ZPPtr1 save full path
|
2018-11-21 14:08:11 +01:00
|
|
|
|
|
|
|
|
|
jsr .1 Make sure ending with /
|
2016-11-13 22:03:31 +01:00
|
|
|
|
|
|
|
|
|
>PUSHW ZPPtr2
|
2018-07-16 07:52:52 +02:00
|
|
|
|
>LDYA ZPPtr1
|
2017-09-21 17:29:45 +02:00
|
|
|
|
>SYSCALL StrCat
|
2016-11-13 22:03:31 +01:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
.1 ldy #0
|
2017-09-22 17:25:21 +02:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
.2 iny
|
2017-09-22 17:25:21 +02:00
|
|
|
|
lda (ZPPtr1),y
|
2018-11-21 14:08:11 +01:00
|
|
|
|
bne .2
|
2017-09-22 17:25:21 +02:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
dey
|
2016-11-13 22:03:31 +01:00
|
|
|
|
lda #'/'
|
2018-11-21 14:08:11 +01:00
|
|
|
|
cmp (ZPPtr1),y
|
|
|
|
|
beq .8
|
|
|
|
|
iny
|
2016-11-13 22:03:31 +01:00
|
|
|
|
sta (ZPPtr1),y
|
2017-09-22 17:25:21 +02:00
|
|
|
|
iny
|
|
|
|
|
lda #0
|
|
|
|
|
sta (ZPPtr1),y
|
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
.8 rts
|
2016-10-19 17:47:53 +02:00
|
|
|
|
*--------------------------------------
|
2018-11-21 14:08:11 +01:00
|
|
|
|
LeaveSubDir >LDA.G index
|
2016-10-26 22:51:06 +02:00
|
|
|
|
beq .9
|
2017-02-23 17:43:42 +01:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
jsr GethDIRENT.A
|
2017-02-26 19:34:00 +01:00
|
|
|
|
beq .1
|
|
|
|
|
|
|
|
|
|
pha
|
|
|
|
|
lda #0
|
|
|
|
|
sta (pData),y
|
|
|
|
|
pla
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL FreeMem
|
2018-12-20 08:33:10 +01:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
.1 jsr GethDIR
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
pha
|
|
|
|
|
lda #0
|
|
|
|
|
sta (pData),y
|
|
|
|
|
pla
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL CloseDir
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2018-11-21 14:08:11 +01:00
|
|
|
|
>DEC.G index
|
2016-11-01 22:37:12 +01:00
|
|
|
|
bne .8
|
|
|
|
|
|
2016-11-08 17:56:05 +01:00
|
|
|
|
ldy #hSrcBasePath
|
2016-11-01 22:37:12 +01:00
|
|
|
|
lda (pData),y
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL FreeMem
|
2018-12-20 08:33:10 +01:00
|
|
|
|
|
2017-02-27 15:18:03 +01:00
|
|
|
|
.DO X.COPY.TO.DEST=1
|
|
|
|
|
ldy #hDstBasePath
|
|
|
|
|
lda (pData),y
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL FreeMem
|
2017-02-27 15:18:03 +01:00
|
|
|
|
.FIN
|
|
|
|
|
|
2016-10-30 19:19:43 +01:00
|
|
|
|
.9 sec
|
|
|
|
|
rts
|
2016-11-01 22:37:12 +01:00
|
|
|
|
|
|
|
|
|
.8 clc
|
|
|
|
|
rts
|
2016-10-30 19:19:43 +01:00
|
|
|
|
*--------------------------------------
|
2017-02-21 18:01:30 +01:00
|
|
|
|
BasePath.. .DO X.COPY.TO.DEST=1
|
2017-10-04 17:12:03 +02:00
|
|
|
|
|
2016-11-13 22:03:31 +01:00
|
|
|
|
ldy #hDstBasePath
|
|
|
|
|
jsr BasePath..1
|
2017-10-04 17:12:03 +02:00
|
|
|
|
|
2016-11-13 22:03:31 +01:00
|
|
|
|
.FIN
|
2017-02-26 19:34:00 +01:00
|
|
|
|
|
2016-11-13 22:03:31 +01:00
|
|
|
|
ldy #hSrcBasePath
|
|
|
|
|
|
|
|
|
|
BasePath..1 lda (pData),y
|
2018-07-18 17:30:42 +02:00
|
|
|
|
>SYSCALL GetMemPtr
|
2016-10-30 19:19:43 +01:00
|
|
|
|
|
2016-10-20 18:04:35 +02:00
|
|
|
|
>STYA ZPPtr1 save full path
|
|
|
|
|
|
2018-12-19 17:45:09 +01:00
|
|
|
|
ldy #$ff
|
2017-09-22 17:25:21 +02:00
|
|
|
|
|
|
|
|
|
.1 iny
|
|
|
|
|
lda (ZPPtr1),y get len
|
|
|
|
|
bne .1
|
|
|
|
|
|
2017-10-04 17:12:03 +02:00
|
|
|
|
dey discard ending /
|
2016-10-20 18:04:35 +02:00
|
|
|
|
|
2017-09-22 17:25:21 +02:00
|
|
|
|
.2 dey
|
2016-10-20 18:04:35 +02:00
|
|
|
|
lda (ZPPtr1),y
|
|
|
|
|
cmp #'/'
|
2017-09-22 17:25:21 +02:00
|
|
|
|
bne .2
|
2016-10-20 18:04:35 +02:00
|
|
|
|
|
2017-09-22 17:25:21 +02:00
|
|
|
|
iny
|
|
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
|
sta (ZPPtr1),y cut DIR2/ from /dir1/DIR2/
|
2016-10-19 17:47:53 +02:00
|
|
|
|
|
2016-10-26 22:51:06 +02:00
|
|
|
|
rts
|
2016-10-18 08:26:24 +02:00
|
|
|
|
*--------------------------------------
|
2018-12-19 17:45:09 +01:00
|
|
|
|
GetFilenameLen ldy #$ff
|
|
|
|
|
|
|
|
|
|
.1 iny
|
|
|
|
|
lda (ZPFileName),y
|
|
|
|
|
bne .1
|
|
|
|
|
|
|
|
|
|
tya
|
|
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
SetFileStatPtr sec
|
|
|
|
|
adc ZPFileName
|
|
|
|
|
sta ZPFileStat
|
|
|
|
|
lda ZPFileName+1
|
|
|
|
|
adc #0
|
|
|
|
|
sta ZPFileStat+1
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2018-11-21 14:08:11 +01:00
|
|
|
|
GethDIR ldy #index
|
|
|
|
|
lda (pData),y
|
|
|
|
|
clc
|
|
|
|
|
adc #hDIRs-1
|
|
|
|
|
tay
|
|
|
|
|
lda (pData),y
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
GethDIRENT ldy #index
|
|
|
|
|
lda (pData),y
|
|
|
|
|
GethDIRENT.A clc
|
|
|
|
|
adc #hDIRENTs-1
|
|
|
|
|
tay
|
|
|
|
|
lda (pData),y
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
GetoDIRENT ldy #index
|
|
|
|
|
lda (pData),y
|
|
|
|
|
asl
|
|
|
|
|
clc
|
|
|
|
|
adc #oDIRENTs-1
|
|
|
|
|
tay
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2016-10-18 08:26:24 +02:00
|
|
|
|
MAN
|
2018-11-20 16:54:49 +01:00
|
|
|
|
SAVE USR/SRC/BIN/X.FILEENUM.S
|
|
|
|
|
LOAD USR/SRC/BIN/LS.S
|
2018-07-20 13:51:08 +02:00
|
|
|
|
ASM
|