mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-05 21:34:30 +00:00
botdemo: fix credits some more
This commit is contained in:
parent
a96e78ac0f
commit
fe5617e48f
@ -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 " (_| _) | "
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user