botdemo: fix credits some more

This commit is contained in:
Vince Weaver 2020-11-17 15:59:06 -05:00
parent a96e78ac0f
commit fe5617e48f
3 changed files with 28 additions and 13 deletions

View File

@ -91,15 +91,9 @@ actual_credits:
lda seconds
cmp #0
beq next_credit
cmp #4
beq next_credit
cmp #8
beq next_credit
cmp #12
beq next_credit
cmp #16
; increment on multiples of 4 seconds
and #$3
beq next_credit
bne done_credits
@ -109,6 +103,10 @@ next_credit:
; write the credits
write_credits:
lda which_credit
cmp #7
beq done_credits
ldx #4
outer_credit_loop:
@ -159,9 +157,9 @@ done_credits:
rts
credits_address:
.word $a50+12
.word $ad0+12
.word $b50+12
.word $bd0+12
credits_table:
.word credits1
@ -169,6 +167,8 @@ credits_table:
.word credits3
.word credits4
.word credits5
.word credits6
.word credits7
credits1:
@ -183,7 +183,7 @@ credits2:
credits3:
.byte " Algorithms: "
.byte " Qkumba "
.byte " F. Sanglard "
.byte " Hellmood "
credits4:
@ -192,6 +192,16 @@ credits4:
.byte " Kay Savetz "
credits5:
.byte " Magic: "
.byte " "
.byte " qkumba "
credits6:
.byte " Greets: "
.byte " 4am "
.byte " French Touch "
credits7:
.byte " _ "
.byte " _|(_ _ "
.byte " (_| _) | "

View File

@ -7,6 +7,6 @@
45 PRINT " FIRST TESTED ON THE @APPLEIIBOT"
50 PRINT
60 HTAB 15:PRINT " _ "
70 HTAB 15:PRINT " _: :_ _"
80 HTAB 15:PRINT ":_: _: : "
70 HTAB 15:PRINT " _: (_ _"
80 HTAB 15:PRINT "(_: _) : "
90 PRINT CHR$(4)"BRUN LOADER"

View File

@ -61,6 +61,11 @@ exit_interrupt:
no_tick_oflo:
; if done, no timeout
lda command
cmp #DONE
beq handle_credits
; trigger at timeout value
lda seconds