mirror of
https://github.com/a2-4am/passport.git
synced 2024-12-22 04:29:59 +00:00
add support for LSR6A+CMP08 JMP0600 variant [fixes Broadsides rev. 4]
This commit is contained in:
parent
161ff58b8d
commit
6213b948f8
@ -89,11 +89,17 @@
|
|||||||
!byte $AA,$96,$AA,$D5,$2C,$AD,$0B,$F0,$DE,$AA,$D5,$2C
|
!byte $AA,$96,$AA,$D5,$2C,$AD,$0B,$F0,$DE,$AA,$D5,$2C
|
||||||
|
|
||||||
.start
|
.start
|
||||||
|
; patches common to all known variants
|
||||||
lda #<.jmp600multi
|
lda #<.jmp600multi
|
||||||
ldy #>.jmp600multi
|
ldy #>.jmp600multi
|
||||||
ldx #12
|
ldx #12
|
||||||
jsr multimodify
|
jsr multimodify
|
||||||
|
|
||||||
|
; some variants have a secondary RWTS with an address
|
||||||
|
; prologue entry point at $BC56 instead of $B944
|
||||||
|
; note: these patches only affect the read routines
|
||||||
|
; and thus will only work if the disk either supports
|
||||||
|
; writes to unprotected disks or never writes anything
|
||||||
lda #$0C
|
lda #$0C
|
||||||
ldx #$61
|
ldx #$61
|
||||||
ldy #$09
|
ldy #$09
|
||||||
@ -110,5 +116,29 @@
|
|||||||
jsr multimodify
|
jsr multimodify
|
||||||
|
|
||||||
.notbc56
|
.notbc56
|
||||||
|
; variant seen on some versions of Broadsides
|
||||||
|
; that uses LSR6A+CMP08 protection with an
|
||||||
|
; explicit epilogue check
|
||||||
|
lda #$0C
|
||||||
|
ldx #$AC
|
||||||
|
ldy #$09
|
||||||
|
jsr compare
|
||||||
|
!byte $BD,$8C,$C0
|
||||||
|
!byte $10,$FB
|
||||||
|
!byte $C9,$AF
|
||||||
|
!byte $D0,$14
|
||||||
|
bcs .notcmpaf
|
||||||
|
|
||||||
|
jsr PrintByID
|
||||||
|
!byte s_lsr6a
|
||||||
|
|
||||||
|
jsr PrintByID
|
||||||
|
!byte s_bcs08
|
||||||
|
|
||||||
|
ldx #$C9
|
||||||
|
jsr modify1
|
||||||
|
!byte $18
|
||||||
|
|
||||||
|
.notcmpaf
|
||||||
.exit
|
.exit
|
||||||
}
|
}
|
||||||
|
@ -387,7 +387,7 @@ StringTableHigh ; must be kept in sync with constants in enid.a
|
|||||||
.passport
|
.passport
|
||||||
!text "Passport ",$00
|
!text "Passport ",$00
|
||||||
.header
|
.header
|
||||||
!text "@",s_passport,"by 4am@",s_space7,"@",s_space7," 2023-12-06",$00
|
!text "@",s_passport,"by 4am@",s_space7,"@",s_space7," 2023-12-07",$00
|
||||||
.bar9
|
.bar9
|
||||||
!text "_________",$00
|
!text "_________",$00
|
||||||
.bar18
|
.bar18
|
||||||
|
Loading…
Reference in New Issue
Block a user