Prev: C5EB Up: Map Next: C622
C607: Displays The Bonus Score Text
Used by the routine at Duel_Points.
Print_BonusScore C607 LD (IX+$07),A Stores the ASCII representation of the number at Duel_Bonus_Text (it adds ASCII "0") so for example 1 ends up being 1 + 30 = 31 (e.g. "1" in ASCII).
C60A LD HL,$C41D
C60D ADD A,$30
C60F LD (HL),A
C610 LD BC,$2928 Print using Print_TwoToneText_Alias.
Value Ink Paper Bright
29 01 05 00
28 00 05 00
C613 CALL Print_TwoToneText_Alias
C616 CALL Scoring_Prep_Alias
C619 CALL Draw_Score_Alias
C61C INC (IX+$09)
C61F JP Duel_Prep_0 Jump to Duel_Prep_0.
Prev: C5EB Up: Map Next: C622