2021-03-27 14:25:42 +00:00
|
|
|
;ProDOS Zero Page
|
|
|
|
Command = $42 ;ProDOS Command
|
|
|
|
Unit = $43 ;ProDOS unit (SDDD0000)
|
|
|
|
BufferLo = $44
|
|
|
|
BufferHi = $45
|
|
|
|
BlockLo = $46
|
|
|
|
BlockHi = $47
|
|
|
|
|
|
|
|
; ProDOS Error Codes
|
|
|
|
IOError = $27
|
|
|
|
NoDevice = $28
|
|
|
|
WriteProtect = $2B
|
|
|
|
|
2021-03-27 15:07:36 +00:00
|
|
|
InputByte = $c08e+SLOT*$10
|
|
|
|
OutputByte = $c08d+SLOT*$10
|
|
|
|
InputFlags = $c08b+SLOT*$10
|
|
|
|
OutputFlags = $c087+SLOT*$10
|
2021-03-27 14:25:42 +00:00
|
|
|
|
|
|
|
ReadBlockCommand = $01
|
|
|
|
WriteBlockCommand = $02
|
|
|
|
GetTimeCommand = $03
|
|
|
|
ChangeDriveCommand = $04
|
|
|
|
ExecCommand = $05
|
|
|
|
LoadFileCommand = $06
|
|
|
|
SaveFileCommand = $07
|
2021-06-01 23:08:21 +00:00
|
|
|
MenuCommand = $08
|
2021-03-27 14:25:42 +00:00
|
|
|
|
2021-07-02 02:34:09 +00:00
|
|
|
Wait = $fca8
|
|
|
|
PrintChar = $fded
|
|
|
|
Home = $fc58
|
|
|
|
ReadChar = $fd0c
|
|
|
|
|
2021-03-27 14:25:42 +00:00
|
|
|
.org SLOT*$100 + $C000
|
|
|
|
;ID bytes for booting and drive detection
|
|
|
|
cpx #$20 ;ID bytes for ProDOS and the
|
|
|
|
cpx #$00 ; Apple Autostart ROM
|
|
|
|
cpx #$03 ;
|
|
|
|
|
|
|
|
ldx #SLOT*$10
|
|
|
|
stx $2b
|
|
|
|
stx Unit
|
|
|
|
|
|
|
|
;force EPROM to second page on boot
|
2021-03-28 12:12:58 +00:00
|
|
|
lda #$3f ;set all flags high and page 1 of EPROMi
|
2021-03-27 14:25:42 +00:00
|
|
|
PageJump:
|
2021-03-27 15:07:36 +00:00
|
|
|
sta OutputFlags
|
2021-03-27 14:25:42 +00:00
|
|
|
jmp Start
|
|
|
|
|
|
|
|
;entry points for ProDOS
|
|
|
|
DriverEntry:
|
|
|
|
lda #$0f ;set all flags high and page 0 of EPROM
|
2021-03-27 15:07:36 +00:00
|
|
|
sta OutputFlags
|
2021-03-27 14:25:42 +00:00
|
|
|
;since the firmware page changes to 0, this falls through to the driver
|
|
|
|
|
|
|
|
Start:
|
2021-03-28 14:27:53 +00:00
|
|
|
lda #$f0 ;restore COUT after PR# called
|
|
|
|
sta $36
|
|
|
|
lda #$fd
|
|
|
|
sta $37
|
2021-07-02 02:34:09 +00:00
|
|
|
jsr Home ;clear screen and show menu options
|
2021-03-27 14:25:42 +00:00
|
|
|
ldy #$00
|
|
|
|
PrintString:
|
|
|
|
lda Text,y
|
2021-06-01 00:37:38 +00:00
|
|
|
beq WaitForRPi
|
2021-03-28 12:12:58 +00:00
|
|
|
ora #$80
|
2021-07-02 02:34:09 +00:00
|
|
|
jsr PrintChar
|
2021-03-27 14:25:42 +00:00
|
|
|
iny
|
|
|
|
bne PrintString
|
|
|
|
|
2021-06-01 00:37:38 +00:00
|
|
|
WaitForRPi:
|
|
|
|
lda InputFlags
|
|
|
|
rol
|
|
|
|
bcs OK
|
|
|
|
lda #$ff
|
2021-07-02 02:34:09 +00:00
|
|
|
jsr Wait
|
2021-07-17 14:13:25 +00:00
|
|
|
lda #'.'+$80
|
2021-07-02 02:34:09 +00:00
|
|
|
jsr PrintChar
|
2021-06-01 00:37:38 +00:00
|
|
|
jmp WaitForRPi
|
|
|
|
|
|
|
|
OK:
|
2021-07-02 02:34:09 +00:00
|
|
|
jsr Home ;clear screen
|
2021-06-01 23:08:21 +00:00
|
|
|
|
|
|
|
lda #MenuCommand ;request menu text from RPi
|
|
|
|
jsr SendByte
|
|
|
|
|
|
|
|
DumpOutput:
|
|
|
|
jsr GetByte
|
|
|
|
cmp #$00
|
|
|
|
beq GetChar
|
2021-07-02 02:34:09 +00:00
|
|
|
jsr PrintChar
|
2021-06-01 23:08:21 +00:00
|
|
|
clc
|
|
|
|
bcc DumpOutput
|
2021-06-01 00:37:38 +00:00
|
|
|
|
2021-03-27 14:25:42 +00:00
|
|
|
GetChar:
|
2021-07-02 02:34:09 +00:00
|
|
|
jsr ReadChar
|
2021-03-27 14:25:42 +00:00
|
|
|
sec ;subtract ascii "1" to get 0 - 3 from "1" to "4"
|
|
|
|
sbc #$b1
|
|
|
|
asl ;put in top nibble as EPROM page
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
ora #$0f ;set all flags high
|
|
|
|
jmp PageJump
|
|
|
|
|
2021-06-01 23:08:21 +00:00
|
|
|
SendByte:
|
|
|
|
pha
|
|
|
|
waitWrite:
|
|
|
|
lda InputFlags
|
|
|
|
rol
|
|
|
|
rol
|
|
|
|
bcs waitWrite
|
|
|
|
pla
|
|
|
|
sta OutputByte
|
|
|
|
lda #$3e ; set bit 0 low to indicate write started
|
|
|
|
sta OutputFlags
|
|
|
|
finishWrite:
|
|
|
|
lda InputFlags
|
|
|
|
rol
|
|
|
|
rol
|
|
|
|
bcc finishWrite
|
|
|
|
lda #$3f
|
|
|
|
sta OutputFlags
|
2021-03-27 14:25:42 +00:00
|
|
|
rts
|
|
|
|
|
2021-06-01 23:08:21 +00:00
|
|
|
GetByte:
|
|
|
|
lda #$3d ;set read flag low
|
|
|
|
sta OutputFlags
|
|
|
|
waitRead:
|
|
|
|
lda InputFlags
|
|
|
|
rol
|
|
|
|
bcs waitRead
|
|
|
|
lda InputByte
|
|
|
|
pha
|
|
|
|
lda #$3f ;set all flags high
|
|
|
|
sta OutputFlags
|
|
|
|
finishRead:
|
|
|
|
lda InputFlags
|
|
|
|
rol
|
|
|
|
bcc finishRead
|
|
|
|
pla
|
|
|
|
end:
|
|
|
|
rts
|
2021-06-30 04:12:32 +00:00
|
|
|
|
2021-10-06 23:30:20 +00:00
|
|
|
.repeat 187-<end
|
2021-03-27 14:25:42 +00:00
|
|
|
.byte 0
|
|
|
|
.endrepeat
|
2021-06-30 04:12:32 +00:00
|
|
|
|
|
|
|
Text:
|
|
|
|
.byte "Apple2-IO-RPi",$8d
|
|
|
|
.byte "(c)2020-2021 Terence J. Boldt",$8d
|
|
|
|
.byte $8d
|
|
|
|
.byte "Waiting for RPi...",$00
|
|
|
|
|
2021-03-27 14:25:42 +00:00
|
|
|
.byte 0,0 ;0000 blocks = check status
|
|
|
|
.byte 7 ;bit set(0=status 1=read 2=write) unset(3=format, 4/5=number of volumes, 6=interruptable, 7=removable)
|
|
|
|
.byte DriverEntry&$00FF ;low byte of entry
|
|
|
|
|