Routines |
Prev: 26884 | Up: Map | Next: 26976 |
26926 | LD A,7 | Load A with 7 (index of window to draw) | ||
26928 | LD HL,37795 | Point HL at instructions text | ||
26931 | CALL 26962 | Print text at HL in window 7 | ||
26934 | LD A,8 | Draw window 8... | ||
26936 | CALL 34990 | ... | ||
26939 | LD HL,37951 | Point HL at "THE KEYS ARE :-..." text... | ||
26942 | CALL 34762 | ...and print to screen | ||
26945 | CALL 54598 | Print current control keys to screen | ||
26948 | CALL 35690 | Play upward scale sound | ||
26951 | CALL 55138 | Display "PRESS FIRE TO CONTINUE" window and wait for fire to be pressed | ||
26954 | LD A,9 | Prepare to draw window 9 | ||
26956 | LD HL,37967 | Point HL at cast of characters text | ||
26959 | JP 26962 | Skip ahead to 26962 (see trivia) | ||
26962 | PUSH HL | Store HL (pointer to text to print) | ||
26963 | CALL 34990 | Draw current instructions window | ||
26966 | POP HL | Restore HL (pointer to text to print) | ||
26967 | CALL 34762 | Print text | ||
26970 | CALL 35690 | Play upward scale sound | ||
26973 | JP 55138 | Display "PRESS FIRE TO CONTINUE" window and wait for fire to be pressed and return |
Prev: 26884 | Up: Map | Next: 26976 |