This commit is contained in:
Peter Ferrie 2019-03-09 18:43:07 -08:00
parent 41b1ff94fa
commit 969e2dfdf8
3 changed files with 2 additions and 18 deletions

View File

@ -137,16 +137,12 @@ PrintByID
;
s_header = $00
s_mainmenu = $01
s_bootantim = $02
s_bootspira = $03
s_unkboot = $04
STRINGCOUNT = $05
s_unkboot = $02
STRINGCOUNT = $03
StringTable
!word @header
!word @mainmenu
!word @bootantim
!word @bootspira
!word @unkboot
@header
@ -158,12 +154,6 @@ StringTable
!text $8D
!text " and press <RETURN> to boot",$8D,$00
@bootantim
!text "Found Anti-M boot sector",$00
@bootspira
!text "Found SpiraDisc boot sector",$00
@unkboot
!text "Unrecognised boot sector",$8D
!text "Exiting",$00

View File

@ -10,9 +10,6 @@ IDAntiM
!byte $D0,$F7 ;BNE *-7
bcs @exit
lda #s_bootantim
jsr PrintByID
; patch code to regain control after it loads 1 sector into $0300
lda #<@callback1
sta $0838

View File

@ -20,9 +20,6 @@ IDSpiraDisc
!byte $D0,$01 ;BNE *+$03
bcs @exit
lda #s_bootspira
jsr PrintByID
; patch code to regain control after it loads sectors into $B500+
lda #<@callback1
sta $0870