remove unused demuffin mode

This commit is contained in:
4am 2021-04-08 10:50:14 -04:00
parent 63b250d00e
commit ddc2f67b63
3 changed files with 9 additions and 19 deletions

View File

@ -524,14 +524,7 @@ nextsector
bcs .linkread
Pass
bit gMode
bmi .passwrite
lda #s_pass
bne .passprint ; always branches
.passwrite
bvs .passcrack
lda #s_passdemuf
bne .passprint ; always branches
.passcrack
bpl .passverify
lda gUsingRAMDisk
bne +
lda #s_writing
@ -543,6 +536,9 @@ Pass
ldx gPatchCount
beq .passprint
lda #s_passcrack
!byte $2C ; hide next 2 bytes
.passverify
lda #s_pass
.passprint
jsr PrintByID
jmp TheEnd

View File

@ -5,7 +5,6 @@
;
!ct "lcase.ct"
k_verify = "V"
k_demuffin = "D"
k_crack = "C"
k_slot = "S"
k_quit = "Q"
@ -32,7 +31,7 @@ StringTableLow
!byte <.sync
!byte <.optbad
!byte <.passver
!byte <.passdemuf
!byte <.badblock
!byte <.passcrack
!byte <.passcrack0
!byte <.fail
@ -137,7 +136,6 @@ StringTableLow
!byte <.cmpnopnop
!byte <.tsr
!byte <.idinfo
!byte <.badblock
StringTableHigh
!byte >.header
@ -156,7 +154,7 @@ StringTableHigh
!byte >.sync
!byte >.optbad
!byte >.passver
!byte >.passdemuf
!byte >.badblock
!byte >.passcrack
!byte >.passcrack0
!byte >.fail
@ -261,7 +259,6 @@ StringTableHigh
!byte >.cmpnopnop
!byte >.tsr
!byte >.idinfo
!byte >.badblock
;
; Text can contain substitution strings, which
@ -288,7 +285,7 @@ StringTableHigh
; can be set directly before calling PrintByID.
;
.header
!text "Passport by 4am 2021-04-07",$00
!text "Passport by 4am 2021-04-08",$00
.mainmenu
!text "________________________________________",$8D,$8D,$8D,$8D,$8D,$8D,$8D,$8D
!text " "
@ -339,8 +336,6 @@ StringTableHigh
!text "T%t,S%s is unreadable (ignoring)",$8D,$00
.passver
!text "Verification complete. The disk is good.",$8D,$00
.passdemuf
!text "Demuffin complete. ",$00
.passcrack
!text "Crack complete. ",$00
.passcrack0

View File

@ -18,7 +18,7 @@ s_f7 = $0C
s_sync = $0D
s_optbad = $0E
s_pass = $0F
s_passdemuf = $10
s_badblock = $10
s_passcrack = $11
s_passcrack0 = $12
s_fail = $13
@ -123,5 +123,4 @@ s_sve = $75
s_cmpnopnop = $76
s_tsr = $77
s_idinfo = $78
s_badblock = $79
STRINGCOUNT = $7A
STRINGCOUNT = $79