2019-10-16 06:09:13 +00:00
|
|
|
|
NEW
|
|
|
|
|
AUTO 3,1
|
2019-10-19 18:35:30 +00:00
|
|
|
|
*--------------------------------------
|
2020-11-19 15:34:02 +00:00
|
|
|
|
* If Called by ProDOS : SEI
|
|
|
|
|
* If Called directly from DEVPTRS vectors : ????
|
2020-07-16 06:18:17 +00:00
|
|
|
|
*--------------------------------------
|
2019-11-01 20:06:04 +00:00
|
|
|
|
XRW.START cld $D8 to flag language card bank 1 (main)
|
2020-04-13 17:04:02 +00:00
|
|
|
|
|
|
|
|
|
lda unitnum get unit number.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-23 06:02:25 +00:00
|
|
|
|
pha
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-23 06:02:25 +00:00
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
sta XRW.UnitIndex
|
2020-08-26 10:29:04 +00:00
|
|
|
|
tax
|
|
|
|
|
lda XRW.D2SeekTime-1,x
|
|
|
|
|
bne .10
|
|
|
|
|
|
2020-09-11 15:01:48 +00:00
|
|
|
|
lda #IO.D2.SeekTimeP
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
|
|
|
|
.10 sta XRW.SeekTime
|
|
|
|
|
|
2021-01-12 21:14:13 +00:00
|
|
|
|
stz XRW.montimel
|
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
pla
|
|
|
|
|
|
2020-04-13 17:04:02 +00:00
|
|
|
|
and #$7F mask off high bit.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
sta A2L 0SSS0000 for IO indexing
|
|
|
|
|
|
|
|
|
|
* make sure other drives in other slots are stopped
|
|
|
|
|
|
|
|
|
|
eor XRW.LastUnitUsed same slot as last ?
|
|
|
|
|
asl
|
2021-03-27 21:59:59 +00:00
|
|
|
|
beq XRW.Blk2TS
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
|
|
|
|
lda #$01
|
2020-06-07 08:06:51 +00:00
|
|
|
|
sta XRW.montimeh
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-06-29 05:49:24 +00:00
|
|
|
|
.1 lda XRW.LastUnitUsed
|
2020-04-16 06:15:29 +00:00
|
|
|
|
and #$70
|
2020-04-13 17:04:02 +00:00
|
|
|
|
tax
|
2021-03-27 21:59:59 +00:00
|
|
|
|
beq XRW.Blk2TS branch if no previous ever (boot only).
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
|
|
|
|
jsr XRW.CheckMotorOnX check if previous drive running.
|
2021-03-27 21:59:59 +00:00
|
|
|
|
beq XRW.Blk2TS branch if stopped.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
jsr XRW.Wait100usec
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-06-07 08:06:51 +00:00
|
|
|
|
lda XRW.montimeh
|
2020-06-29 05:49:24 +00:00
|
|
|
|
bne .1
|
|
|
|
|
*--------------------------------------
|
2021-04-08 20:30:18 +00:00
|
|
|
|
XRW.Blk2TS lda bloknml
|
2021-03-27 21:59:59 +00:00
|
|
|
|
sta XRW.ReqTrack
|
|
|
|
|
|
|
|
|
|
and #7
|
|
|
|
|
cmp #4
|
|
|
|
|
php
|
|
|
|
|
and #3
|
|
|
|
|
asl
|
|
|
|
|
plp
|
|
|
|
|
rol
|
|
|
|
|
sta XRW.ReqSector
|
|
|
|
|
|
|
|
|
|
lda bloknml+1
|
|
|
|
|
|
|
|
|
|
ldx #3
|
2019-11-10 18:28:06 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
.1 lsr
|
|
|
|
|
ror XRW.ReqTrack
|
|
|
|
|
dex
|
2020-07-05 08:58:35 +00:00
|
|
|
|
bne .1
|
2020-04-13 17:04:02 +00:00
|
|
|
|
*--------------------------------------
|
2021-01-24 19:44:43 +00:00
|
|
|
|
ldx A2L
|
|
|
|
|
jsr XRW.ReadMode
|
2020-07-05 08:58:35 +00:00
|
|
|
|
|
2020-04-16 06:15:29 +00:00
|
|
|
|
jsr XRW.CheckMotorOn
|
2020-04-13 17:04:02 +00:00
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
php SAVE IRQ STATE
|
|
|
|
|
|
2020-07-05 08:58:35 +00:00
|
|
|
|
php save motor on state : NZ if on
|
|
|
|
|
|
|
|
|
|
lda #$E8 24 up to 0
|
2020-06-07 08:06:51 +00:00
|
|
|
|
sta XRW.montimeh
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
lda unitnum determine drive 1 or 2.
|
2020-07-05 08:58:35 +00:00
|
|
|
|
cmp XRW.LastUnitUsed same slot/drive used before ?
|
2020-04-16 06:15:29 +00:00
|
|
|
|
sta XRW.LastUnitUsed save it for next time.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
php keep results of compare.
|
2020-07-03 20:55:40 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
asl get drive # into carry.
|
2020-07-05 08:58:35 +00:00
|
|
|
|
bcc .3 branch if drive 1 selected.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
inx select drive 2.
|
|
|
|
|
|
2020-07-05 08:58:35 +00:00
|
|
|
|
.3 lda IO.D2.DrvSel1,x
|
|
|
|
|
|
|
|
|
|
ldx A2L
|
|
|
|
|
lda IO.D2.DrvOn,x turn on the drive.
|
2020-07-03 20:55:40 +00:00
|
|
|
|
|
2019-10-16 06:09:13 +00:00
|
|
|
|
plp was it the same drive ?
|
2020-07-05 08:58:35 +00:00
|
|
|
|
beq .5 yes.
|
2020-04-13 17:04:02 +00:00
|
|
|
|
|
2020-07-05 08:58:35 +00:00
|
|
|
|
plp NZ: indicate drive off by setting z-flag.
|
2020-04-13 17:04:02 +00:00
|
|
|
|
|
2020-08-26 10:29:04 +00:00
|
|
|
|
ldy #6
|
2020-04-13 17:04:02 +00:00
|
|
|
|
|
2020-08-26 10:29:04 +00:00
|
|
|
|
.4 jsr XRW.Wait25600usec 150 ms delay before stepping.
|
2020-05-23 18:45:32 +00:00
|
|
|
|
dey
|
2020-07-05 08:58:35 +00:00
|
|
|
|
bne .4
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-07-05 08:58:35 +00:00
|
|
|
|
php Z set
|
2020-04-13 17:04:02 +00:00
|
|
|
|
|
2020-07-05 08:58:35 +00:00
|
|
|
|
.5 plp was motor on ?
|
2021-03-27 21:59:59 +00:00
|
|
|
|
bne XRW.Cmd if so, don't wait.
|
2019-10-16 06:09:13 +00:00
|
|
|
|
|
|
|
|
|
* motor was off, wait for it to speed up
|
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.6 jsr XRW.Wait100usec wait 100us for each count in montime
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-06-07 08:06:51 +00:00
|
|
|
|
lda XRW.montimeh
|
2020-11-19 15:34:02 +00:00
|
|
|
|
bmi .6 count up to 0000
|
2019-10-16 06:09:13 +00:00
|
|
|
|
|
|
|
|
|
* motor should be up to speed,
|
|
|
|
|
* if it looks stopped then the drive is not present
|
|
|
|
|
|
2021-02-22 17:17:37 +00:00
|
|
|
|
jsr XRW.CheckMotorOn is drive present ?
|
|
|
|
|
beq XRW.E.ND
|
2020-07-05 08:58:35 +00:00
|
|
|
|
*--------------------------------------
|
2021-03-27 21:59:59 +00:00
|
|
|
|
XRW.Cmd lda A4L get command #
|
2020-06-29 13:12:33 +00:00
|
|
|
|
bne .1
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-06-29 13:12:33 +00:00
|
|
|
|
jsr XRW.TestWP 0 = status
|
|
|
|
|
bcs XRW.E.WP
|
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
bcc XRW.E.OK
|
2020-06-29 13:12:33 +00:00
|
|
|
|
|
|
|
|
|
.1 cmp #4 3 = format
|
|
|
|
|
bcs XRW.E.IO
|
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
cmp #2 2 = Write, 1 = Read
|
|
|
|
|
|
|
|
|
|
ror XRW.bWrite b7 = 1 if Write
|
|
|
|
|
bpl .2
|
2020-06-29 13:12:33 +00:00
|
|
|
|
|
|
|
|
|
jsr XRW.TestWP
|
|
|
|
|
bcs XRW.E.WP
|
2020-06-29 05:49:24 +00:00
|
|
|
|
*--------------------------------------
|
2020-11-19 15:34:02 +00:00
|
|
|
|
.2 sei DISABLE IRQ
|
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.DO XRWDBG=1
|
|
|
|
|
jsr XRW.DEBUG
|
|
|
|
|
.FIN
|
|
|
|
|
|
2021-03-17 19:49:39 +00:00
|
|
|
|
lda #2
|
|
|
|
|
sta XRW.RecalibrateCnt
|
|
|
|
|
|
|
|
|
|
.3 jsr XRW.TrackSelect
|
2021-01-24 19:44:43 +00:00
|
|
|
|
bcs XRW.E.IO
|
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
jsr XRW.SectorIO
|
2021-03-17 19:49:39 +00:00
|
|
|
|
bcc .4
|
|
|
|
|
|
|
|
|
|
jsr XRW.Recalibrate
|
|
|
|
|
bcc .3
|
|
|
|
|
|
2020-06-29 13:12:33 +00:00
|
|
|
|
bcs XRW.E.IO
|
2020-06-29 05:49:24 +00:00
|
|
|
|
|
2021-03-17 19:49:39 +00:00
|
|
|
|
.4 inc buf+1
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-06-29 05:49:24 +00:00
|
|
|
|
inc XRW.ReqSector
|
|
|
|
|
inc XRW.ReqSector
|
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.DO XRWDBG=1
|
|
|
|
|
jsr XRW.DEBUG
|
|
|
|
|
.FIN
|
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
jsr XRW.SectorIO get 2nd half of block
|
2020-06-29 05:49:24 +00:00
|
|
|
|
dec buf+1
|
|
|
|
|
|
2020-08-26 10:29:04 +00:00
|
|
|
|
bcc XRW.E.OK
|
2020-06-29 05:49:24 +00:00
|
|
|
|
|
|
|
|
|
XRW.E.IO lda #MLI.E.IO
|
2020-06-29 13:12:33 +00:00
|
|
|
|
.HS 2C BIT ABS
|
|
|
|
|
XRW.E.WP lda #MLI.E.WRTPROT
|
|
|
|
|
.HS 2C BIT ABS
|
|
|
|
|
XRW.E.ND lda #MLI.E.NODEV
|
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
plp RESTORE IRQ STATE
|
2020-06-29 05:49:24 +00:00
|
|
|
|
sec
|
2020-11-19 15:34:02 +00:00
|
|
|
|
bra XRW.E.EXIT
|
2020-08-26 10:29:04 +00:00
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
XRW.E.OK plp RESTORE IRQ STATE
|
|
|
|
|
clc
|
|
|
|
|
lda #0
|
2020-08-26 10:29:04 +00:00
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
XRW.E.EXIT ldx A2L
|
2021-03-26 17:30:56 +00:00
|
|
|
|
bit IO.D2.DrvOff,x
|
2020-06-29 05:49:24 +00:00
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2021-03-26 17:30:56 +00:00
|
|
|
|
XRW.SectorIO bit XRW.bWrite
|
|
|
|
|
bpl .1
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
jsr XRW.PreNibble
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-04-29 11:56:34 +00:00
|
|
|
|
.1 stz XRW.RetryCnt
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.2 jsr XRW.ReadAddr
|
|
|
|
|
bcs .3 (2)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
lda XRW.AddrField.S (4)
|
|
|
|
|
cmp XRW.ReqSector (4)
|
|
|
|
|
bne .3 (2)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
bit XRW.bWrite (4)
|
|
|
|
|
bpl XRW.Read (2)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
jmp XRW.Write (3)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-04-29 11:56:34 +00:00
|
|
|
|
.3 inc XRW.RetryCnt
|
|
|
|
|
bpl .2
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
sec
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
.9 rts
|
2021-03-26 17:30:56 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
* read subroutine (16-sector format)
|
|
|
|
|
*
|
|
|
|
|
* reads encoded bytes into nbuf1 and nbuf2.
|
|
|
|
|
* first reads nbuf2 high to low, then nbuf1 low to high.
|
|
|
|
|
* on entry: x=slot# times $10, read mode
|
|
|
|
|
* on exit: carry set if error, else if no error:
|
|
|
|
|
* acc=$AA, x=unchanged, y=0, carry clear.
|
|
|
|
|
* observe 'no page cross' on some branches !!
|
2021-02-11 22:08:22 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
.LIST ON
|
2021-03-26 17:30:56 +00:00
|
|
|
|
XRW.Read txa get slot #
|
2021-02-11 22:08:22 +00:00
|
|
|
|
.LIST OFF
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ora #$8C prepare mods to read routine.
|
|
|
|
|
sta rd4+1 warning: the read routine is
|
|
|
|
|
sta rd5+1 self modified !!
|
|
|
|
|
sta rd6+1
|
|
|
|
|
sta rd7+1
|
|
|
|
|
sta rd8+1
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
lda buf modify storage addresses also
|
|
|
|
|
ldy buf+1
|
|
|
|
|
sta ref3+1
|
|
|
|
|
sty ref3+2
|
|
|
|
|
sec
|
|
|
|
|
sbc #$54
|
|
|
|
|
bcs L571F branch if no borrow
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
|
|
|
|
dey
|
2021-03-17 19:49:39 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L571F sta ref2+1
|
|
|
|
|
sty ref2+2
|
2021-03-17 19:49:39 +00:00
|
|
|
|
sec
|
2021-03-26 17:30:56 +00:00
|
|
|
|
sbc #$57
|
|
|
|
|
bcs L572B branch if no borrow
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
dey
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L572B sta ref1+1
|
|
|
|
|
sty ref1+2
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ldy #$20 32 tries to find
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L5733 dey
|
|
|
|
|
beq L576D branch if can't find data header marks
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L5736 lda IO.D2.RData,x
|
|
|
|
|
bpl L5736
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L573B eor #$D5 1st data mark
|
|
|
|
|
bne L5733
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
nop delay
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L5740 lda IO.D2.RData,x
|
|
|
|
|
bpl L5740
|
2021-03-12 12:50:03 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
cmp #$AA 2nd data mark.
|
|
|
|
|
bne L573B if not, check for 1st again
|
2021-03-12 12:50:03 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
nop
|
2021-03-17 19:49:39 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L574A lda IO.D2.RData,x
|
|
|
|
|
bpl L574A
|
2021-03-12 12:50:03 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
cmp #$AD 3rd data mark
|
|
|
|
|
bne L573B if not, check for data mark 1 again
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ldy #$AA
|
|
|
|
|
lda #$00
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L5757 sta pcl use z-page for keeping checksum
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
rd4 ldx IO.D2.RData+$60 warning: self modified
|
|
|
|
|
bpl rd4
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
lda XRW.Nib2FC-$96,x
|
|
|
|
|
sta nbuf2-$AA,y save the two-bit groups in nbuf.
|
|
|
|
|
eor pcl update checksum.
|
|
|
|
|
iny next position in nbuf.
|
|
|
|
|
bne L5757 loop for all $56 two-bit groups.
|
2021-03-15 15:00:27 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ldy #$AA now read directly into user buffer.
|
|
|
|
|
bne rd5 always taken.
|
2021-03-11 21:40:55 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L576D sec error
|
2021-02-11 22:08:22 +00:00
|
|
|
|
rts
|
2019-10-19 18:35:30 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ref1 sta $1000,y warning: self modified
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
rd5 ldx IO.D2.RData+$60 warning: self modified
|
|
|
|
|
bpl rd5
|
2020-06-09 13:40:21 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
eor XRW.Nib2FC-$96,x get actual 6-bit data from dnib table.
|
|
|
|
|
ldx nbuf2-$AA,y get associated two-bit pattern
|
|
|
|
|
eor dnibl2,x and combine to form whole byte.
|
|
|
|
|
iny
|
|
|
|
|
bne ref1 loop for $56 bytes.
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
pha save for now, no time to store...
|
|
|
|
|
and #$FC strip low bits.
|
|
|
|
|
ldy #$AA prepare for next $56 bytes
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
rd6 ldx IO.D2.RData+$60 warning: self modified
|
|
|
|
|
bpl rd6
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
eor XRW.Nib2FC-$96,x
|
|
|
|
|
ldx nbuf2-$AA,y
|
|
|
|
|
eor dnibl3,x
|
|
|
|
|
ref2 sta $1000,y warning: self modified
|
2020-04-21 06:19:17 +00:00
|
|
|
|
iny
|
2021-03-26 17:30:56 +00:00
|
|
|
|
bne rd6 loop unil this group of $56 read
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
rd7 ldx IO.D2.RData+$60 warning: self modified
|
|
|
|
|
bpl rd7
|
2021-01-12 21:14:13 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
and #$FC
|
|
|
|
|
ldy #$AC last group is $54 long
|
2021-03-11 21:40:55 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L57A5 eor XRW.Nib2FC-$96,x
|
|
|
|
|
ldx nbuf2-$AC,y
|
|
|
|
|
eor dnibl4,x combine to form full byte
|
|
|
|
|
ref3 sta $1000,y warning: self modified
|
2021-01-12 21:14:13 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
rd8 ldx IO.D2.RData+$60 warning: self modified
|
|
|
|
|
bpl rd8
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
iny
|
|
|
|
|
bne L57A5
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
and #$FC
|
|
|
|
|
eor XRW.Nib2FC-$96,x checksum ok ?
|
|
|
|
|
bne L57CC error if not.
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ldx A2L test end marks.
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L57C2 lda IO.D2.RData,x
|
|
|
|
|
bpl L57C2
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
cmp #$DE
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
clc
|
|
|
|
|
beq L57CD branch if good trailer
|
2021-01-12 21:14:13 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L57CC sec
|
|
|
|
|
|
|
|
|
|
L57CD pla place last byte into user buffer
|
|
|
|
|
ldy #$55
|
|
|
|
|
sta (buf),y
|
|
|
|
|
.LIST ON
|
|
|
|
|
XRW.Read.RTS rts
|
|
|
|
|
.LIST OFF
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
XRW.TestWP ldx A2L
|
|
|
|
|
lda IO.D2.ReadProt,x test for write protected
|
|
|
|
|
lda IO.D2.ReadMode,x
|
|
|
|
|
rol write protect-->carry-->bit 0=1
|
|
|
|
|
lda IO.D2.RData,x keep in read mode
|
|
|
|
|
rts
|
2021-01-12 21:14:13 +00:00
|
|
|
|
*--------------------------------------
|
2020-04-21 06:19:17 +00:00
|
|
|
|
* write subroutine (16 sector format)
|
2019-10-16 06:09:13 +00:00
|
|
|
|
*
|
2020-04-21 06:19:17 +00:00
|
|
|
|
* writes data from nbuf1 and buf. first nbuf2, high to low then direct
|
|
|
|
|
* from (buf), low to high. assumes 1 usec cycle time. self modified code !!
|
2019-10-16 06:09:13 +00:00
|
|
|
|
*
|
2020-04-21 06:19:17 +00:00
|
|
|
|
* on entry: x = slotnum times 16
|
2020-04-16 06:15:29 +00:00
|
|
|
|
*--------------------------------------
|
2020-11-19 15:34:02 +00:00
|
|
|
|
.LIST ON
|
2021-04-30 15:25:19 +00:00
|
|
|
|
XRW.Write bit IO.D2.ReadProt,x (4) PREWRITE MODE
|
2020-11-19 15:34:02 +00:00
|
|
|
|
.LIST OFF
|
2021-06-05 15:48:54 +00:00
|
|
|
|
* bit IO.D2.ReadMode,x (4)
|
2021-04-15 14:03:04 +00:00
|
|
|
|
|
2021-04-30 15:25:19 +00:00
|
|
|
|
lda #$FF (2)
|
|
|
|
|
|
2021-06-05 15:48:54 +00:00
|
|
|
|
nop (2)
|
|
|
|
|
|
2021-04-30 15:25:19 +00:00
|
|
|
|
sta IO.D2.WriteMode,x (5) goto write mode
|
2020-04-21 06:19:17 +00:00
|
|
|
|
ora IO.D2.WShift,x (4)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
nop (2)
|
2019-10-22 14:28:54 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
ldy nbuf2 (4)
|
|
|
|
|
sty pcl (3)
|
|
|
|
|
|
2021-06-03 17:43:28 +00:00
|
|
|
|
ldy #5 (2)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
|
|
|
|
.1 pha (3) exact timing.
|
2020-04-21 06:19:17 +00:00
|
|
|
|
pla (4) exact timing.
|
|
|
|
|
jsr wnibl7 (13,9,6) write sync.
|
|
|
|
|
dey (2)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
bne .1 (3) must not cross page !
|
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
lda #$D5 (2) 1st data mark
|
|
|
|
|
jsr wnibl9 (15,9,6)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
lda #$AA (2) 2nd data mark
|
|
|
|
|
jsr wnibl9 (15,9,6)
|
2021-02-11 22:08:22 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
lda #$AD (2) 3rd data mark
|
|
|
|
|
jsr wnibl9 (15,9,6)
|
|
|
|
|
tya (2) zero checksum
|
|
|
|
|
|
|
|
|
|
ldy #$56 (2) nbuf2 index
|
|
|
|
|
bne L583D (3) branch always
|
|
|
|
|
|
|
|
|
|
* total time in this write byte loop must = 32us !!!
|
|
|
|
|
|
|
|
|
|
L583A lda nbuf2,y (4) prior 6-bit nibl
|
2020-04-21 11:36:58 +00:00
|
|
|
|
|
|
|
|
|
*L583D eor nbuf2-1,y (5) xor with current (4+1 : PAGE CROSS)
|
|
|
|
|
L583D eor nbuf2-1,y (4) xor with current (NO MORE PAGE CROSS)
|
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
tax (2) index to 7-bit nibl
|
|
|
|
|
lda XRW.FC2Nib,x (4) must not cross page boundary
|
2020-04-21 11:36:58 +00:00
|
|
|
|
|
|
|
|
|
* ldx A2L (3) restore slot index
|
|
|
|
|
ldx >A2L (4) absolute reference to zero page
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
sta IO.D2.WLoad,x (5) store encoded byte
|
|
|
|
|
lda IO.D2.WShift,x (4) handshake
|
|
|
|
|
dey (2)
|
|
|
|
|
bne L583A (3-) must not cross page boundary
|
|
|
|
|
|
|
|
|
|
* end of write byte loop
|
|
|
|
|
|
|
|
|
|
lda pcl (3) get prior nibl (from nbuf2)
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
wrefd1 ldy #$00 (2) warning: load value modified by prenib.
|
|
|
|
|
|
|
|
|
|
wrefa1 eor $1000,y (4) warning: address modified by prenib.
|
|
|
|
|
and #$FC (2) strip low 2 bits
|
|
|
|
|
tax (2) index to nibl table
|
|
|
|
|
lda XRW.FC2Nib,x (4)
|
|
|
|
|
wrefd2 ldx #$60 (2) warning: value modified by prenib.
|
|
|
|
|
sta IO.D2.WLoad,x (5) write nibl
|
|
|
|
|
lda IO.D2.WShift,x (4) handshake
|
|
|
|
|
wrefa2 lda $1000,y (4) prior nibl. warning: address modified by prenib.
|
|
|
|
|
iny (2) all done with this page ?
|
|
|
|
|
bne wrefa1 (3-) loop until page end.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
lda pch (3) get next (precalculated & translated) nibl.
|
|
|
|
|
beq L58C0 (2+) branch if code written was page aligned.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
lda A2H (3) get byte address of last byte to be written.
|
|
|
|
|
beq L58B3 (2+) branch if only 1 byte left to write.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
lsr (2) test for odd or even last byte (carry set/clear)
|
|
|
|
|
lda pch (3) restore nibl to acc.
|
|
|
|
|
sta IO.D2.WLoad,x (5)
|
|
|
|
|
lda IO.D2.WShift,x (4)
|
|
|
|
|
lda A1L (3) = byte 0 of 2nd page xor'd with byte 1 if
|
|
|
|
|
nop (2) above test set carry.
|
|
|
|
|
iny (2) y=1
|
|
|
|
|
bcs L5899 (2+) branch if last byte to be odd.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
wrefa3 eor $1100,y (4) warning: address modified by prenib.
|
|
|
|
|
and #$FC (2) strip low 2 bits.
|
|
|
|
|
tax (2) index to nibl table
|
|
|
|
|
lda XRW.FC2Nib,x (4) get nibl
|
|
|
|
|
wrefd3 ldx #$60 (2) restore slot index. warning: modified by prenib
|
|
|
|
|
sta IO.D2.WLoad,x (5)
|
|
|
|
|
lda IO.D2.WShift,x (4)
|
|
|
|
|
wrefa4 lda $1100,y (4) warning: modified by prenib
|
|
|
|
|
iny (2) got prior nibl, point to next
|
|
|
|
|
wrefa5 eor $1100,y (4) warning: modified by prenib
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
L5899 cpy A2H (3) set carry if this is the last nibl
|
|
|
|
|
and #$FC (2) strip low 2 bits
|
|
|
|
|
tax (2)
|
|
|
|
|
lda XRW.FC2Nib,x (4)
|
|
|
|
|
wrefd4 ldx #$60 (2) restore slot. warning: modified by prenib
|
|
|
|
|
sta IO.D2.WLoad,x (5)
|
|
|
|
|
lda IO.D2.WShift,x (4)
|
|
|
|
|
wrefa6 lda $1100,y (4) get prior nibl. warning: modified by prenib
|
|
|
|
|
iny (2)
|
|
|
|
|
bcc wrefa3 (3-) branch if not the last.
|
|
|
|
|
bcs L58B1 (3) waste 3 cycles, branch always.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
L58B1 bcs L58C0 (3) branch always.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
L58B3 lda >pch (4) absolute reference to zero page
|
|
|
|
|
sta IO.D2.WLoad,x (5)
|
|
|
|
|
lda IO.D2.WShift,x (4)
|
|
|
|
|
pha (3) waste 14 micro-seconds total
|
|
|
|
|
pla (4)
|
|
|
|
|
pha (3)
|
|
|
|
|
pla (4)
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
L58C0 ldx A1H (3) use last nibl (anded with $FC) for checksum
|
|
|
|
|
lda XRW.FC2Nib,x (4)
|
|
|
|
|
wrefd5 ldx #$60 (2) restore slot. warning: modified by prenib
|
|
|
|
|
sta IO.D2.WLoad,x (5)
|
|
|
|
|
lda IO.D2.WShift,x (4)
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2020-11-19 15:34:02 +00:00
|
|
|
|
ldy #2 (2) set y = index end mark table.
|
2020-04-21 06:19:17 +00:00
|
|
|
|
pha (3) waste another 11 micro-seconds
|
|
|
|
|
pla (4)
|
|
|
|
|
nop (2)
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
.1 clc (2)
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
|
|
|
|
lda XRW.EndMark,y (4) DE AA EB
|
2020-04-21 06:19:17 +00:00
|
|
|
|
jsr wnibl (15,6) write it
|
2020-11-19 15:34:02 +00:00
|
|
|
|
dey (2)
|
|
|
|
|
bpl .1 (3) if not.
|
2020-04-16 06:15:29 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
bmi .2 (3)
|
|
|
|
|
.2 nop (2)
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-04-08 20:30:18 +00:00
|
|
|
|
tya (2) Y = $FF from DEY BMI
|
2021-02-11 22:08:22 +00:00
|
|
|
|
jsr wnibl (6+9,6) write turn off byte.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2021-04-08 20:30:18 +00:00
|
|
|
|
* jsr XRW.Write.RTS (12)
|
|
|
|
|
* jsr XRW.Write.RTS (12)
|
|
|
|
|
* nop (2)
|
2021-02-26 20:13:48 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
XRW.ReadMode lda IO.D2.ReadMode,x (4) out of write mode
|
|
|
|
|
lda IO.D2.WShift,x (4) to read mode.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
rts return from write.
|
|
|
|
|
|
|
|
|
|
* 7-bit nibl write subroutines
|
|
|
|
|
|
|
|
|
|
wnibl9 clc (2) 9 cycles, then write.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
wnibl7 pha (3) 7 cycles, then write.
|
|
|
|
|
pla (4)
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2020-04-21 06:19:17 +00:00
|
|
|
|
wnibl sta IO.D2.WLoad,x (5) nibl write
|
|
|
|
|
ora IO.D2.WShift,x (4) clobbers acc, not carry
|
2020-11-19 15:34:02 +00:00
|
|
|
|
.LIST ON
|
2020-08-26 10:29:04 +00:00
|
|
|
|
XRW.Write.RTS rts (6)
|
2020-11-19 15:34:02 +00:00
|
|
|
|
.LIST OFF
|
2020-04-21 06:19:17 +00:00
|
|
|
|
*--------------------------------------
|
2021-02-11 22:08:22 +00:00
|
|
|
|
XRW.Wait25600usec
|
|
|
|
|
lda #0
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.HS 2C BIT ABS
|
|
|
|
|
|
|
|
|
|
XRW.Wait100usec lda #1
|
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
XRW.Wait100usecA
|
|
|
|
|
phx
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
.1 ldx #18 (2)
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
.2 dex (2)
|
|
|
|
|
bne .2 (3)
|
2020-11-19 15:34:02 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
inc XRW.montimel (6)
|
|
|
|
|
bne .3 (3)
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
inc XRW.montimeh (6)
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-02-11 22:08:22 +00:00
|
|
|
|
.3 dec (2)
|
|
|
|
|
bne .1 (3)
|
|
|
|
|
|
|
|
|
|
plx
|
|
|
|
|
rts
|
2020-04-16 06:15:29 +00:00
|
|
|
|
*--------------------------------------
|
2021-03-26 17:30:56 +00:00
|
|
|
|
XRW.CheckMotorOn
|
|
|
|
|
ldx A2L
|
|
|
|
|
XRW.CheckMotorOnX
|
|
|
|
|
ldy #0 init loop counter.
|
|
|
|
|
|
|
|
|
|
.1 lda IO.D2.RData,x read the shift register.
|
|
|
|
|
jsr .9 delay
|
|
|
|
|
|
|
|
|
|
pha
|
|
|
|
|
pla more delay.
|
|
|
|
|
|
|
|
|
|
cmp IO.D2.RData,x has shift reg changed ?
|
|
|
|
|
bne .9 yes, motor is moving.
|
|
|
|
|
|
|
|
|
|
dey no, dec retry counter
|
|
|
|
|
bne .1 and try 256 times.
|
|
|
|
|
|
|
|
|
|
.9 rts Z if motor OFF
|
2020-04-16 06:15:29 +00:00
|
|
|
|
*--------------------------------------
|
2020-11-19 15:34:02 +00:00
|
|
|
|
.LIST ON
|
2021-03-26 17:30:56 +00:00
|
|
|
|
XRW.ReadAddr ldy #$FC
|
2020-11-19 15:34:02 +00:00
|
|
|
|
.LIST OFF
|
2021-03-26 17:30:56 +00:00
|
|
|
|
sty XRW.CheckSum init nibble counter to $FCFC
|
|
|
|
|
|
|
|
|
|
ldx A2L get slot #
|
|
|
|
|
|
|
|
|
|
.1 iny
|
|
|
|
|
bne .2 counter LO
|
|
|
|
|
|
|
|
|
|
inc XRW.CheckSum counter HI
|
|
|
|
|
beq .99
|
|
|
|
|
|
|
|
|
|
.2 lda IO.D2.RData,x read nibl
|
|
|
|
|
bpl .2
|
|
|
|
|
|
|
|
|
|
.3 cmp #$D5 address mark 1 ?
|
|
|
|
|
bne .1
|
|
|
|
|
|
|
|
|
|
nop
|
|
|
|
|
|
|
|
|
|
.4 lda IO.D2.RData,x
|
|
|
|
|
bpl .4
|
|
|
|
|
|
|
|
|
|
cmp #$AA address mark 2 ?
|
|
|
|
|
bne .3 if not, is it address mark 1 ?
|
|
|
|
|
|
|
|
|
|
ldy #3 index for 4 byte read
|
|
|
|
|
|
|
|
|
|
.5 lda IO.D2.RData,x
|
|
|
|
|
bpl .5
|
|
|
|
|
|
|
|
|
|
cmp #$96 address mark 3 ?
|
|
|
|
|
bne .3 if not, is it address mark 1
|
|
|
|
|
|
|
|
|
|
lda #0 init Chksum
|
|
|
|
|
|
|
|
|
|
.6 sta XRW.CheckSum
|
|
|
|
|
|
|
|
|
|
.7 lda IO.D2.RData,x read 'odd bit' nibl
|
|
|
|
|
bpl .7
|
|
|
|
|
|
|
|
|
|
rol align odd bits, '1' into lsb.
|
|
|
|
|
sta XRW.Temp4x4 save them.
|
|
|
|
|
|
|
|
|
|
.8 lda IO.D2.RData,x read 'even bit' nibl
|
|
|
|
|
bpl .8
|
|
|
|
|
|
|
|
|
|
and XRW.Temp4x4 merge odd and even bits.
|
|
|
|
|
sta XRW.AddrField.C,y store data byte.
|
|
|
|
|
eor XRW.CheckSum
|
|
|
|
|
dey
|
|
|
|
|
bpl .6 loop on 4 data bytes.
|
|
|
|
|
|
|
|
|
|
tay if final checksum non-zero,
|
|
|
|
|
bne .99 (2) then error.
|
|
|
|
|
|
|
|
|
|
clc (2)
|
|
|
|
|
|
|
|
|
|
.9 lda IO.D2.RData,x (4)
|
|
|
|
|
bpl .9 (2)
|
|
|
|
|
|
|
|
|
|
eor #$DE (2)
|
|
|
|
|
bne .99 (2)
|
|
|
|
|
|
|
|
|
|
rts (6)
|
|
|
|
|
|
|
|
|
|
.99 sec
|
|
|
|
|
.LIST ON
|
|
|
|
|
XRW.ReadAddr.RTS
|
|
|
|
|
rts
|
|
|
|
|
.LIST OFF
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
XRW.TrackSelect lda #2
|
|
|
|
|
sta XRW.BadSeekCnt
|
|
|
|
|
|
2021-04-29 11:56:34 +00:00
|
|
|
|
.1 stz XRW.RetryCnt
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
|
|
|
|
.2 jsr XRW.ReadAddr
|
|
|
|
|
bcc .4
|
|
|
|
|
|
2021-04-29 11:56:34 +00:00
|
|
|
|
.3 inc XRW.RetryCnt
|
|
|
|
|
bpl .2
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
|
|
|
|
jsr XRW.Recalibrate
|
|
|
|
|
bcc .1
|
|
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
|
2021-04-29 11:56:34 +00:00
|
|
|
|
.4 ldx XRW.UnitIndex
|
2021-03-26 17:30:56 +00:00
|
|
|
|
lda XRW.AddrField.V
|
|
|
|
|
cmp #194
|
|
|
|
|
bcc .5
|
|
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
|
|
|
|
|
|
.5 sta XRW.D2VolNum-1,x
|
|
|
|
|
|
|
|
|
|
asl
|
|
|
|
|
asl CS if 2 heads
|
|
|
|
|
|
|
|
|
|
lda XRW.ReqTrack
|
|
|
|
|
bcc .50
|
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
lsr Track 160 -> 80+Carry
|
|
|
|
|
pha
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
lda #0 Carry = Head
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
rol
|
|
|
|
|
rol A = 0/2
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
ora A2L
|
|
|
|
|
tay y = n0/n2
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
lda IO.D2.Ph0On,y
|
|
|
|
|
lda IO.D2.Ph0On+4,y
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
jsr XRW.Wait100usec
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
lda IO.D2.Ph0Off,y
|
|
|
|
|
lda IO.D2.Ph0Off+4,y
|
2021-04-15 14:03:04 +00:00
|
|
|
|
|
2021-05-04 17:31:21 +00:00
|
|
|
|
pla
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
|
|
|
|
.50 sta XRW.ReqTrack2
|
|
|
|
|
|
|
|
|
|
lda XRW.AddrField.T
|
|
|
|
|
sta XRW.D2Trk-1,x
|
|
|
|
|
|
|
|
|
|
cmp XRW.ReqTrack2
|
|
|
|
|
beq .8
|
|
|
|
|
|
|
|
|
|
lda XRW.BadSeekCnt
|
|
|
|
|
beq .6 2 bad seeks, already
|
|
|
|
|
|
|
|
|
|
dec XRW.BadSeekCnt
|
|
|
|
|
bne .7
|
|
|
|
|
|
|
|
|
|
.6 lda XRW.SeekTime
|
|
|
|
|
clc
|
|
|
|
|
adc #IO.D2.SeekTimeI
|
2021-04-08 20:30:18 +00:00
|
|
|
|
bmi .7 seektime > 128
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
2021-04-08 20:30:18 +00:00
|
|
|
|
sta XRW.SeekTime
|
2021-03-26 17:30:56 +00:00
|
|
|
|
sta XRW.D2SeekTime-1,x
|
|
|
|
|
|
|
|
|
|
.7 ldy XRW.D2Trk-1,x From actual Pos...
|
|
|
|
|
lda XRW.ReqTrack2 ....to Req
|
|
|
|
|
jsr XRW.SeekYA X = XRW.UnitIndex
|
|
|
|
|
|
|
|
|
|
bra .3
|
|
|
|
|
|
2021-04-15 14:03:04 +00:00
|
|
|
|
.8 clc
|
2021-03-26 17:30:56 +00:00
|
|
|
|
XRW.TrackSelect.RTS
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
XRW.Recalibrate sec
|
|
|
|
|
dec XRW.RecalibrateCnt
|
|
|
|
|
beq XRW.TrackSelect.RTS
|
|
|
|
|
|
|
|
|
|
ldx XRW.UnitIndex
|
|
|
|
|
|
|
|
|
|
ldy #41 from 41... (4/4)
|
|
|
|
|
lda #0 ....to 0
|
|
|
|
|
sta XRW.D2VolNum-1,x reset volnum for seeking 41 4/4 tracks
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
XRW.SeekYA sta XRW.D2Trk-1,x will be current track at the end
|
|
|
|
|
|
|
|
|
|
jsr XRW.Trk2Qtrk
|
|
|
|
|
sta XRW.TargetQTrack
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
tya
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
jsr XRW.Trk2Qtrk
|
|
|
|
|
sta XRW.CurrentQTrack
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
bit #1 A = Current QT
|
|
|
|
|
bne .1
|
|
|
|
|
|
2021-04-08 20:30:18 +00:00
|
|
|
|
jsr XRW.SeekPhOnY we are on 0/4 or 2/4 track : PhY on
|
2021-04-29 11:56:34 +00:00
|
|
|
|
lda #1
|
2021-04-15 14:03:04 +00:00
|
|
|
|
bra .9 no wait, next operation will be phy/plx/Ph0On,y
|
2021-03-26 17:30:56 +00:00
|
|
|
|
|
|
|
|
|
.1 cmp XRW.TargetQTrack we are on 1/4 or 3/4
|
|
|
|
|
|
|
|
|
|
bcs .2 if CS, C > T, must move out
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
inc CC: C < T, ON next PH
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.HS B0 BCS
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.2 dec CS: C > T, ON prev PH
|
|
|
|
|
|
|
|
|
|
sta XRW.CurrentQTrack
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
bra .6 PhY ON to go to 0/4 or 2/4, then wait
|
2021-03-26 17:30:56 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
.3 bcs .4 if CS, C > T, must move out
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
inc CC: C < T, ON next PH
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.HS B0 BCS
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.4 dec CS: C > T, ON prev PH
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
sta XRW.CurrentQTrack
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
bit #1
|
2021-04-08 20:30:18 +00:00
|
|
|
|
bne .5
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
lda IO.D2.Ph0Off,x we must go to 0/4 or 2/4 : PhX Off
|
2021-03-26 17:30:56 +00:00
|
|
|
|
bra .8 go wait....
|
|
|
|
|
|
|
|
|
|
.5 phy we must go on 1/4 or 3/4
|
|
|
|
|
plx Y already ON, -> X for Ph0Off,x
|
|
|
|
|
|
|
|
|
|
bcs .6 if CS, C > T, must move out
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
inc CC: C < T, ON next PH
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-04-08 20:30:18 +00:00
|
|
|
|
.6 jsr XRW.SeekPhOnY now X and Y on
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.8 lda XRW.SeekTime
|
2021-04-29 11:56:34 +00:00
|
|
|
|
.9 jsr XRW.Wait100usecA ...wait...
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-04-29 11:56:34 +00:00
|
|
|
|
lda XRW.CurrentQTrack
|
2021-03-26 17:30:56 +00:00
|
|
|
|
cmp XRW.TargetQTrack
|
|
|
|
|
bne .3
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
jsr XRW.Wait25600usec
|
2021-04-15 14:03:04 +00:00
|
|
|
|
|
2021-06-03 17:43:28 +00:00
|
|
|
|
lda IO.D2.Ph0Off,y
|
|
|
|
|
|
2021-06-05 15:48:54 +00:00
|
|
|
|
ldy A2L
|
|
|
|
|
lda IO.D2.DrvOn,y
|
2021-06-03 17:43:28 +00:00
|
|
|
|
|
|
|
|
|
lda IO.D2.Ph0Off,x
|
2021-06-05 15:48:54 +00:00
|
|
|
|
|
|
|
|
|
lda IO.D2.DrvOn,y
|
2021-03-26 17:30:56 +00:00
|
|
|
|
clc Exit wit CC (recalibrate)
|
|
|
|
|
rts
|
2021-04-15 14:03:04 +00:00
|
|
|
|
*--------------------------------------
|
2021-04-08 20:30:18 +00:00
|
|
|
|
XRW.SeekPhOnY and #6
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ora A2L
|
|
|
|
|
tay
|
|
|
|
|
lda IO.D2.Ph0On,y
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2021-03-27 21:59:59 +00:00
|
|
|
|
* A = 0 -> 159, X = XRW.UnitIndex
|
2021-03-26 17:30:56 +00:00
|
|
|
|
*--------------------------------------
|
2021-03-27 21:59:59 +00:00
|
|
|
|
XRW.Trk2Qtrk sta pch
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
bit XRW.D2VolNum-1,x
|
|
|
|
|
bpl .1 < $80 : x4
|
|
|
|
|
|
|
|
|
|
bvs .2
|
2019-10-16 06:09:13 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
asl $80 < v < $BF : x3
|
|
|
|
|
adc pch
|
|
|
|
|
rts
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
.1 asl
|
|
|
|
|
asl
|
2021-03-26 17:30:56 +00:00
|
|
|
|
rts
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
* 2 sides :
|
2019-10-16 06:09:13 +00:00
|
|
|
|
|
2021-03-27 21:59:59 +00:00
|
|
|
|
.2 lda XRW.D2VolNum-1,x > $C0 : 2 heads
|
|
|
|
|
lsr CS : $C1 = 80, 2 heads
|
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
lda pch
|
2021-03-27 21:59:59 +00:00
|
|
|
|
and #$FE
|
2021-03-26 17:30:56 +00:00
|
|
|
|
bcs .8 x2 for 80trk (ELITE III)
|
|
|
|
|
|
|
|
|
|
asl x4 for 40trk (ELITE II)
|
|
|
|
|
|
|
|
|
|
.8 rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
* preniblize subroutine (16 sector format)
|
|
|
|
|
*
|
|
|
|
|
* converts 256 bytes of user data in (buf) into 6 bit nibls in nbuf2.
|
|
|
|
|
* high 6 bits are translated directly by the write routines.
|
|
|
|
|
*
|
|
|
|
|
* on entry: buf is 2-byte pointer to 256 bytes of user data.
|
|
|
|
|
*
|
|
|
|
|
* on exit: a,x,y undefined. write routine modified to do direct conversion
|
|
|
|
|
* of high 6 bits of user's buffer data.
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
XRW.PreNibble lda buf self-modify the addresses because of
|
|
|
|
|
ldy buf+1 the fast timing required.
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
clc all offsets are minus $AA.
|
|
|
|
|
adc #$02 the highest set is buf+$AC.
|
|
|
|
|
bcc L58FA branch if no carry,
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
iny otherwise add carry to high address.
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L58FA sta prn3+1 self mod 3
|
|
|
|
|
sty prn3+2
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
sec
|
|
|
|
|
sbc #$56 middle set is buf+$56.
|
|
|
|
|
bcs L5906 branch if no borrow,
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
dey otherwise deduct from high.
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L5906 sta prn2+1 self mod 2
|
|
|
|
|
sty prn2+2
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
sec
|
|
|
|
|
sbc #$56 low set is exactly buf
|
|
|
|
|
bcs L5912
|
2020-04-21 06:19:17 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
dey
|
2021-01-14 21:39:36 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L5912 sta prn1+1 self mod 1
|
|
|
|
|
sty prn1+2
|
|
|
|
|
|
|
|
|
|
ldy #$AA count up to 0.
|
|
|
|
|
|
|
|
|
|
prn1 lda $1000,y warning: self modified. get byte from lowest group.
|
|
|
|
|
and #$03 strip high 6 bits.
|
|
|
|
|
tax index to 2 bit equivalent.
|
|
|
|
|
lda XRW.0000XX00,x
|
|
|
|
|
pha save pattern
|
|
|
|
|
|
|
|
|
|
prn2 lda $1056,y warning: self modified. get byte from middle group.
|
|
|
|
|
and #$03
|
2021-03-11 21:40:55 +00:00
|
|
|
|
tax
|
2021-03-26 17:30:56 +00:00
|
|
|
|
pla restore pattern.
|
|
|
|
|
ora XRW.00XX0000,x combine 2nd group with 1st.
|
|
|
|
|
pha save new pattern.
|
2021-01-14 21:39:36 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
prn3 lda $10AC,y warning: self modified. get byte from highest group.
|
|
|
|
|
and #$03
|
|
|
|
|
tax
|
|
|
|
|
pla restore new pattern
|
|
|
|
|
ora XRW.XX000000,x and form final nibl.
|
|
|
|
|
pha
|
2021-02-17 16:15:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
tya
|
|
|
|
|
eor #$FF
|
|
|
|
|
tax
|
2021-01-14 21:39:36 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
pla
|
|
|
|
|
sta nbuf2,x save in nibl buffer.
|
|
|
|
|
iny inc to next set.
|
|
|
|
|
bne prn1 loop until all $56 nibls formed.
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ldy buf now prepare data bytes for write16 subr.
|
|
|
|
|
dey prepare end address.
|
|
|
|
|
sty A2H
|
|
|
|
|
lda buf
|
|
|
|
|
sta wrefd1+1 warning: the following storage addresses
|
|
|
|
|
beq L595F starting with 'wref' are refs into code
|
2021-01-14 21:39:36 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
eor #$FF space, changed by this routine.
|
|
|
|
|
tay index to last byte of page in (buf).
|
|
|
|
|
lda (buf),y pre-niblize the last byte of the page
|
|
|
|
|
iny with the first byte of the next page.
|
|
|
|
|
eor (buf),y
|
|
|
|
|
and #$FC
|
|
|
|
|
tax
|
|
|
|
|
lda XRW.FC2Nib,x get disk 7-bit nible equivalent.
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L595F sta pch
|
|
|
|
|
beq L596F branch if data to be written is page aligned.
|
2021-01-24 19:44:43 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
lda A2H check if last byte is even
|
|
|
|
|
lsr or odd address. shift even/odd -> carry.
|
|
|
|
|
lda (buf),y if even, then leave intact.
|
|
|
|
|
bcc L596D branch if odd.
|
2021-03-17 19:49:39 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
iny if even, then pre-xor with byte 1.
|
|
|
|
|
eor (buf),y
|
|
|
|
|
L596D sta A1L save result for write routine.
|
2021-03-17 19:49:39 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
L596F ldy #$FF index to last byte of data to write.
|
|
|
|
|
lda (buf),y to be used as a checksum.
|
|
|
|
|
and #$FC strip extra bits
|
|
|
|
|
sta A1H and save it.
|
2021-03-17 19:49:39 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ldy buf+1 now modify address references to
|
|
|
|
|
sty wrefa1+2 user data.
|
|
|
|
|
sty wrefa2+2
|
2021-03-17 19:49:39 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
iny
|
|
|
|
|
sty wrefa3+2
|
|
|
|
|
sty wrefa4+2
|
|
|
|
|
sty wrefa5+2
|
|
|
|
|
sty wrefa6+2
|
2021-03-17 19:49:39 +00:00
|
|
|
|
|
2021-03-26 17:30:56 +00:00
|
|
|
|
ldx A2L and lastly, index references to
|
|
|
|
|
stx wrefd2+1 controller.
|
|
|
|
|
stx wrefd3+1
|
|
|
|
|
stx wrefd4+1
|
|
|
|
|
stx wrefd5+1
|
2021-03-17 19:49:39 +00:00
|
|
|
|
rts
|
2020-04-16 06:15:29 +00:00
|
|
|
|
*--------------------------------------
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.LIST ON
|
2020-05-08 19:02:27 +00:00
|
|
|
|
XRW.FREE .EQ $D540-*
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.LIST OFF
|
2020-05-08 19:02:27 +00:00
|
|
|
|
.BS $D540-*
|
2020-04-21 06:19:17 +00:00
|
|
|
|
*--------------------------------------
|
2020-05-08 19:02:27 +00:00
|
|
|
|
* nibl buffer 'nbuf2' must fit in a page
|
2020-04-21 06:19:17 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
nbuf2 .BS $56 nibl buffer for read/write of low 2-bits of each byte.
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
* 7-bit to 6-bit 'deniblize' table (16-sector format)
|
|
|
|
|
*
|
|
|
|
|
* valid codes are $96 to $FF only. codes with more than one pair of
|
|
|
|
|
* adjacent zeroes or with no adjacent ones (except bit 7) are excluded.
|
|
|
|
|
*
|
|
|
|
|
* nibbles in the ranges of $A0-$A3, $C0-$C7, $E0-$E3 are used for
|
|
|
|
|
* other tables since no valid nibbles are in these ranges.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
* aligned to page boundary + $96
|
2020-04-21 06:19:17 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
XRW.Nib2FC .HS 0004
|
2020-04-23 06:02:25 +00:00
|
|
|
|
* .HS FFFF
|
|
|
|
|
XRW.UnitIndex .HS 00
|
|
|
|
|
XRW.LastUnitUsed .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 080C
|
2020-04-23 06:02:25 +00:00
|
|
|
|
* .HS FF
|
2020-06-10 20:04:13 +00:00
|
|
|
|
XRW.RecalibrateCnt .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 101418
|
2020-04-23 06:02:25 +00:00
|
|
|
|
XRW.XX000000 .HS 008040C0 used in fast prenib as lookup for 2-bit quantities.
|
|
|
|
|
* .HS FFFF
|
2020-06-07 08:06:51 +00:00
|
|
|
|
XRW.montimel .HS 00
|
|
|
|
|
XRW.montimeh .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 1C20
|
|
|
|
|
.HS FFFFFF
|
|
|
|
|
.HS 24282C3034
|
2020-04-23 06:02:25 +00:00
|
|
|
|
* .HS FFFF
|
|
|
|
|
XRW.ReqTrack .HS 00
|
|
|
|
|
XRW.ReqSector .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 383C4044484C
|
2020-08-26 10:29:04 +00:00
|
|
|
|
* .HS FF
|
2021-03-26 17:30:56 +00:00
|
|
|
|
XRW.BadSeekCnt .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 5054585C606468
|
2020-04-23 06:02:25 +00:00
|
|
|
|
XRW.00XX0000 .HS 00201030 used in fast prenib.
|
2020-11-19 15:34:02 +00:00
|
|
|
|
XRW.EndMark .HS EBAADE table using 'unused' nibbles ($C4,$C5,$C6,$C7)
|
2020-04-23 06:02:25 +00:00
|
|
|
|
* .HS FFFFFFFF
|
|
|
|
|
XRW.AddrField.C .HS 00 AddrField Checksum
|
|
|
|
|
XRW.AddrField.S .HS 00 AddrField Sector
|
|
|
|
|
XRW.AddrField.T .HS 00 AddrField Track
|
|
|
|
|
XRW.AddrField.V .HS 00 AddrField Volume
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 6C
|
2020-11-19 15:34:02 +00:00
|
|
|
|
XRW.SeekTime .HS 00
|
2020-05-25 13:58:59 +00:00
|
|
|
|
*ibstat .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 707478
|
|
|
|
|
.HS FFFFFF
|
|
|
|
|
.HS 7C
|
2020-04-23 06:02:25 +00:00
|
|
|
|
* .HS FFFF
|
|
|
|
|
XRW.Temp4x4 .HS 00
|
|
|
|
|
XRW.CheckSum .HS 00 used for address header cksum
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 8084
|
2021-03-26 17:30:56 +00:00
|
|
|
|
.HS FF
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS 888C9094989CA0
|
2020-04-23 06:02:25 +00:00
|
|
|
|
XRW.0000XX00 .HS 0008040C used in fast prenib.
|
2020-05-04 20:46:21 +00:00
|
|
|
|
* .HS FF
|
|
|
|
|
XRW.CurrentQTrack .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS A4A8AC
|
2020-05-04 20:46:21 +00:00
|
|
|
|
* .HS FF
|
|
|
|
|
XRW.TargetQTrack .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS B0B4B8BCC0C4C8
|
2021-03-26 17:30:56 +00:00
|
|
|
|
* .HS FFFF
|
|
|
|
|
XRW.RetryCnt .HS 00
|
|
|
|
|
XRW.ReqTrack2 .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS CCD0D4D8DCE0
|
2020-11-19 15:34:02 +00:00
|
|
|
|
XRW.bWrite .HS 00
|
2020-04-21 06:19:17 +00:00
|
|
|
|
.HS E4E8ECF0F4F8FC
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
* 6-bit to 2-bit conversion tables:
|
|
|
|
|
*
|
|
|
|
|
* origin = $D600 (page boundary)
|
|
|
|
|
*
|
|
|
|
|
* dnibl2 abcdef-->0000FE
|
|
|
|
|
* dnibl3 abcdef-->0000DC
|
|
|
|
|
* dnibl4 abcdef-->0000BA
|
|
|
|
|
* page align the following tables:
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
* FC-bits to nibble conversion table (256 bytes)
|
|
|
|
|
*
|
|
|
|
|
* codes with more than one pair of adjacent zeroes
|
|
|
|
|
* or with no adjacent ones (except B7) are excluded.
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
dnibl2 .HS 00
|
|
|
|
|
dnibl3 .HS 00
|
|
|
|
|
dnibl4 .HS 00
|
|
|
|
|
XRW.FC2Nib .HS 96
|
|
|
|
|
.HS 02000097
|
|
|
|
|
.HS 0100009A
|
|
|
|
|
.HS 0300009B
|
|
|
|
|
.HS 0002009D
|
|
|
|
|
.HS 0202009E
|
|
|
|
|
.HS 0102009F
|
|
|
|
|
.HS 030200A6
|
|
|
|
|
.HS 000100A7
|
|
|
|
|
.HS 020100AB
|
|
|
|
|
.HS 010100AC
|
|
|
|
|
.HS 030100AD
|
|
|
|
|
.HS 000300AE
|
|
|
|
|
.HS 020300AF
|
|
|
|
|
.HS 010300B2
|
|
|
|
|
.HS 030300B3
|
|
|
|
|
.HS 000002B4
|
|
|
|
|
.HS 020002B5
|
|
|
|
|
.HS 010002B6
|
|
|
|
|
.HS 030002B7
|
|
|
|
|
.HS 000202B9
|
|
|
|
|
.HS 020202BA
|
|
|
|
|
.HS 010202BB
|
|
|
|
|
.HS 030202BC
|
|
|
|
|
.HS 000102BD
|
|
|
|
|
.HS 020102BE
|
|
|
|
|
.HS 010102BF
|
|
|
|
|
.HS 030102CB
|
|
|
|
|
.HS 000302CD
|
|
|
|
|
.HS 020302CE
|
|
|
|
|
.HS 010302CF
|
|
|
|
|
.HS 030302D3
|
|
|
|
|
.HS 000001D6
|
|
|
|
|
.HS 020001D7
|
|
|
|
|
.HS 010001D9
|
|
|
|
|
.HS 030001DA
|
|
|
|
|
.HS 000201DB
|
|
|
|
|
.HS 020201DC
|
|
|
|
|
.HS 010201DD
|
|
|
|
|
.HS 030201DE
|
|
|
|
|
.HS 000101DF
|
|
|
|
|
.HS 020101E5
|
|
|
|
|
.HS 010101E6
|
|
|
|
|
.HS 030101E7
|
|
|
|
|
.HS 000301E9
|
|
|
|
|
.HS 020301EA
|
|
|
|
|
.HS 010301EB
|
|
|
|
|
.HS 030301EC
|
|
|
|
|
.HS 000003ED
|
|
|
|
|
.HS 020003EE
|
|
|
|
|
.HS 010003EF
|
|
|
|
|
.HS 030003F2
|
|
|
|
|
.HS 000203F3
|
|
|
|
|
.HS 020203F4
|
|
|
|
|
.HS 010203F5
|
|
|
|
|
.HS 030203F6
|
|
|
|
|
.HS 000103F7
|
|
|
|
|
.HS 020103F9
|
|
|
|
|
.HS 010103FA
|
|
|
|
|
.HS 030103FB
|
|
|
|
|
.HS 000303FC
|
|
|
|
|
.HS 020303FD
|
|
|
|
|
.HS 010303FE
|
|
|
|
|
.HS 030303FF
|
2019-10-16 06:09:13 +00:00
|
|
|
|
*--------------------------------------
|
2019-11-01 20:06:04 +00:00
|
|
|
|
XRW.LEN .EQ *-XRW.START
|
2019-10-16 06:09:13 +00:00
|
|
|
|
MAN
|
2020-05-23 18:45:32 +00:00
|
|
|
|
SAVE usr/src/prodos.fx/prodos.s.xrw
|
|
|
|
|
LOAD usr/src/prodos.fx/prodos.s
|
2019-10-16 06:09:13 +00:00
|
|
|
|
ASM
|