Prev: B7A3 Up: Map Next: B7CC
B7B8: Print "You have run out of time"
B7B8 LD HL,$5080 Where to print it
B7BB LD DE,$A88F String for "You have run out of time"
B7BE CALL $B74A Print it
B7C1 LD HL,$5A80 Point to attributes of message
B7C4 LD B,$20 Number of attributes to set
B7C6 LD (HL),$C7 Flash, bright, white paper, black ink
B7C8 INC L Next attribute
B7C9 DJNZ $B7C6 Jump if there's more to do
B7CB RET All done
Prev: B7A3 Up: Map Next: B7CC