IIcSystemClock/clock.system.s

1138 lines
26 KiB
ArmAsm
Raw Normal View History

2019-04-20 23:58:58 +00:00
.include "opcodes.inc"
.include "apple2.inc"
2019-04-20 23:08:35 +00:00
.include "common.inc"
2019-04-20 23:33:27 +00:00
.feature string_escapes
2019-04-20 23:58:58 +00:00
2019-04-20 22:54:40 +00:00
.org $2000
2019-12-09 02:16:21 +00:00
.setcpu "65C02"
.enum MessageCode
kInstall = 0
kNoSysFile = 1
kDiskError = 2
kIIc = 3
kIIe = 4
kCurrentYear = 5
kOkPrompt = 6
kNoClock = 7
kRunning = 8
kSeikoIIc = 9
kSeikoIIe = 10
kRemoveWriteProtect = 11
.endenum
2019-12-09 06:43:07 +00:00
mach_type := $07 ; 0 = IIc, 1 = II+/IIe
case_mask := $08 ; mask with chars before COUT
has_80col := $09 ; 1 = has 80 column card
month := $0A ; month from current date
msg_num := $0B ; stashed message number
2019-04-20 22:54:40 +00:00
SLOT3_FIRMWARE := $C300
PORT2_ACIA_STATUS := $C0A9
PORT2_ACIA_COMMAND := $C0AA
PORT2_ACIA_CONTROL := $C0AB
DISXY := $C058
ENBXY := $C059
X0EDGE1 := $C05C
X0EDGE2 := $C05D
MOUSE_BTN := $C063
2019-04-20 23:58:58 +00:00
2019-12-09 00:18:50 +00:00
kClockRoutineMaxLength = 125 ; Per ProDOS 8 TRM
2019-04-20 22:54:40 +00:00
L2000:
2020-09-23 04:09:48 +00:00
default_slot := * + 1
lda #$06 ; For easy patching???
2019-12-09 02:16:21 +00:00
L2003 := * + 1 ; Patched location for ...?
2019-04-20 22:54:40 +00:00
lda #$A0
cmp #$CC
bne L2013
2019-12-09 02:16:21 +00:00
2019-04-21 03:33:26 +00:00
sta L239E + (L1272 - L1000) ; In relocated code
2019-04-20 22:54:40 +00:00
lda #$5C
sta L2285
sta L2336
2019-12-09 02:16:21 +00:00
L2013:
;; Clear stack
ldx #$FF
2019-04-20 22:54:40 +00:00
txs
2019-12-09 02:16:21 +00:00
;; Clear interpreter version
;; TODO: Remove this
lda #0
sta IBAKVER
sta IVERSION
2019-12-09 02:16:21 +00:00
;; Trash reset vector to cause reboot
2019-04-20 23:58:58 +00:00
sta ROMIN2
2019-04-20 22:54:40 +00:00
lda $03F3
eor #$FF
sta $03F4
2019-12-09 02:16:21 +00:00
;; Identify machine type
2019-12-09 06:43:07 +00:00
ldy #0
ldx #0
lda MACHID
2019-12-09 06:43:07 +00:00
and #%10001000 ; =0 if II+, >0 if IIe/IIc
beq :+
inx ; Not a II+
: cmp #%10001000 ; IIc ?
2019-12-09 02:16:21 +00:00
beq is_iic
2019-12-09 06:43:07 +00:00
lda L2003 ; Hack ???
2019-04-20 22:54:40 +00:00
cmp #$CC
2019-12-09 02:16:21 +00:00
beq is_iic
2019-12-09 06:43:07 +00:00
iny ; Not a IIc
is_iic: sty mach_type
2019-12-09 02:16:21 +00:00
2019-12-09 06:43:07 +00:00
;; Set case mask (II+ vs. IIe/IIc)
lda case_mask_table,x
sta case_mask
2019-12-09 02:16:21 +00:00
;; Check 40/80 columns; wrap strings if 40 columns.
lda MACHID
and #%00000010 ; 80 Column card?
2019-04-20 22:54:40 +00:00
lsr a
2019-12-09 06:43:07 +00:00
sta has_80col
2019-12-09 02:16:21 +00:00
bne init_80_col
;; Convert spaces to newlines if 40 Columns
2019-12-09 06:43:07 +00:00
lda #CR|$80
sta chain + (wrap1 - L1000)
sta chain + (wrap4 - L1000)
sta chain + (wrap5 - L1000)
sta chain + (wrap3 - L1000)
sta chain + (wrap2 - L1000)
2019-04-20 22:54:40 +00:00
inc L2095
inc L2099
2019-12-09 02:16:21 +00:00
bne :+
2019-04-21 03:33:26 +00:00
2019-12-09 02:16:21 +00:00
init_80_col:
jsr SLOT3_FIRMWARE
:
2019-04-21 03:33:26 +00:00
;; --------------------------------------------------
2019-04-21 03:33:26 +00:00
;; Copy to $1000
2019-12-09 02:16:21 +00:00
.proc RelocateChainingCode
ldy #0
2019-04-21 03:33:26 +00:00
;; End signature is two adjacent $FFs
2019-12-09 02:16:21 +00:00
loop:
2019-04-20 22:54:40 +00:00
L2072 := * + 2
lda L239E,y
cmp #$FF
bne L207E
2019-04-21 03:33:26 +00:00
2019-04-20 22:54:40 +00:00
L2079 := * + 2
2019-04-21 03:33:26 +00:00
ldx L239E+1,y
2019-04-20 22:54:40 +00:00
cpx #$FF
beq L208F
L207E:
L2080 := * + 2
sta L1000,y
iny
2019-12-09 02:16:21 +00:00
bne loop
2019-04-21 03:33:26 +00:00
2019-04-20 22:54:40 +00:00
inc L2072
inc L2079
inc L2080
2019-04-21 03:33:26 +00:00
2019-12-09 02:16:21 +00:00
bne loop ; always
.endproc
L208F: ldy #MessageCode::kInstall
jsr ShowMessage
2019-04-21 03:33:26 +00:00
2019-04-20 22:54:40 +00:00
L2095 := * + 1
ldy #$03
sty $22
L2099 := * + 1
ldy #$05
sty $23
2019-12-09 06:43:07 +00:00
jsr SetPrefixAndCheckSysFile
2019-04-20 22:54:40 +00:00
lda $1204
lsr a
2020-09-23 04:09:48 +00:00
sta year
jsr convert_to_bcd
2019-12-09 06:43:07 +00:00
sta bcd_year
2020-09-23 04:09:48 +00:00
;; --------------------------------------------------
;; Identify drive slot, needed for patch1
.scope
;; Search device list for Disk II device
ldx DEVCNT
2020-09-23 04:09:48 +00:00
: lda DEVLST,x
and #%00001111 ; low nibble = "device identification"
beq found ; 0 = Disk II
2019-04-20 22:54:40 +00:00
dex
2020-09-23 04:09:48 +00:00
bpl :-
;; Did not find Disk II, use default
lda default_slot
and #%00000111
bne :+
lda #6 ; default to slot 6 if was tweaked to 0
: asl a ; shift to 0sss0000 (like a unit number)
2019-04-20 22:54:40 +00:00
asl a
asl a
asl a
2020-09-23 04:09:48 +00:00
bne assign
2020-09-23 04:09:48 +00:00
found: lda DEVLST,x
2020-09-23 04:09:48 +00:00
assign: and #%01110000 ; slot
2019-04-20 22:54:40 +00:00
ora #$80
2020-09-23 04:09:48 +00:00
sta patch1_firmware_byte ; Set $C0nn address
.endscope
;; --------------------------------------------------
2019-04-21 19:20:19 +00:00
lda L11FE
2019-04-20 22:54:40 +00:00
and #$03
2020-09-23 04:09:48 +00:00
beq select_patch ; apply patch2 if IIc, patch1 otherwise
2019-04-20 22:54:40 +00:00
cmp #$02
bcs L20FE
2019-12-09 06:43:07 +00:00
lda mach_type
2020-09-23 04:09:48 +00:00
bne not_iic ; apply patch3
2019-12-09 06:43:07 +00:00
beq L20FE ; always
;;; ------------------------------------------------------------
kPatchLength = $38
kPatch1Offset = $0
kPatch2Offset = $38
kPatch3Offset = $70
2020-09-23 04:09:48 +00:00
;;; Patch1 - otherwise
;;; Patch2 - for mach_type = IIc
;;; Patch3
select_patch:
ldy #kPatch2Offset
2019-12-09 06:43:07 +00:00
lda mach_type
beq apply_patch ; if IIc
2019-12-09 00:18:50 +00:00
ldy #kPatch1Offset
jmp apply_patch
2019-04-20 22:54:40 +00:00
2019-04-21 19:20:19 +00:00
;; Patch bytes on top of driver
2019-12-09 06:43:07 +00:00
not_iic:
ldy #kPatch3Offset
2019-12-09 00:18:50 +00:00
apply_patch:
ldx #$00
: lda Patches,y
2019-04-20 22:54:40 +00:00
sta L2269,x
iny
inx
2019-12-09 02:16:21 +00:00
cpx #kPatchLength
2019-12-09 00:18:50 +00:00
bne :-
2019-04-21 19:20:19 +00:00
2020-09-23 04:09:48 +00:00
;;
L20FE: lda #2
sta tries
: jsr CalcMonthValidateDateTime
2019-04-20 22:54:40 +00:00
bcs L2111
2020-09-23 04:09:48 +00:00
dec tries
bpl :-
bmi install_clock ; always
tries: .byte 0
;;; ------------------------------------------------------------
2019-12-09 02:16:21 +00:00
L2110: .byte 0
2019-12-09 06:43:07 +00:00
L2111: lda mach_type
bne L2135 ; not IIc
2019-04-20 22:54:40 +00:00
lda L2110
bne L2135
inc L2110
ldy #$99
sty L228A
iny
sty L226A
sty L2274
2019-04-21 19:20:19 +00:00
lda L11FE
2019-04-20 22:54:40 +00:00
and #$03
beq L20FE
sty L229F
bne L20FE
2019-12-09 02:16:21 +00:00
L2135: ldy #MessageCode::kNoClock
2019-12-09 06:43:07 +00:00
sty msg_num
2019-12-09 02:16:21 +00:00
lda MACHID ; Check for clock card
2019-04-20 22:54:40 +00:00
ror a
2019-12-09 02:16:21 +00:00
bcc no_clock ; Bit 0 = 0 means no clock card
2019-04-20 23:58:58 +00:00
jsr MON_HOME
2019-04-20 22:54:40 +00:00
jmp L1000
2019-12-09 02:16:21 +00:00
no_clock:
lda #0
sta DATELO
sta DATELO+1
sta TIMELO
sta TIMELO+1
2019-12-09 02:16:21 +00:00
jmp ShowMessageAndMaybeChain
;; --------------------------------------------------
2019-04-20 22:54:40 +00:00
2020-09-23 04:09:48 +00:00
install_clock:
lda #OPC_JMP_abs
2019-04-20 23:58:58 +00:00
sta DATETIME
lda MACHID
ora #%00000001 ; has clock
sta MACHID
bit KBD
2019-04-20 22:54:40 +00:00
bmi L218C
2020-09-23 04:09:48 +00:00
2019-12-09 06:43:07 +00:00
lda month
2020-09-23 04:09:48 +00:00
cmp #11
2019-04-20 22:54:40 +00:00
bcc L2176
2019-04-21 19:20:19 +00:00
bit L11FE
2019-04-20 22:54:40 +00:00
bpl L2176
sta $1204
L2176: lda $1204
lsr a
cmp #$56
bcc L218C
lda DATELO
2019-04-20 22:54:40 +00:00
cmp $1203
lda DATELO+1
2019-04-20 22:54:40 +00:00
sbc $1204
bcs L21DF
2020-09-23 04:09:48 +00:00
L218C: bit KBDSTRB
2019-04-21 19:20:19 +00:00
rol L11FE
2020-09-23 04:09:48 +00:00
lda #3
2019-12-09 06:43:07 +00:00
cmp month
2019-04-21 19:20:19 +00:00
ror L11FE
2019-12-09 02:16:21 +00:00
2020-09-23 04:09:48 +00:00
;; --------------------------------------------------
2019-12-09 02:16:21 +00:00
;; Show current year prompt
2020-09-23 04:09:48 +00:00
.scope
show_year_prompt:
ldy #MessageCode::kCurrentYear
2019-12-09 02:16:21 +00:00
jsr ShowMessage
2019-12-09 06:43:07 +00:00
lda bcd_year ; 2-digit year
2019-04-20 23:58:58 +00:00
jsr PRBYTE
2019-12-09 02:16:21 +00:00
ldy #MessageCode::kOkPrompt
jsr ShowMessage
;; Wait for keypress
: jsr RDKEY
and #%11011111 ; lowercase --> uppercase
cmp #'Y'|$80
2020-09-23 04:09:48 +00:00
beq year_ok
2019-12-09 02:16:21 +00:00
cmp #'N'|$80
bne :-
;; Prompt for two digit year
ldy #MessageCode::kCurrentYear
jsr ShowMessage
jsr GetDigitKey ; Decade
2019-04-20 22:54:40 +00:00
asl a
asl a
asl a
asl a
2019-12-09 06:43:07 +00:00
sta bcd_year
2019-12-09 02:16:21 +00:00
jsr GetDigitKey ; Year
2019-04-20 22:54:40 +00:00
and #$0F
2019-12-09 06:43:07 +00:00
ora bcd_year
sta bcd_year
2019-12-09 02:16:21 +00:00
2020-09-23 04:09:48 +00:00
jmp show_year_prompt
.endscope
2019-04-20 22:54:40 +00:00
2020-09-23 04:09:48 +00:00
;; --------------------------------------------------
2019-12-09 02:16:21 +00:00
;; Current year is okay
2020-09-23 04:09:48 +00:00
year_ok:
lda $1204
jsr year_from_bcd
2019-12-09 06:43:07 +00:00
jsr InvokeDriver
2019-04-20 22:54:40 +00:00
jsr L111A
L21DF: lda RWRAM1
lda RWRAM1
lda DATETIME+1
2019-12-09 00:18:50 +00:00
sta install_ptr
2019-04-20 22:54:40 +00:00
clc
adc #$76
sta L22B1
lda DATETIME+2
2019-12-09 00:18:50 +00:00
sta install_ptr+1
2019-04-21 19:20:19 +00:00
adc #0
2019-04-20 22:54:40 +00:00
sta L22B2
;; Relocate clock driver
2019-12-09 00:18:50 +00:00
ldy #kClockRoutineMaxLength - 1
: lda Driver,y
install_ptr := * + 1
2019-04-20 22:54:40 +00:00
sta $F000,y
dey
2019-12-09 00:18:50 +00:00
bpl :-
;; Initialize the time (via driver)
2019-04-20 23:58:58 +00:00
jsr DATETIME
lda ROMIN2
2019-12-09 00:18:50 +00:00
;; Chain
2019-04-20 22:54:40 +00:00
jmp L1000
2020-09-23 04:09:48 +00:00
;;; ------------------------------------------------------------
;;; Convert year from BCD
;;; Input: bcd_year
;;; Output: year
;;; $06 is trashed
.proc year_from_bcd
lda bcd_year
2019-04-20 22:54:40 +00:00
pha
lsr a
lsr a
lsr a
lsr a
sta $06
asl a
asl a
adc $06
asl a
sta $06
pla
and #$0F
clc
adc $06
2020-09-23 04:09:48 +00:00
sta year
2019-04-20 22:54:40 +00:00
rts
2020-09-23 04:09:48 +00:00
.endproc
;;; ------------------------------------------------------------
;;; Convert to BCD
;;; Input: A = number
;;; Output: A = BCD number
;;; $06 is trashed
2019-04-20 22:54:40 +00:00
2020-09-23 04:09:48 +00:00
.proc convert_to_bcd
2019-12-09 06:43:07 +00:00
ldx #$FF
: inx
2019-04-20 22:54:40 +00:00
sec
2019-12-09 06:43:07 +00:00
sbc #10
bcs :-
adc #10
2019-04-20 22:54:40 +00:00
sta $06
txa
asl a
asl a
asl a
asl a
ora $06
rts
2019-12-09 06:43:07 +00:00
.endproc
;;; ------------------------------------------------------------
;;; Returns with carry set if date is not valid.
2019-04-20 22:54:40 +00:00
2019-12-09 06:43:07 +00:00
.proc CalcMonthValidateDateTime
jsr InvokeDriver
;; Check month
lda DATELO+1
2019-04-20 22:54:40 +00:00
ror a
lda DATELO
2019-04-20 22:54:40 +00:00
rol a
rol a
rol a
rol a
and #$0F
sec
2019-12-09 06:43:07 +00:00
beq done ; Month = 0 is failure
cmp #13
bcs done ; Month >= 13 is failure
sta month
;; Check hour
lda TIMELO+1
2019-12-09 06:43:07 +00:00
cmp #24
bcs done ; Hour >= 24 is failure
;; Check minute
lda TIMELO
2019-12-09 06:43:07 +00:00
cmp #60 ; Min >= 60 is failure
done: rts
.endproc
2019-04-20 22:54:40 +00:00
;;; ============================================================
;;; Clock Driver (Relocatable)
;;; ============================================================
2019-12-09 00:18:50 +00:00
Driver: cld
cld ; TODO: Remove duplicate CLD
2019-04-20 22:54:40 +00:00
php
sei
L2269:
L226A := * + 1
lda PORT2_ACIA_COMMAND
2019-12-09 02:16:21 +00:00
pha ; Save command register
2019-04-20 22:54:40 +00:00
ldy #$03
ldx #$16
2019-12-09 02:16:21 +00:00
lda #%00001000
2019-04-20 22:54:40 +00:00
L2273:
L2274 := * + 1
sta PORT2_ACIA_COMMAND
2019-04-20 22:54:40 +00:00
L2276: dex
bne L2276
2019-12-09 06:43:07 +00:00
eor #%00001010
2019-04-20 22:54:40 +00:00
ldx #$09
dey
bne L2273
ldy #$04
bne L2289
L2284:
L2285 := * + 1
lda #$5D
2019-12-09 02:16:21 +00:00
L2286: dec ; 65C02
2019-04-20 22:54:40 +00:00
bne L2286
L2289:
L228A := * + 1
lda PORT2_ACIA_STATUS
2019-04-20 22:54:40 +00:00
rol a
rol a
rol a
ror $0200,x
lsr $0201,x
dey
bne L2284
ldy #$04
dex
bpl L2284
2019-12-09 02:16:21 +00:00
pla ; Restore command register
2019-04-20 22:54:40 +00:00
L229F := * + 1
sta PORT2_ACIA_COMMAND
2019-04-20 22:54:40 +00:00
ldx #$06
2019-12-09 00:18:50 +00:00
2019-04-20 22:54:40 +00:00
L22A3: lda $0201,x
2019-12-09 00:18:50 +00:00
: dec $0200,x
2019-04-20 22:54:40 +00:00
bmi L22B0
clc
2019-12-09 00:18:50 +00:00
adc #10
bcc :-
2019-04-20 22:54:40 +00:00
L22B0:
L22B1 := * + 1
L22B2 := * + 2
ldy L22DB,x
sta $BF30,y ; Modifying DEVLST ???
2019-04-20 22:54:40 +00:00
dex
dex
bne L22A3
2019-12-09 00:18:50 +00:00
2020-09-23 04:09:48 +00:00
;; --------------------------------------------------
;; Assign month in DATELO/DATEHI
L22BA: lda $0200 ; top nibble is month
asl a ; DATELO = mmmddddd
and #%11100000
ora DATELO
sta DATELO
2020-09-23 04:09:48 +00:00
year := * + 1
lda #86 ; default = 1986
rol a ; DATEHI = yyyyyyym, shift in month bit
sta DATELO+1
2020-09-23 04:09:48 +00:00
;; --------------------------------------------------
2019-04-20 22:54:40 +00:00
ldy #$01
L22CE: lda $0208,y
ora #$B0
sta $020F,y
dey
bpl L22CE
dex
L22DB := * + 1
bne L22BA
plp
rts
.byte $FF
.byte $63
.byte $FF
.byte $62
2019-04-21 19:20:19 +00:00
;; End of relocated clock driver
;;; ============================================================
;; Patches applied to driver (length $38, at offset 0)
2019-12-09 00:18:50 +00:00
Patches:
2019-04-21 19:20:19 +00:00
;; Patch #1
patch1:
2020-09-23 04:09:48 +00:00
patch1_firmware_byte := * + 1
lda $C0E0 ; Set to $C0x0, n=slot+8
lda DISVBL
2019-04-20 22:54:40 +00:00
ldy #$01
ldx #$16
L22EC: dex
bne L22EC
lda DISVBL,y
2019-04-20 22:54:40 +00:00
ldx #$0B
dey
bpl L22EC
L22F7: dex
bne L22F7
ldx #$09
ldy #$04
bne L2307
L2300: lda #$5D
sec
L2303: sbc #$01
bne L2303
L2307: lda MOUSE_BTN
2019-04-20 22:54:40 +00:00
rol a
ror $0200,x
lsr $0201,x
nop
dey
bne L2300
ldy #$04
dex
bpl L2300
2019-12-09 00:18:50 +00:00
.assert * - patch1 = kPatchLength, error, "Patch length"
2019-04-21 19:20:19 +00:00
;; --------------------------------------------------
;; Patch #2
patch2:
2019-12-09 00:18:50 +00:00
.assert * = Patches + kPatch2Offset, error, "Offset changed"
2019-04-21 19:20:19 +00:00
lda PORT2_ACIA_COMMAND
2019-04-20 22:54:40 +00:00
nop
ldy #$03
ldx #$16
2019-12-09 02:16:21 +00:00
lda #%00000010
L2324: sta PORT2_ACIA_COMMAND
2019-04-20 22:54:40 +00:00
L2327: dex
bne L2327
eor #$0A
ldx #$09
dey
bne L2324
ldy #$04
bne L233A
L2335:
L2336 := * + 1
lda #$5D
2019-12-09 02:16:21 +00:00
L2337: dec ; 65C02
2019-04-20 22:54:40 +00:00
bne L2337
L233A: lda PORT2_ACIA_STATUS
2019-04-20 22:54:40 +00:00
eor #$20
rol a
rol a
rol a
ror $0200,x
lsr $0201,x
dey
bne L2335
ldy #$04
dex
bpl L2335
2019-04-21 19:20:19 +00:00
2019-04-20 22:54:40 +00:00
nop
nop
2019-04-21 19:20:19 +00:00
2019-12-09 00:18:50 +00:00
.assert * - patch2 = kPatchLength, error, "Patch length"
2019-04-21 19:20:19 +00:00
;; --------------------------------------------------
;; Patch #3
patch3:
2019-12-09 00:18:50 +00:00
.assert * = Patches + kPatch3Offset, error, "Offset changed"
2019-04-21 19:20:19 +00:00
lda ENVBL
sta ENBXY
sta X0EDGE1
2019-04-20 22:54:40 +00:00
nop
nop
nop
nop
lda DISXY
2019-04-20 22:54:40 +00:00
ldx #$15
L2364: dex
bne L2364
ldx #$09
L2369: ldy #$04
L236B: lda MOUSE_BTN
2019-04-20 22:54:40 +00:00
rol a
ror $0200,x
lsr $0201,x
sta X0EDGE2
2019-04-20 22:54:40 +00:00
nop
nop
nop
nop
nop
nop
sta X0EDGE1
2019-04-20 22:54:40 +00:00
dey
bne L236B
dex
bpl L2369
lda DISVBL
2019-12-09 00:18:50 +00:00
.assert * - patch3 = kPatchLength, error, "Patch length"
2019-04-21 19:20:19 +00:00
;;; ============================================================
2019-12-09 06:43:07 +00:00
.proc InvokeDriver
jsr Driver
2019-04-20 22:54:40 +00:00
rts
2019-12-09 06:43:07 +00:00
.endproc
2019-04-20 22:54:40 +00:00
2019-12-09 02:16:21 +00:00
;;; ------------------------------------------------------------
;;; Prompt, loop until digit key is pressed
.proc GetDigitKey
jsr RDKEY
2019-04-21 19:20:19 +00:00
cmp #'0' | $80
2019-12-09 02:16:21 +00:00
bcc GetDigitKey
2019-04-21 19:20:19 +00:00
cmp #('9'+1) | $80
2019-12-09 02:16:21 +00:00
bcs GetDigitKey
2019-04-20 23:58:58 +00:00
jmp COUT
2019-12-09 02:16:21 +00:00
.endproc
;;; ------------------------------------------------------------
2019-04-20 22:54:40 +00:00
2019-12-09 06:43:07 +00:00
case_mask_table:
.byte %11011111 ; map lowercase to uppercase
.byte %11111111 ; preserve case
2019-04-21 03:33:26 +00:00
chain:
2019-04-20 22:54:40 +00:00
L239E:
2019-04-21 03:33:26 +00:00
;; Relocated to $1000
;;; ============================================================
;;; Chaining code???
;;; ============================================================
.org $1000
L1000:
2019-04-20 22:54:40 +00:00
ldy #$00
2019-12-09 02:34:44 +00:00
sty read_block_block_num+1
2019-04-20 22:54:40 +00:00
iny
sty $04
iny
2019-12-09 02:34:44 +00:00
sty read_block_block_num
2019-04-20 22:54:40 +00:00
jsr L119F
lda $1C23
sta $02
lda $1C24
sta $03
lda #$2B
sta $00
lda #$1C
sta $01
2019-04-21 03:33:26 +00:00
L1021: ldy #$10
2019-04-20 22:54:40 +00:00
lda ($00),y
cmp #$FF
2019-04-21 03:33:26 +00:00
bne L10A8
2019-04-20 22:54:40 +00:00
ldy #$00
lda ($00),y
and #$30
2019-04-21 03:33:26 +00:00
beq L10A8
2019-04-20 22:54:40 +00:00
lda ($00),y
and #$0F
sta $05
tay
2019-04-21 19:20:19 +00:00
ldx #strlen_str_system - 1
2019-04-21 03:33:26 +00:00
L103A: lda ($00),y
2019-04-21 19:20:19 +00:00
cmp str_system,x
2019-04-21 03:33:26 +00:00
bne L10A8
2019-04-20 22:54:40 +00:00
dey
dex
2019-04-21 03:33:26 +00:00
bpl L103A
2019-04-21 19:20:19 +00:00
ldy #strlen_str_clock_system
2019-04-21 03:33:26 +00:00
L1047: lda ($00),y
2019-04-21 19:20:19 +00:00
cmp str_clock_system,y
2019-04-21 03:33:26 +00:00
bne L1053
2019-04-20 22:54:40 +00:00
dey
2019-04-21 03:33:26 +00:00
bne L1047
beq L10A8
L1053: lda $05
2019-04-20 22:54:40 +00:00
sta $121D
sta $0280
inc $05
2019-12-09 06:43:07 +00:00
lda msg_num
2019-04-20 22:54:40 +00:00
cmp #$07
2019-04-21 03:33:26 +00:00
beq L1070
2019-04-20 22:54:40 +00:00
ldy #$03
jsr L10E5
2019-12-09 06:43:07 +00:00
lda mach_type
2019-04-21 03:33:26 +00:00
beq L106D
2019-04-20 22:54:40 +00:00
iny
2019-12-09 02:16:21 +00:00
L106D: jsr ShowMessage
L1070: ldy #MessageCode::kRunning
jsr ShowMessage
2019-04-20 22:54:40 +00:00
ldy #$01
2019-04-21 03:33:26 +00:00
L1077: lda ($00),y
2019-04-20 22:54:40 +00:00
sta $121D,y
sta $0280,y
ora #$80
2019-04-20 23:58:58 +00:00
jsr COUT
2019-04-20 22:54:40 +00:00
iny
cpy $05
2019-04-21 03:33:26 +00:00
bne L1077
2019-12-09 06:43:07 +00:00
jsr LoadSysFile
2019-04-20 22:54:40 +00:00
lda #$00
sta WNDTOP
2019-04-20 22:54:40 +00:00
lda #$18
sta WNDBTM
2019-04-20 23:58:58 +00:00
jsr MON_HOME
2019-12-09 06:43:07 +00:00
lda has_80col
2019-04-21 03:33:26 +00:00
beq L10A5
2019-04-20 22:54:40 +00:00
lda #$15
2019-04-20 23:58:58 +00:00
jsr COUT
2019-04-20 22:54:40 +00:00
lda #$8D
2019-04-20 23:58:58 +00:00
jsr COUT
2019-04-21 03:33:26 +00:00
L10A5: jmp L2000
2019-04-20 22:54:40 +00:00
2019-04-21 03:33:26 +00:00
L10A8: clc
2019-04-20 22:54:40 +00:00
lda $00
adc $02
sta $00
lda $01
adc #$00
sta $01
inc $04
lda $04
cmp $03
2019-04-21 03:33:26 +00:00
bne L10E2
2019-04-20 22:54:40 +00:00
ldy $1C02
2019-12-09 02:34:44 +00:00
sty read_block_block_num
2019-04-20 22:54:40 +00:00
lda $1C03
2019-12-09 02:34:44 +00:00
sta read_block_block_num+1
2019-12-09 02:16:21 +00:00
bne :+
2019-04-20 22:54:40 +00:00
tya
2019-12-09 02:16:21 +00:00
bne :+
ldy #MessageCode::kNoSysFile
jmp ShowMessageAndMaybeChain
2019-04-20 22:54:40 +00:00
2019-12-09 02:16:21 +00:00
: jsr L119F
2019-04-20 22:54:40 +00:00
lda #$00
sta $04
lda #$04
sta $00
lda #$1C
sta $01
2019-04-21 03:33:26 +00:00
L10E2: jmp L1021
2019-04-20 22:54:40 +00:00
2019-04-21 19:20:19 +00:00
L10E5: lda L11FE
2019-04-20 22:54:40 +00:00
and #$03
2019-04-21 03:33:26 +00:00
bne L10EE
2019-04-20 22:54:40 +00:00
ldy #$09
2019-04-21 03:33:26 +00:00
L10EE: rts
2019-04-20 22:54:40 +00:00
2019-12-09 02:16:21 +00:00
;;; ------------------------------------------------------------
2019-12-09 06:43:07 +00:00
;;; Call with message number in Y.
;;; Clears screen unless kOkPromptor or kRunning.
2019-12-09 02:16:21 +00:00
.proc ShowMessage
lda message_table_lo,y
2019-12-09 06:43:07 +00:00
sta ptr
2019-12-09 02:16:21 +00:00
lda message_table_hi,y
2019-12-09 06:43:07 +00:00
sta ptr+1
2019-04-21 19:20:19 +00:00
2019-12-09 06:43:07 +00:00
cpy #MessageCode::kOkPrompt
beq :+
cpy #MessageCode::kRunning
beq :+
jsr MON_HOME
: ldy #0
ptr := *+1
loop: lda $F000,y
beq done
cmp #'`'|$80 ; Not lower case?
bcc :+
and case_mask
: jsr COUT
2019-04-20 22:54:40 +00:00
iny
2019-12-09 06:43:07 +00:00
bne loop
done: rts
2019-12-09 02:16:21 +00:00
.endproc
;;; ------------------------------------------------------------
2019-04-20 22:54:40 +00:00
2019-12-09 02:34:44 +00:00
L111A: lda #$07 ; SET_FILE_INFO count
sta file_info_params
2019-04-20 22:54:40 +00:00
ldy #$03
2019-04-21 03:33:26 +00:00
L1121: lda DATELO,y
2019-04-20 22:54:40 +00:00
sta $1203,y
dey
2019-04-21 03:33:26 +00:00
bpl L1121
2019-04-20 23:58:58 +00:00
lda #OPC_RTS
sta DATETIME
2019-12-09 02:34:44 +00:00
PRODOS_CALL MLI_SET_FILE_INFO, file_info_params
bne :+
2019-04-20 22:54:40 +00:00
lda #OPC_JMP_abs
sta DATETIME
2019-04-20 22:54:40 +00:00
rts
: cmp #$2B
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
ldy #MessageCode::kRemoveWriteProtect
jsr ShowMessage
2019-04-20 22:54:40 +00:00
jsr L11C3
2019-04-20 23:58:58 +00:00
jsr RDKEY
2019-04-20 22:54:40 +00:00
jmp L111A
2019-12-09 06:43:07 +00:00
;;; ------------------------------------------------------------
.proc LoadSysFile
PRODOS_CALL MLI_OPEN, open_params
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
2019-12-09 02:34:44 +00:00
lda open_params_ref_num
sta read_params_ref_num
2019-04-21 00:03:10 +00:00
2019-12-09 02:34:44 +00:00
PRODOS_CALL MLI_READ, read_params
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
2019-04-21 00:03:10 +00:00
2019-12-09 02:34:44 +00:00
PRODOS_CALL MLI_CLOSE, close_params
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
2019-04-20 22:54:40 +00:00
rts
2019-12-09 06:43:07 +00:00
.endproc
;;; ------------------------------------------------------------
2019-04-20 22:54:40 +00:00
2019-12-09 06:43:07 +00:00
.proc SetPrefixAndCheckSysFile
lda DEVNUM ; Most recently accessed device
2019-12-09 02:34:44 +00:00
sta on_line_unit_num
sta read_block_unit_num
2019-04-21 00:03:10 +00:00
2019-12-09 02:34:44 +00:00
PRODOS_CALL MLI_ON_LINE, on_line_params
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
lda $120C
2019-04-20 22:54:40 +00:00
and #$0F
tay
iny
sty $120B
lda #'/'
2019-04-20 22:54:40 +00:00
sta $120C
2019-04-21 00:03:10 +00:00
2019-12-09 02:34:44 +00:00
PRODOS_CALL MLI_SET_PREFIX, set_prefix_params
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
2019-04-21 00:03:10 +00:00
2019-12-09 02:34:44 +00:00
PRODOS_CALL MLI_GET_FILE_INFO, file_info_params
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
rts
2019-12-09 06:43:07 +00:00
.endproc
;;; ------------------------------------------------------------
2019-12-09 02:34:44 +00:00
L119F: PRODOS_CALL MLI_READ_BLOCK, read_block_params
2019-12-09 02:16:21 +00:00
bne ShowDiskErrorAndChain
2019-04-20 22:54:40 +00:00
rts
2019-12-09 02:16:21 +00:00
;;; ------------------------------------------------------------
.proc ShowDiskErrorAndChain
ldy #MessageCode::kDiskError
;; fall through
.endproc
;;; Show message and chain to next system file, unless
;;; kNoClock (in which case: hang)
.proc ShowMessageAndMaybeChain
2019-12-09 06:43:07 +00:00
sty msg_num
2019-12-09 02:16:21 +00:00
jsr ShowMessage
2019-04-20 22:54:40 +00:00
jsr L11C3
2019-12-09 06:43:07 +00:00
lda msg_num
2019-12-09 02:16:21 +00:00
cmp #MessageCode::kNoClock
bne loop
2019-04-20 23:58:58 +00:00
lda #OPC_RTS
sta DATETIME
2019-04-20 22:54:40 +00:00
jmp L1000
2019-12-09 02:16:21 +00:00
loop: jmp loop ; Infinite loop!
.endproc
;;; ------------------------------------------------------------
2019-04-20 22:54:40 +00:00
2019-04-21 03:33:26 +00:00
L11C3: lda #$20
2019-04-20 22:54:40 +00:00
sta $0C
2019-04-21 03:33:26 +00:00
L11C7: lda #$02
2019-04-20 23:58:58 +00:00
jsr WAIT
sta SPKR
2019-04-20 22:54:40 +00:00
lda #$24
2019-04-20 23:58:58 +00:00
jsr WAIT
sta SPKR
2019-04-20 22:54:40 +00:00
dec $0C
2019-04-21 03:33:26 +00:00
bne L11C7
2019-04-20 22:54:40 +00:00
rts
2019-12-09 02:34:44 +00:00
;;; ------------------------------------------------------------
;;; MLI call params
on_line_params:
.byte 2 ; param_count
on_line_unit_num:
.byte $60 ; unit_num
.addr $120C ; data_buffer
set_prefix_params:
.byte 1 ; param_count
.addr $120B ; pathname
read_block_params:
.byte 3 ; param_count
read_block_unit_num:
.byte $60 ; unit_num
.addr $1C00 ; data_buffer
read_block_block_num:
.word $0000 ; block_num
open_params:
.byte 3 ; param_count
.addr $121D ; pathname
.addr $1C00 ; io_buffer
open_params_ref_num:
.byte 0 ; ref_num
read_params:
.byte 4 ; param_count
read_params_ref_num:
.byte 0 ; ref_num
.addr $2000 ; data_buffer
.word $9F00 ; request_count
.word 0 ; trans_count
close_params:
.byte 1 ; param_count
.byte 0 ; ref_num
file_info_params:
.byte $A ; param_count
.addr str_clock_system ; pathname
.byte 0 ; access
.byte 0 ; file_type
;; ...
;;; ------------------------------------------------------------
;;; Misc variables
2019-12-09 02:16:21 +00:00
2019-12-09 02:34:44 +00:00
L11FE: .byte 0 ; ???
2019-12-09 06:43:07 +00:00
bcd_year: .byte 0 ; 2-digit (shared)
2019-12-09 02:34:44 +00:00
L1200:
;; buffer for variables, filename
2019-04-21 19:20:19 +00:00
.res 46, 0
2019-04-20 23:08:35 +00:00
2019-04-21 19:20:19 +00:00
str_system:
2019-04-20 23:08:35 +00:00
.byte ".SYSTEM"
2019-04-21 19:20:19 +00:00
strlen_str_system = .strlen(".SYSTEM")
2019-04-20 23:08:35 +00:00
2019-04-21 19:20:19 +00:00
str_clock_system:
2019-04-20 23:33:27 +00:00
PASCAL_STRING "CLOCK.SYSTEM"
2019-04-21 19:20:19 +00:00
strlen_str_clock_system = .strlen("CLOCK.SYSTEM")
2019-04-20 23:08:35 +00:00
2019-12-09 02:34:44 +00:00
;;; ------------------------------------------------------------
;;; Message strings
2019-12-09 02:16:21 +00:00
message_table_lo:
.byte <msgInstall,<msgNoSysFile,<msgDiskError,<msgIIc
.byte <msgIIe,<msgCurrentYear,<msgOkPrompt,<msgNoClock
.byte <msgRunning,<msgSeikoIIc,<msgSeikoIIe,<msgRemoveWriteProtect
2019-04-20 23:33:27 +00:00
2019-12-09 02:16:21 +00:00
message_table_hi:
.byte >msgInstall,>msgNoSysFile,>msgDiskError,>msgIIc
.byte >msgIIe,>msgCurrentYear,>msgOkPrompt,>msgNoClock
.byte >msgRunning,>msgSeikoIIc,>msgSeikoIIe,>msgRemoveWriteProtect
2019-04-21 03:33:26 +00:00
2019-12-09 02:16:21 +00:00
msgInstall:
HIASCII "Install Clock Driver 1.5"
L1272: HIASCII " " ; Modified at launch
HIASCII "\rCopyright (c) 1986 "
wrap1 := *-1
HIASCIIZ "Creative Peripherals Unlimited, Inc."
2019-12-09 02:16:21 +00:00
msgNoSysFile:
2019-04-20 23:33:27 +00:00
HIASCIIZ "Unable to find a '.SYSTEM' file!"
2019-12-09 02:16:21 +00:00
msgRemoveWriteProtect:
HIASCII "Remove Write-Protect tab, "
wrap2 := *-1
HIASCIIZ "Replace disk, and Press a key..."
2019-12-09 02:16:21 +00:00
msgDiskError:
2019-04-20 23:33:27 +00:00
HIASCIIZ "Disk error! Unable to continue!!!"
2019-12-09 02:16:21 +00:00
msgSeikoIIc:
HIASCII "Seiko "
msgIIc: HIASCIIZ "//c driver installed. "
wrap4 := *-2
2019-12-09 02:16:21 +00:00
msgSeikoIIe:
HIASCII "Seiko "
msgIIe: HIASCIIZ "//e driver installed. "
wrap5 := *-2
2019-12-09 02:16:21 +00:00
msgCurrentYear:
HIASCIIZ "Current year is 19"
msgOkPrompt:
HIASCII "."
wrap3 := *
HIASCIIZ " OK? (Y/N) "
2019-12-09 02:16:21 +00:00
msgNoClock:
2019-04-20 23:33:27 +00:00
HIASCIIZ "No clock! Driver not installed...\r"
2019-12-09 02:16:21 +00:00
msgRunning:
2019-04-20 23:33:27 +00:00
HIASCIIZ "Running "
2019-04-21 03:33:26 +00:00
;; Signature for end of range to copy to $1000
.byte $FF,$FF
;;; ============================================================
.byte $00,$04,$00
2019-04-20 23:33:27 +00:00
.byte $FF,$00,$FF,$00,$FF,$00,$00,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$00
.byte $FF,$00,$FF,$00,$FF,$00,$FF,$65
.byte $00,$FF,$00,$FF,$00,$FF,$00,$FF
.byte $00,$FF,$00,$FF,$00,$FF,$00,$FF
.byte $00,$FF,$00,$FF,$00,$FF,$00,$FF
.byte $00