Prev: EBFC Up: Map Next: EC13
EC07: Process: Congratulations (Game Over)
Process_CongratulationsGameOver EC07 LD A,$04 Call AddToScore to add 04 points to the score.
EC09 CALL AddToScore
Housekeeping; tidy up the stack.
EC0C POP HL Restore HL from the stack.
EC0D POP HL Discard the return address on the stack.
EC0E LD HL,$E9B8 Switch GameOver_Score onto the stack so the next return actions printing the score and asking if you want another game?
EC11 EX (SP),HL
EC12 RET Return.
Prev: EBFC Up: Map Next: EC13