Prev: B460 Up: Map Next: B699
B594: Messaging: Missile Launch
Used by the routine at B460.
Print "WARNING".
Message_MissileLaunch B594 LD DE,$B5DC DE=B5DC.
B597 LD HL,$2860 HL=2860 (screen buffer location).
B59A CALL PrintStringColour Call PrintStringColour.
Print "A MISSILE HAS BEEN LAUNCHED".
B59D LD DE,$B5E4 DE=B5E4.
B5A0 LD HL,$3808 HL=3808 (screen buffer location).
B5A3 CALL PrintStringColour Call PrintStringColour.
Print "FROM THE ENEMY BASE".
B5A6 LD DE,$B601 DE=B601.
B5A9 LD HL,$4808 HL=4808 (screen buffer location).
B5AC CALL PrintStringColour Call PrintStringColour.
Print "YOUR LUNAR ROVER IS IN DANGER".
B5AF LD DE,$B617 DE=B617.
B5B2 LD HL,$5808 HL=5808 (screen buffer location).
B5B5 CALL PrintStringColour Call PrintStringColour.
Print "OF BEING DESTROYED".
B5B8 LD DE,$B636 DE=B636.
B5BB LD HL,$6808 HL=6808 (screen buffer location).
B5BE CALL PrintStringColour Call PrintStringColour.
Print "IT IS ESTIMATED THAT LASER".
B5C1 LD DE,$B64A DE=B64A.
B5C4 LD HL,$8008 HL=8008 (screen buffer location).
B5C7 CALL PrintStringColour Call PrintStringColour.
Print "HITS WILL BE REQUIRED TO".
B5CA LD DE,$B669 DE=B669.
B5CD LD HL,$9008 HL=9008 (screen buffer location).
B5D0 CALL PrintStringColour Call PrintStringColour.
Print "DESTROY THE MISSILE.".
B5D3 LD DE,$B683 DE=B683.
B5D6 LD HL,$A008 HL=A008 (screen buffer location).
B5D9 JP PrintStringColour Jump to PrintStringColour.
Messaging data.
B5DC DEFM $56 "WARNING".
B5DD DEFM "WARNIN","G"+$80
B5E4 DEFM $46 "A MISSILE HAS BEEN LAUNCHED "
B5E5 DEFM "A MISSILE HAS BEEN LAUNCHED"," "+$80
B601 DEFM $46 "FROM THE ENEMY BASE "
B602 DEFM "FROM THE ENEMY BASE."," "+$80
B617 DEFM $44 "YOUR LUNAR ROVER IS IN DANGER ".
B618 DEFM "YOUR LUNAR ROVER IS IN DANGER"," "+$80
B636 DEFM $44 "OF BEING DESTROYED ".
B637 DEFM "OF BEING DESTROYED"," "+$80
B64A DEFM $47 "IT IS ESTIMATED THAT LASER ".
B64B DEFM "IT IS ESTIMATED THAT LASER"," "+$80
B669 DEFM $47 "HITS WILL BE REQUIRED TO ".
B66A DEFM "HITS WILL BE REQUIRED TO"," "+$80
B683 DEFM $47 "DESTROY THE MISSILE. ".
B684 DEFM "DESTROY THE MISSILE."," "+$80
Prev: B460 Up: Map Next: B699