2019-10-16 06:09:13 +00:00
|
|
|
|
NEW
|
|
|
|
|
AUTO 3,1
|
2019-11-10 18:28:06 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
XDOS.Close ldy #$01 close all ?
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda (A3L),y
|
|
|
|
|
bne L4683 no, just one of them.
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta cferr clear global close error.
|
|
|
|
|
lda #$00 start at the beginning.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4654 sta fcbptr save current low byte of pointer.
|
|
|
|
|
tay get the level at which the file
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+27,y was opened.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
cmp flevel if file's level is < global level
|
|
|
|
|
bcc L4675 then don't close.
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs,y is this reference file open ?
|
2019-10-16 06:09:13 +00:00
|
|
|
|
beq L4675 no, try next.
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr flush2 clean it out...
|
|
|
|
|
bcs L46B6 return flush errors.
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr close2 update fcb & vcb
|
|
|
|
|
ldy #$01
|
|
|
|
|
lda (A3L),y
|
|
|
|
|
beq L4675 no error if close all.
|
|
|
|
|
bcs L46B6 close error.
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4675 lda fcbptr inc pointer to next fcb
|
|
|
|
|
clc
|
|
|
|
|
adc #$20
|
|
|
|
|
bcc L4654 branch if within same page.
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda cferr on final close report logged errors.
|
|
|
|
|
beq L46B4 branch if errors.
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
rts (carry already set).
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4683 jsr flush1 flush file 1st (including updating
|
|
|
|
|
bcs L46B6 bitmap). branch if errors.
|
|
|
|
|
|
|
|
|
|
close2 ldy fcbptr
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+11,y release file buffer
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr relbuffr
|
|
|
|
|
bcs L46B6
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda #$00
|
|
|
|
|
ldy fcbptr
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs,y free fcb too
|
|
|
|
|
lda FCBs+1,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta devnum go look for associated vcb
|
|
|
|
|
jsr fnddvcb
|
2020-05-23 18:45:32 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldx vcbptr get vcb pointer.
|
2020-05-23 18:45:32 +00:00
|
|
|
|
dec VCBs+VCB.OFCNT,x indicate one less file open.
|
|
|
|
|
* bne L46B4 branch if that wasn't the last...
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-23 18:45:32 +00:00
|
|
|
|
* clc strip 'files open' bit
|
|
|
|
|
* ror VCBs+VCB.OF,x
|
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L46B4 clc
|
|
|
|
|
rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L46B6 bcs L46E6 don't report close all error now.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
XDOS.Flush ldy #$01 flush all ?
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda (A3L),y
|
|
|
|
|
bne flush1 no, just one of them.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta cferr clear global flush error.
|
|
|
|
|
lda #$00 start at the beginning.
|
|
|
|
|
L46C3 sta fcbptr save current low byte of pointer.
|
|
|
|
|
tay index to ref #.
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs,y is this reference file open ?
|
2019-10-16 06:09:13 +00:00
|
|
|
|
beq L46D1 no, try next.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr flush2 clean it out...
|
|
|
|
|
bcs L46E6 return anty errors.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L46D1 lda fcbptr inc pointer to next fcb.
|
|
|
|
|
clc
|
|
|
|
|
adc #$20
|
|
|
|
|
bcc L46C3 branch if within same page
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L46D9 clc
|
|
|
|
|
lda cferr on last flush,
|
|
|
|
|
beq L46E0 branch if no logged errors.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sec report error now
|
|
|
|
|
L46E0 rts
|
|
|
|
|
|
|
|
|
|
flush2 jsr fndfcbuf must set up vcb & buffer locations 1st.
|
|
|
|
|
bcc L46F1 branch if no error.
|
|
|
|
|
L46E6 jmp glberr error so check for close or flush all.
|
|
|
|
|
|
|
|
|
|
flush1 stz cferr for normal refnum flush, clear global error.
|
|
|
|
|
jsr findfcb setup pointer to fcb user references.
|
|
|
|
|
bcs L46E6 return any errors.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L46F1 lda FCBs+9,y test to see if file is modified.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
and #$02 is it write enabled ?
|
|
|
|
|
beq L46D9 branch if 'read only'
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+28,y has eof been modified ?
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bmi L4704 if yes.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr gfcbstat has data been modified ?
|
|
|
|
|
and #$70 (was written to while it's been open?)
|
|
|
|
|
beq L46D9 if not.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4704 jsr gfcbstat
|
|
|
|
|
and #$40 does current data buffer need to be
|
|
|
|
|
beq L4710 written ? branch if not.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr wfcbdat if so, go write it.
|
|
|
|
|
bcs L46E6 if error.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4710 jsr gfcbstat check to see if the index block (tree
|
|
|
|
|
and #$80 files only) needs to be written.
|
|
|
|
|
beq L471C branch if not.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr wfcbidx
|
|
|
|
|
bcs L46E6 return any errors.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L471C lda #$06 prepare to update directory
|
|
|
|
|
tax
|
|
|
|
|
ora fcbptr
|
|
|
|
|
tay
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L4723 lda FCBs,y note: this code depends on the defined
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta d_dev-1,x order of the file control block and the
|
|
|
|
|
dey temporary directory area in 'work space'
|
|
|
|
|
dex
|
|
|
|
|
bne L4723
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta devnum
|
2020-05-25 13:58:59 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda d_head read the directory header for this file
|
|
|
|
|
ldx d_head+1
|
2020-05-25 13:58:59 +00:00
|
|
|
|
jsr XDOS.ReadGBufAX into the general purpose buffer.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L46E6 if error.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr movhed0 move header info.
|
|
|
|
|
lda d_entblk get address of directory block that
|
2020-05-25 13:58:59 +00:00
|
|
|
|
ldx d_entblk+1 contains the file entry.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
cmp d_head test to see if it's the same block the
|
2020-05-25 13:58:59 +00:00
|
|
|
|
bne .1 header is in. branch if not.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-25 13:58:59 +00:00
|
|
|
|
cpx d_head+1
|
2019-10-16 06:09:13 +00:00
|
|
|
|
beq L4755 branch if header block = entry block
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-25 13:58:59 +00:00
|
|
|
|
.1 jsr XDOS.ReadGBufAX get block with file entry in general
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4755 jsr entcalc buffer. set up pointer to entry.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr moventry move entry to temp entry buffer in
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy fcbptr 'work space'. update 'blocks used' count
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+24,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta d_usage
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+25,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta d_usage+1
|
|
|
|
|
ldx #$00 and move in end of file mark whether
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L476C lda FCBs+21,y needed or not.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta d_eof,x
|
|
|
|
|
inx
|
|
|
|
|
cpx #$03 move all 3 bytes
|
|
|
|
|
beq L4780
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+12,y also move in the address of the file's
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta d_filid,x first block since it might have changed
|
|
|
|
|
iny since the file first opened.
|
|
|
|
|
bne L476C branch always.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L4780 lda FCBs+5,y the last thing to update is storage
|
2019-10-16 06:09:13 +00:00
|
|
|
|
asl type (y=fcbptr+2). shift into high
|
|
|
|
|
asl nibble.
|
|
|
|
|
asl
|
|
|
|
|
asl
|
|
|
|
|
sta scrtch
|
|
|
|
|
lda d_stor get old type byte (might be the same).
|
|
|
|
|
and #$0F strip off old type,
|
|
|
|
|
ora scrtch add in the new type
|
|
|
|
|
sta d_stor and put it away.
|
|
|
|
|
jsr drevise go update directory.
|
|
|
|
|
bcs glberr error.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy fcbptr mark
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+28,y fcb/directory
|
2019-10-16 06:09:13 +00:00
|
|
|
|
and #$7F as
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+28,y undirty.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda d_dev see if bitmap should be written.
|
|
|
|
|
cmp bmadev is it in same as current file ?
|
|
|
|
|
bne L47B2 yes, put it on the disk if necessary.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr upbmap go put it away.
|
|
|
|
|
bcs glberr flush error
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L47B2 clc
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
* report error only if not a close all or flush all
|
|
|
|
|
|
|
|
|
|
glberr ldy #$01
|
|
|
|
|
pha
|
|
|
|
|
lda (A3L),y
|
|
|
|
|
bne L47C1 not an 'all' so report now
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
clc
|
|
|
|
|
pla
|
|
|
|
|
sta cferr save for later
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L47C1 pla
|
|
|
|
|
rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
gfcbstat ldy fcbptr index to fcb.
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+8,y return status byte.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
|
|
|
|
L47CA lda #MLI.E.LOCKED access error
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sec
|
|
|
|
|
L47CD rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
XDOS.SetEOF jsr gfcbstyp can only move end of tree, sapling or seed.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
cmp #$04 tree type ?
|
|
|
|
|
bcs L47CA if not then access error
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
asl
|
|
|
|
|
asl
|
|
|
|
|
asl
|
|
|
|
|
asl
|
|
|
|
|
sta stortyp may be used later.
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+9,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
and #$02 is write enabled to set new eof ?
|
|
|
|
|
beq L47CA no, access error.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr tstwprot hardware write protected ?
|
|
|
|
|
bcs L47CA yes, access error.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy fcbptr save old eof so it can be seen
|
|
|
|
|
iny whether blocks need to be released
|
|
|
|
|
iny upon contraction.
|
|
|
|
|
ldx #$02 all 3 bytes of the eof
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L47EF lda FCBs+21,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta oldeof,x
|
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl L47EF
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy #$04
|
|
|
|
|
ldx #$02
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L47FD lda (A3L),y position mark to new eof
|
|
|
|
|
sta tposll,x
|
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl L47FD
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldx #$02 point to 3rd byte.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4808 lda oldeof,x see if eof moved backwards so blocks
|
|
|
|
|
cmp tposll,x can be released.
|
|
|
|
|
bcc eofset (branch if not)
|
|
|
|
|
bne purge branch if blocks to be released
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
dex
|
|
|
|
|
bpl L4808 all 3 bytes
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
eofset ldy #$04
|
|
|
|
|
ldx fcbptr place new end of file into fcb
|
|
|
|
|
inx
|
|
|
|
|
inx
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L481C lda (A3L),y
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+21,x
|
2019-10-16 06:09:13 +00:00
|
|
|
|
dex
|
|
|
|
|
dey
|
|
|
|
|
cpy #$02 all 3 bytes moved ?
|
|
|
|
|
bcs L481C no.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jmp fcbused mark fcb as dirty.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
purge jsr flush1 make sure file is current
|
|
|
|
|
bcs L47CD
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldx datptr+1 pointer to index block
|
|
|
|
|
inx
|
|
|
|
|
inx
|
|
|
|
|
stx zpt+1 (zero page conflict with dir buf ptr)
|
|
|
|
|
ldx datptr
|
|
|
|
|
stx zpt
|
|
|
|
|
ldy fcbptr check if eof < mark
|
|
|
|
|
iny
|
|
|
|
|
iny
|
|
|
|
|
ldx #$02
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L4840 lda FCBs+18,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
cmp tposll,x compare until not equal or carry clear.
|
|
|
|
|
bcc L485F branch if eof > mark.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bne L484E branch if eof < mark.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl L4840 compare all 3 bytes
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L484E ldy fcbptr
|
|
|
|
|
ldx #$00
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4853 lda tposll,x fake position, correct position will
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+18,y be made below...
|
2019-10-16 06:09:13 +00:00
|
|
|
|
iny
|
|
|
|
|
inx
|
|
|
|
|
cpx #$03 move all 3 bytes
|
|
|
|
|
bne L4853
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L485F jsr tkfrecnt force free block count before releasing
|
|
|
|
|
lda tposll blocks. prepare for purge of excess...
|
|
|
|
|
sta dseed all blocks and bytes beyond new eof
|
|
|
|
|
lda tposlh must be zero'd
|
|
|
|
|
sta dsap
|
|
|
|
|
and #$01
|
|
|
|
|
sta dseed+1
|
|
|
|
|
lda tposhi
|
|
|
|
|
lsr
|
|
|
|
|
sta dtree
|
|
|
|
|
ror dsap pass position in terms of block & bytes.
|
|
|
|
|
lda dseed now adjust for boundaries of $200
|
|
|
|
|
ora dseed+1
|
|
|
|
|
bne L48A2 branch if no adjustment necessary.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda dsap get correct block ositions for sap
|
|
|
|
|
sec and tree levels.
|
|
|
|
|
sbc #$01
|
|
|
|
|
sta dsap deallocate for last (phantom) block
|
|
|
|
|
lda #$02 and don't modify last data block.
|
|
|
|
|
bcs L489F branch if tree level unaffected.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
dec dtree
|
|
|
|
|
bpl L489F branch if new eof not zero
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda #$00
|
|
|
|
|
sta dtree otherwise, make a null seed out of it.
|
|
|
|
|
sta dsap
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L489F sta dseed+1
|
|
|
|
|
L48A2 ldy fcbptr also must pass file's 1st block address.
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+12,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta firstbl
|
2020-05-28 21:13:52 +00:00
|
|
|
|
lda FCBs+13,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta firstbh
|
|
|
|
|
stz deblock lastly, initialize # of blocks to
|
|
|
|
|
stz deblock+1 be free'd.
|
|
|
|
|
jsr detree deallocate blocks from tree.
|
|
|
|
|
php save any error status until fcb
|
|
|
|
|
pha is cleaned up.
|
|
|
|
|
sec
|
|
|
|
|
ldy fcbptr
|
|
|
|
|
ldx #$00
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L48C2 lda firstbl,x
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+12,y move in possible new first file block
|
|
|
|
|
lda FCBs+24,y address. adjust usage count also
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sbc deblock,x
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+24,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
iny
|
|
|
|
|
inx
|
|
|
|
|
txa
|
|
|
|
|
and #$01 test for both bytes adjusted
|
|
|
|
|
bne L48C2 without disturbing carry.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda stortyp get possibly modified storage type
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
ldy fcbptr and save it in fcb.
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+7,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr clrstats make it look as though position has
|
|
|
|
|
jsr dvcbrev nothing allocated, update total blocks
|
|
|
|
|
ldy fcbptr in fcb and correct position.
|
|
|
|
|
iny
|
|
|
|
|
iny
|
|
|
|
|
ldx #$02
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L48F2 lda FCBs+18,y tell 'rdposn' to go to correct
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta tposll,x
|
|
|
|
|
eor #$80 position from incorrect place.
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+18,y
|
2019-10-16 06:09:13 +00:00
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl L48F2
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr rdposn go to correct position.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcc L490D if no error.
|
|
|
|
|
tax otherwise, report latest error.
|
|
|
|
|
pla
|
|
|
|
|
plp
|
|
|
|
|
txa restore latest error code to stack
|
|
|
|
|
sec
|
|
|
|
|
php
|
|
|
|
|
pha save new error.
|
|
|
|
|
|
|
|
|
|
* mark file as in need of a flush and update fcb with new end of file,
|
|
|
|
|
* then flush it.
|
|
|
|
|
|
|
|
|
|
L490D jsr eofset go mark and update
|
|
|
|
|
jsr flush1 then go do the flush.
|
|
|
|
|
bcc L491C branch if no error.
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
tax save latest error.
|
|
|
|
|
pla clean previous error off stack
|
|
|
|
|
plp
|
|
|
|
|
txa and restore latest error to stack.
|
|
|
|
|
sec show error condition.
|
|
|
|
|
php restore error status to stack
|
|
|
|
|
pha and the error code.
|
|
|
|
|
L491C pla report any errors that may have
|
|
|
|
|
plp appeared.
|
|
|
|
|
rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
XDOS.GetEOF ldx fcbptr index to end of file mark
|
2019-10-16 06:09:13 +00:00
|
|
|
|
|
|
|
|
|
ldy #$02 and index to user's call parameters
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
L4924 lda FCBs+21,x
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta (A3L),y
|
|
|
|
|
inx
|
|
|
|
|
iny
|
|
|
|
|
cpy #$05
|
|
|
|
|
bne L4924 loop until all 3 bytes moved
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
clc no errors
|
|
|
|
|
rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
XDOS.NewLine ldy #$02 adjust newline status for open file.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
|
|
|
|
|
lda (A3L),y on or off ?
|
|
|
|
|
ldx fcbptr it will be 0 if off.
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+31,x set new line mask
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
iny
|
|
|
|
|
lda (A3L),y and move in 'new-line' byte
|
2020-05-28 21:13:52 +00:00
|
|
|
|
sta FCBs+10,x
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
clc no error possible
|
|
|
|
|
rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
*--------------------------------------
|
2019-11-23 15:24:55 +00:00
|
|
|
|
XDOS.GetFileInfoEx
|
2019-12-09 15:53:14 +00:00
|
|
|
|
jsr findfile see if file exists
|
2020-05-28 21:13:52 +00:00
|
|
|
|
bcc .1
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
cmp #MLI.E.INVPATH
|
|
|
|
|
sec
|
|
|
|
|
bne .9
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
.1 ldx #S.FIEX.BLKPTR+2-1
|
|
|
|
|
ldy #S.FIEX.BLKPTR+2-1+3
|
2019-12-09 15:53:14 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
.2 lda d_stor,x
|
|
|
|
|
sta (A3L),y
|
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl .2
|
|
|
|
|
|
|
|
|
|
ldx #7
|
|
|
|
|
ldy #S.FIEX.ACL+7+3
|
2019-12-09 15:53:14 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
.3 lda h_acl,x
|
|
|
|
|
sta (A3L),y
|
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl .3
|
2019-11-23 15:24:55 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
* clc
|
2019-11-23 15:24:55 +00:00
|
|
|
|
.9 rts
|
|
|
|
|
*--------------------------------------
|
2019-11-10 18:28:06 +00:00
|
|
|
|
XDOS.GetFileInfo
|
|
|
|
|
jsr findfile look for file.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcc L4988 no error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2020-05-28 21:13:52 +00:00
|
|
|
|
cmp #MLI.E.INVPATH was it a root directory file ?
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sec (in case of no match)
|
|
|
|
|
bne L49A4 if not, then error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda #$F0
|
2020-05-23 18:45:32 +00:00
|
|
|
|
sta d_stor for get info, report proper storage type
|
|
|
|
|
|
|
|
|
|
stz reql force a count of free blocks.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
stz reqh
|
2020-05-23 18:45:32 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldx vcbptr
|
|
|
|
|
jsr tkfrecnt get a fresh count of free blocks on
|
2020-05-23 18:45:32 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldx vcbptr this volume.
|
2020-05-23 18:45:32 +00:00
|
|
|
|
lda VCBs+VCB.FBLK+1,x return total blocks and total in use.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta reqh 1st transfer 'free' blocks to zpage
|
2020-05-23 18:45:32 +00:00
|
|
|
|
lda VCBs+VCB.FBLK,x for later subtraction to determine
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta reql the 'used' count.
|
2020-05-23 18:45:32 +00:00
|
|
|
|
|
|
|
|
|
lda VCBs+VCB.TBLK+1,x transfer to 'd.' table as aux id
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta d_auxid+1 (total block count is considered aux id
|
|
|
|
|
pha for the volume)
|
2020-05-23 18:45:32 +00:00
|
|
|
|
lda VCBs+VCB.TBLK,x
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sta d_auxid
|
|
|
|
|
sec subtract and report the number of
|
|
|
|
|
sbc reql blocks 'in use'
|
|
|
|
|
sta d_usage
|
|
|
|
|
pla
|
|
|
|
|
sbc reqh
|
|
|
|
|
sta d_usage+1
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4988 lda d_stor transfer bytes from internal order to
|
|
|
|
|
lsr call spec via 'inftabl' translation
|
|
|
|
|
lsr table but first change storage type to
|
|
|
|
|
lsr external (low nibble) format.
|
|
|
|
|
lsr
|
|
|
|
|
sta d_stor
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy #$11 index to last of user's spec table.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4994 lda inftabl-3,y
|
|
|
|
|
and #$7F strip bit used by setinfo
|
|
|
|
|
tax
|
|
|
|
|
lda d_stor,x move directory info to call spec. table
|
|
|
|
|
sta (A3L),y
|
|
|
|
|
dey
|
|
|
|
|
cpy #$03
|
|
|
|
|
bcs L4994 if all info bytes moved, retn carry clr
|
|
|
|
|
|
2019-11-10 18:28:06 +00:00
|
|
|
|
L49A4 rts
|
|
|
|
|
*--------------------------------------
|
2019-11-23 15:24:55 +00:00
|
|
|
|
XDOS.SetFileInfoEx
|
2020-05-28 21:13:52 +00:00
|
|
|
|
jsr findfile
|
|
|
|
|
bcs .9
|
|
|
|
|
|
|
|
|
|
ldx #S.FIEX.BLKPTR+2-1
|
|
|
|
|
ldy #S.FIEX.BLKPTR+2-1+3
|
|
|
|
|
|
|
|
|
|
.2 lda (A3L),y
|
|
|
|
|
sta d_stor,x
|
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl .2
|
|
|
|
|
|
|
|
|
|
ldx #7
|
|
|
|
|
ldy #S.FIEX.ACL+7+3
|
|
|
|
|
|
|
|
|
|
.3 lda (A3L),y
|
|
|
|
|
sta h_acl,x
|
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bpl .3
|
|
|
|
|
|
|
|
|
|
jmp drevise1
|
|
|
|
|
|
|
|
|
|
.9 rts
|
2019-11-23 15:24:55 +00:00
|
|
|
|
*--------------------------------------
|
2019-11-10 18:28:06 +00:00
|
|
|
|
XDOS.SetFileInfo
|
|
|
|
|
jsr findfile get the file to work on.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L49CF if error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda bubit see if backup bit can be cleared
|
|
|
|
|
eor #$20
|
|
|
|
|
and d_attr
|
|
|
|
|
and #$20
|
|
|
|
|
sta bkbitflg or preserve current...
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy #$0D init pointer to user supplied list.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L49B9 ldx inftabl-3,y get index to corresponding 'd.' table.
|
|
|
|
|
bmi L49C3 branch if parameter can't be set.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda (A3L),y
|
|
|
|
|
sta d_stor,x
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L49C3 dey has user's request been satisfied ?
|
|
|
|
|
cpy #$03
|
|
|
|
|
bcs L49B9 no, move next byte.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
and #$18 make sure no illegal access bits were
|
|
|
|
|
beq L49D0 set !! branch if legal access.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-11-11 14:21:06 +00:00
|
|
|
|
lda #MLI.E.LOCKED otherwise, access error.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sec
|
|
|
|
|
L49CF rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L49D0 ldy #$0B
|
|
|
|
|
lda (A3L),y was clock null input ?
|
|
|
|
|
beq L49D9 if yes.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jmp drevise1 end by updating directory.
|
|
|
|
|
L49D9 jmp drevise update with clock also...
|
2019-11-10 18:28:06 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
XDOS.Rename jsr lookfile look for source (original) file.
|
2019-11-11 14:21:06 +00:00
|
|
|
|
bcc XDOS.RenameFileDir if found.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
cmp #$40 trying to rename a volume ?
|
|
|
|
|
bne L49FD no, return error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-11-11 14:21:06 +00:00
|
|
|
|
XDOS.RenameVol jsr XDOS.GetRenPath syntax new name.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L49FD rename error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy pathbuf find out if only rootname for new name
|
|
|
|
|
iny
|
|
|
|
|
lda pathbuf,y must be $FF if volume name only.
|
|
|
|
|
bne L4A72 if not single name
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldx vcbptr check for open files before changing.
|
2020-05-23 18:45:32 +00:00
|
|
|
|
lda VCBs+VCB.OFCNT,x
|
|
|
|
|
beq L49FF if volume not busy.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-11-11 14:21:06 +00:00
|
|
|
|
lda #MLI.E.OPEN file busy error.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L49FD sec
|
|
|
|
|
rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2020-05-23 18:45:32 +00:00
|
|
|
|
L49FF ldy #0 get newname's length
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda pathbuf,y
|
|
|
|
|
ora #$F0 (root file storage type)
|
2019-12-13 07:09:00 +00:00
|
|
|
|
jsr XDOS.UpdateHdr update root directory.
|
2020-05-23 18:45:32 +00:00
|
|
|
|
bcs .9 rename error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy #$00
|
|
|
|
|
ldx vcbptr update vcb also.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2020-05-25 13:58:59 +00:00
|
|
|
|
.1 lda pathbuf,y move new name to vcb.
|
|
|
|
|
beq .8
|
|
|
|
|
|
|
|
|
|
sta VCBs,x
|
|
|
|
|
iny next character
|
2019-10-16 06:09:13 +00:00
|
|
|
|
inx
|
2020-05-25 13:58:59 +00:00
|
|
|
|
bra .1
|
|
|
|
|
.8
|
2020-05-23 18:45:32 +00:00
|
|
|
|
* clc no errors
|
|
|
|
|
.9 rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
*--------------------------------------
|
2019-11-11 14:21:06 +00:00
|
|
|
|
XDOS.RenameFileDir
|
|
|
|
|
jsr getnamptr set y = 1st char of path, x = 0.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A21 lda pathbuf,y move original name to gbuf
|
|
|
|
|
sta gbuf,x for later comparison to new name.
|
|
|
|
|
bmi L4A2D if last character has been moved
|
2019-11-11 14:21:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
iny otherwise, get the next one.
|
|
|
|
|
inx
|
2019-11-11 14:21:06 +00:00
|
|
|
|
bra L4A21
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-11-11 14:21:06 +00:00
|
|
|
|
L4A2D jsr XDOS.GetRenPath get new name syntaxed.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L4A74 rename error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr getnamptr set y = path, x = 0.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda pathbuf,y now compare new name with old name
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A38 cmp gbuf,x to make sure they are in the same dir.
|
|
|
|
|
php save result of comparison.
|
|
|
|
|
and #$F0 was last char really a count ?
|
|
|
|
|
bne L4A46 if not.
|
2019-11-11 14:21:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sty rnptr save pointer to next name, it might
|
|
|
|
|
stx namptr be the last.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A46 plp result of last comparison ?
|
|
|
|
|
bne L4A52 branch if different character or count.
|
2019-11-11 14:21:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
inx bump pointers.
|
|
|
|
|
iny
|
|
|
|
|
lda pathbuf,y was it the last character ?
|
|
|
|
|
bne L4A38 if not.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
clc no operation, names were the same.
|
|
|
|
|
rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A52 ldy rnptr index to last name in the chain.
|
|
|
|
|
lda pathbuf,y get last name length.
|
|
|
|
|
sec
|
|
|
|
|
adc rnptr
|
|
|
|
|
tay
|
|
|
|
|
lda pathbuf,y this byte should be $00 !
|
|
|
|
|
bne L4A72 if not, bad path error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldx namptr index to last of original name
|
|
|
|
|
lda gbuf,x
|
|
|
|
|
sec
|
|
|
|
|
adc namptr
|
|
|
|
|
tax
|
|
|
|
|
lda gbuf,x this byte should also be $00.
|
|
|
|
|
beq L4A76 if so, continue processing.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
|
|
|
|
L4A72 lda #MLI.E.INVPATH bad pathname error.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A74 sec
|
|
|
|
|
rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A76 jsr lookfile test for duplicate file name.
|
|
|
|
|
bcs L4A7F branch if file not found, which is ok !!
|
2020-05-13 17:00:37 +00:00
|
|
|
|
|
2019-11-10 18:28:06 +00:00
|
|
|
|
lda #MLI.E.DUPFILE duplicate name error.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
sec
|
|
|
|
|
rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
|
|
|
|
L4A7F cmp #MLI.E.FNOTFND was it a valid file not found ?
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bne L4A74 no, rename error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-11-11 14:21:06 +00:00
|
|
|
|
jsr XDOS.GetPath syntax pathname of file to be changed.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr findfile get all the info on this file.
|
|
|
|
|
bcs L4A74 rename error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
jsr tstopen is file in use ?
|
2019-11-10 18:28:06 +00:00
|
|
|
|
lda #MLI.E.OPEN anticipate file busy error.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L4A74 error if in use.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda d_attr test bit which allows rename.
|
|
|
|
|
and #$40
|
|
|
|
|
bne L4A9D branch if ok to rename
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
|
|
|
|
lda #MLI.E.LOCKED otherwise, illegal access.
|
2019-11-11 14:21:06 +00:00
|
|
|
|
.HS 2C BIT ABS
|
|
|
|
|
L4A98 lda #MLI.E.INCFF
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A9B sec
|
|
|
|
|
rts
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4A9D lda d_stor find out which storage type.
|
|
|
|
|
and #$F0 strip off name length.
|
|
|
|
|
cmp #$D0 is it a directory ?
|
|
|
|
|
beq L4AAE then ok.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
cmp #$40 is it a seed, sapling or tree ?
|
2019-11-11 14:21:06 +00:00
|
|
|
|
bcs L4A98 file incompatible error.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-11-11 14:21:06 +00:00
|
|
|
|
L4AAE jsr XDOS.GetRenPath since both names go into the directory,
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L4A74 syntax the new name to get the local
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy rnptr name address. y = index to local name
|
2019-11-11 21:56:58 +00:00
|
|
|
|
ldx pathbuf,y length. adj y to last char of new name.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
tya
|
|
|
|
|
adc pathbuf,y
|
|
|
|
|
tay
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
L4ABE lda pathbuf,y move local name to dir entry workspace.
|
|
|
|
|
sta d_stor,x
|
|
|
|
|
dey
|
|
|
|
|
dex
|
|
|
|
|
bne L4ABE
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda d_stor preserve file storage type.
|
|
|
|
|
and #$F0 strip off old name length.
|
|
|
|
|
tax
|
|
|
|
|
ora pathbuf,y add in new name's length.
|
|
|
|
|
sta d_stor
|
|
|
|
|
cpx #$D0 that file must be changed also.
|
|
|
|
|
bne L4AF0 branch if not directory type.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda d_frst read in 1st header block of subdir
|
|
|
|
|
ldx d_frst+1
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2020-05-25 13:58:59 +00:00
|
|
|
|
jsr XDOS.ReadGBufAX
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L4A74 errors.
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy rnptr change the header's name to match the
|
|
|
|
|
lda pathbuf,y owner's new name. get local name length.
|
|
|
|
|
ora #$E0 assume it's a header.
|
2019-12-13 07:09:00 +00:00
|
|
|
|
jsr XDOS.UpdateHdr
|
2019-10-16 06:09:13 +00:00
|
|
|
|
bcs L4A74
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2019-11-11 21:56:58 +00:00
|
|
|
|
L4AF0 .DO LOWERCASE=1
|
|
|
|
|
jsr XDOS.LC2UCBM
|
|
|
|
|
.FIN
|
|
|
|
|
|
|
|
|
|
jmp drevise1 end by updating all path directories.
|
2019-11-11 14:21:06 +00:00
|
|
|
|
*--------------------------------------
|
2019-12-13 10:10:08 +00:00
|
|
|
|
XDOS.UpdateHdr .DO LOWERCASE=1
|
2019-12-13 07:09:00 +00:00
|
|
|
|
stz gbuf+$20 VERSION
|
|
|
|
|
stz gbuf+$21 MIN VERSION
|
|
|
|
|
|
2019-12-13 10:10:08 +00:00
|
|
|
|
ldx #$00
|
|
|
|
|
|
2019-12-13 07:09:00 +00:00
|
|
|
|
.1 sta gbuf+4,x
|
|
|
|
|
|
|
|
|
|
inx
|
|
|
|
|
iny
|
|
|
|
|
lda pathbuf,y
|
|
|
|
|
beq .8
|
|
|
|
|
|
|
|
|
|
cmp #'a'
|
|
|
|
|
bcc .1
|
|
|
|
|
cmp #'z'+1
|
|
|
|
|
bcs .1
|
|
|
|
|
|
|
|
|
|
pha
|
|
|
|
|
|
|
|
|
|
cpx #8
|
|
|
|
|
bcs .2
|
|
|
|
|
|
|
|
|
|
lda whichbit,x
|
|
|
|
|
tsb gbuf+$20
|
|
|
|
|
bra .3
|
|
|
|
|
|
|
|
|
|
.2 lda whichbit-8,x
|
|
|
|
|
tsb gbuf+$21
|
|
|
|
|
|
|
|
|
|
.3 lda #$80
|
|
|
|
|
tsb gbuf+$20
|
|
|
|
|
|
|
|
|
|
pla
|
|
|
|
|
eor #$20
|
|
|
|
|
bra .1
|
2019-12-13 10:10:08 +00:00
|
|
|
|
|
2020-05-25 13:58:59 +00:00
|
|
|
|
.8 jmp XDOS.WriteGBuf write changed header block.
|
2019-12-13 07:09:00 +00:00
|
|
|
|
|
2019-12-13 10:10:08 +00:00
|
|
|
|
.ELSE
|
|
|
|
|
|
|
|
|
|
ldx #$00
|
|
|
|
|
|
|
|
|
|
L4AF5 sta gbuf+4,x
|
|
|
|
|
inx
|
|
|
|
|
iny
|
|
|
|
|
lda pathbuf,y
|
|
|
|
|
bne L4AF5
|
|
|
|
|
|
2020-05-25 13:58:59 +00:00
|
|
|
|
jmp XDOS.WriteGBuf write changed header block.
|
2019-12-13 07:09:00 +00:00
|
|
|
|
.FIN
|
2019-11-11 14:21:06 +00:00
|
|
|
|
*--------------------------------------
|
2019-10-16 06:09:13 +00:00
|
|
|
|
getnamptr ldy #$00 return pointer to 1st name of path.
|
|
|
|
|
bit prfxflg is this a prefixed name ?
|
2019-11-11 14:21:06 +00:00
|
|
|
|
bmi .1 branch if not.
|
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ldy newpfxptr
|
2019-11-11 14:21:06 +00:00
|
|
|
|
.1 ldx #$00
|
2019-10-16 06:09:13 +00:00
|
|
|
|
rts
|
2019-11-11 14:21:06 +00:00
|
|
|
|
*--------------------------------------
|
2019-10-16 06:09:13 +00:00
|
|
|
|
MAN
|
2020-05-23 18:45:32 +00:00
|
|
|
|
SAVE usr/src/prodos.fx/prodos.s.xdos.e
|
|
|
|
|
LOAD usr/src/prodos.fx/prodos.s
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ASM
|