Prev: FEFC Up: Map
FF12: Handler: Room Images
Displays the image for The Wooded Vale.
game-wooded-vale
DisplayImage_WoodedVale FF12 LD IX,$61A8 IX=Image_WoodedVale.
FF16 JR Handler_Images Jump to Handler_Images.
Displays the image for The Evaporation Pits.
game-evaporation-pits
DisplayImage_EvaporationPits FF18 LD IX,$6A34 IX=Image_EvaporationPits.
FF1C JR Handler_Images Jump to Handler_Images.
Displays the image for The Shrine Of The Nemed.
game-shrine-nemed
DisplayImage_NemedShrine FF1E LD IX,$704F IX=Image_NemedShrine.
FF22 JR Handler_Images Jump to Handler_Images.
Displays the image for The Burial Pit.
game-burial-pit
DisplayImage_BurialPit FF24 LD IX,$75DD IX=Image_BurialPit.
FF28 JR Handler_Images Jump to Handler_Images.
Displays the image for The Main Courtyard.
game-courtyard
DisplayImage_MainCourtyard FF2A LD IX,$7C8D IX=Image_MainCourtyard.
FF2E JR Handler_Images Jump to Handler_Images.
Displays the image for The Deserted Broch.
game-deserted-broch
DisplayImage_DesertedBroch FF30 LD IX,$8492 IX=Image_DesertedBroch.
FF34 JR Handler_Images Jump to Handler_Images.
Displays the image for The Crystal Cavern.
game-crystal-cavern
DisplayImage_CrystalCavern FF36 LD IX,$8AF3 IX=Image_CrystalCavern.
FF3A JR Handler_Images Jump to Handler_Images.
Displays the image for The Circle of Stones.
game-stone-circle
DisplayImage_StoneCircle FF3C LD IX,$915F IX=Image_StoneCircle.
FF40 JR Handler_Images Jump to Handler_Images.
Displays the image for The Fomorians' Cavern.
game-fomorians-cavern
DisplayImage_FomoriansCavern FF42 LD IX,$983F IX=Image_FomoriansCavern.
FF46 JR Handler_Images Jump to Handler_Images.
Displays the image for the lake.
game-lake
DisplayImage_Lake FF48 LD IX,$A0EB IX=Image_Lake.
All the image routines use this same routine.
Handler_Images FF4C CALL Print_RoomImage Call Print_RoomImage.
FF4F LD A,$08 Call Print_RoomDescription and use line number 08 to start printing.
FF51 CALL Print_RoomDescription
FF54 CALL GetUserInput Call GetUserInput.
FF57 RET Return.
Prev: FEFC Up: Map