Prev: A78C Up: Map Next: A7EB
A7E1: Handler: Press "Fire" To Continue
Used by the routine at PressAnyKey.
Handler_Press_Fire A7E1 HALT Halt operation (suspend CPU until the next interrupt).
A7E2 CALL Handler_Controls Fetch the controller response (into E) by calling Handler_Controls.
A7E5 LD A,$80 If the "fire" key is not being pressed (80 == "fire") jump to Handler_Press_Fire.
A7E7 CP E
A7E8 JR NZ,Handler_Press_Fire
A7EA RET Return.
Prev: A78C Up: Map Next: A7EB