Prev: 60888 Up: Map Next: 60927
60896: Prepare for a new game
Used by the routine at 26880. Clears the screen and asks whether the characters' names should be changed; returns to the caller if the answer is no, or proceeds into the routine at 61152 if the answer is yes.
60896 LD A,6 BORDER 6
60898 OUT (254),A
60900 LD HL,16384 Blank the entire display
60903 LD (HL),0
60905 INC HL
60906 LD A,H
60907 CP 88
60909 JR NZ,60903
60911 LD (HL),48 PAPER 6: INK 0
60913 INC HL
60914 LD A,H
60915 CP 91
60917 JR NZ,60911
60919 CALL 64073 Ask whether the characters' names should be changed, and return here only if the answer is yes
60922 LD B,32 Prepare B for drawing the catwalk
60924 JP 61152
Prev: 60888 Up: Map Next: 60927