2021-12-12 15:31:01 +00:00
|
|
|
writeLatchHigh = $C081
|
|
|
|
writeLatchLow = $C080
|
2019-05-13 13:11:26 +00:00
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
;temp variables becasue 6502 only has 3 registers
|
|
|
|
highLatch = $F8
|
|
|
|
lowLatch = $F9
|
|
|
|
tempY = $FE
|
|
|
|
blockHalfCounter = $FF
|
2019-05-13 13:11:26 +00:00
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
;ProDOS defines
|
2020-12-01 02:36:10 +00:00
|
|
|
command = $42 ;ProDOS command
|
|
|
|
unit = $43 ;7=drive 6-4=slot 3-0=not used
|
|
|
|
buflo = $44 ;low address of buffer
|
|
|
|
bufhi = $45 ;hi address of buffer
|
|
|
|
blklo = $46 ;low block
|
|
|
|
blkhi = $47 ;hi block
|
|
|
|
ioerr = $27 ;I/O error code
|
|
|
|
nodev = $28 ;no device connected
|
|
|
|
wperr = $2B ;write protect error
|
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
;for relocatable code, address to jump to instead of JSR absolute + RTS
|
|
|
|
jumpAddressLo = $FA
|
|
|
|
jumpAddressHi = $FB
|
|
|
|
ioAddressLo = $FC
|
|
|
|
ioAddressHi = $FD
|
|
|
|
knownRts = $FF58
|
|
|
|
|
|
|
|
.org $C700
|
|
|
|
;code is relocatable
|
|
|
|
; but set to $c700 for
|
|
|
|
; readability
|
2019-05-13 13:11:26 +00:00
|
|
|
|
|
|
|
;ID bytes for booting and drive detection
|
|
|
|
cpx #$20 ;ID bytes for ProDOS and the
|
|
|
|
cpx #$00 ; Apple Autostart ROM
|
|
|
|
cpx #$03 ;
|
|
|
|
cpx #$3C ;this one for older II's
|
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
;zero out block numbers and buffer address
|
|
|
|
sty buflo
|
|
|
|
sty blklo
|
|
|
|
sty blkhi
|
|
|
|
iny ;set command = 1 for read block
|
|
|
|
sty command
|
|
|
|
sty jumpAddressLo ;$01 of $0801 where boot code starts
|
|
|
|
jsr knownRts ;jump to known RTS to get our address from the stack
|
|
|
|
tsx
|
|
|
|
lda $0100,x ;this for example would be $C7 in slot 7
|
|
|
|
sta bufhi ;keep the slot here
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
tax
|
|
|
|
|
2019-05-13 13:11:26 +00:00
|
|
|
;display copyright message
|
2021-12-12 15:31:01 +00:00
|
|
|
ldy #<text
|
|
|
|
drawtxt: lda (buflo),y
|
2019-05-13 13:11:26 +00:00
|
|
|
sta $07D0,y ;put text on last line
|
|
|
|
iny
|
2021-12-12 15:31:01 +00:00
|
|
|
bne drawtxt
|
|
|
|
|
|
|
|
;load block 0000 at $0800
|
2019-05-13 13:11:26 +00:00
|
|
|
lda #$08
|
|
|
|
sta bufhi
|
2021-12-12 15:31:01 +00:00
|
|
|
sta jumpAddressHi
|
|
|
|
stx unit
|
|
|
|
bne start
|
2019-05-13 13:11:26 +00:00
|
|
|
;This is the ProDOS entry point for this card
|
2021-12-12 15:31:01 +00:00
|
|
|
entry:
|
|
|
|
lda #<knownRts
|
|
|
|
sta jumpAddressLo
|
|
|
|
lda #>knownRts
|
|
|
|
sta jumpAddressHi
|
|
|
|
start:
|
|
|
|
lda #$C0
|
|
|
|
sta ioAddressHi
|
|
|
|
jsr knownRts
|
|
|
|
tsx
|
|
|
|
lda $0100,x
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tax
|
|
|
|
cpx unit ;make sure same as ProDOS
|
|
|
|
beq docmd ;yep, do command
|
|
|
|
sec ;nope, set device not connected
|
2019-05-13 13:11:26 +00:00
|
|
|
lda #nodev
|
|
|
|
rts ;go back to ProDOS
|
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
docmd:
|
|
|
|
lda command
|
2019-05-13 13:11:26 +00:00
|
|
|
beq getstat ;command 0 is GetStatus
|
2021-12-12 15:31:01 +00:00
|
|
|
cmp #$01
|
2019-05-13 13:11:26 +00:00
|
|
|
beq readblk ;command 1 is ReadBlock
|
|
|
|
sec ;Format/Write not permitted
|
|
|
|
lda #wperr ;write protect error
|
|
|
|
rts ;go back to ProDOS
|
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
getstat:
|
|
|
|
clc ;send back status
|
2019-05-13 13:11:26 +00:00
|
|
|
lda #$00 ;good status
|
|
|
|
ldx #$00 ;1024 blocks
|
|
|
|
ldy #$04 ;
|
|
|
|
rts
|
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
readblk:
|
|
|
|
lda blkhi ;get hi block
|
2019-05-13 13:11:26 +00:00
|
|
|
asl a ;shift up to top 3 bits
|
|
|
|
asl a ;since that's all the high
|
|
|
|
asl a ;blocks we can handle
|
|
|
|
asl a ;
|
|
|
|
asl a ;
|
2021-12-12 15:31:01 +00:00
|
|
|
sta highLatch ;save it in scratch ram 0
|
2019-05-13 13:11:26 +00:00
|
|
|
;so we can stuff it in the
|
|
|
|
;high latch later
|
|
|
|
lda blklo ;get low block
|
|
|
|
lsr a ;shift so we get the top 5
|
|
|
|
lsr a ;bits - this also goes in
|
|
|
|
lsr a ;the high latch
|
2021-12-12 15:31:01 +00:00
|
|
|
ora highLatch ;add it to those top 3 bits
|
|
|
|
sta highLatch ;save it back in scratch ram
|
2019-05-13 13:11:26 +00:00
|
|
|
lda blklo ;get low block
|
|
|
|
asl a ;shift it to top 3 bits
|
|
|
|
asl a ;
|
|
|
|
asl a ;
|
|
|
|
asl a ;
|
|
|
|
asl a ;
|
2021-12-12 15:31:01 +00:00
|
|
|
sta lowLatch
|
|
|
|
lda #$02
|
|
|
|
sta blockHalfCounter
|
2019-05-13 13:11:26 +00:00
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
;This gets 256 bytes from the ROM card
|
2019-05-13 13:11:26 +00:00
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
read256:
|
|
|
|
ldy #$00
|
|
|
|
lda highLatch ;get high latch value
|
|
|
|
sta writeLatchHigh,x ;set high latch for card
|
|
|
|
loop256:
|
|
|
|
lda lowLatch
|
|
|
|
sta writeLatchLow,x
|
|
|
|
txa
|
|
|
|
ora #$80
|
|
|
|
sta ioAddressLo
|
|
|
|
loop16:
|
|
|
|
sty tempY
|
|
|
|
ldy #$00
|
|
|
|
lda (ioAddressLo),y
|
|
|
|
ldy tempY
|
|
|
|
sta (buflo),y
|
|
|
|
iny
|
|
|
|
inc ioAddressLo
|
|
|
|
lda ioAddressLo
|
|
|
|
and #$0F
|
|
|
|
bne loop16
|
|
|
|
inc lowLatch
|
|
|
|
cpy #$00
|
|
|
|
bne loop256
|
|
|
|
dec blockHalfCounter
|
|
|
|
bne readnext256
|
|
|
|
dec bufhi
|
2019-05-13 13:11:26 +00:00
|
|
|
clc ;clear error code for success
|
|
|
|
lda #$00
|
|
|
|
rts ;return to ProDOS
|
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
readnext256:
|
|
|
|
inc bufhi
|
|
|
|
clc
|
|
|
|
bcc read256
|
2019-05-13 13:11:26 +00:00
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
;macro for string with high-bit set
|
|
|
|
.macro aschi str
|
|
|
|
.repeat .strlen (str), c
|
|
|
|
.byte .strat (str, c) | $80
|
|
|
|
.endrep
|
|
|
|
.endmacro
|
2019-05-13 13:11:26 +00:00
|
|
|
|
2021-12-12 15:31:01 +00:00
|
|
|
text: aschi "ROM-Drive (c)1998-2021 Terence J. Boldt"
|
2021-04-01 01:51:39 +00:00
|
|
|
end:
|
|
|
|
.byte 0
|
2019-05-13 13:11:26 +00:00
|
|
|
|
2020-12-01 02:36:10 +00:00
|
|
|
; These bytes need to be at the top of the 256 byte firmware as ProDOS
|
|
|
|
; uses these to find the entry point and drive capabilities
|
|
|
|
|
2021-04-01 01:51:39 +00:00
|
|
|
.repeat 251-<end
|
|
|
|
.byte 0
|
|
|
|
.endrepeat
|
2020-12-01 02:36:10 +00:00
|
|
|
|
|
|
|
.byte 0,0 ;0000 blocks = check status
|
|
|
|
.byte 3 ;bit 0=read 1=status
|
|
|
|
.byte entry&$00FF ;low byte of entry
|
2019-05-13 13:11:26 +00:00
|
|
|
|