Prev: E3EC Up: Map Next: E41D
E3FD: Print Banner
Used by the routines at Demo_Start, GameLoop and Handler_ChangeCharacters.
Clear the banner screen buffer area.
PrintBanner E3FD CALL Clear_Banner Call Clear_Banner.
Display the banner.
E400 LD HL,$7E3F HL=Messaging_Banner.
E403 LD DE,$0010 DE=0010.
E406 CALL Controller_Tile Call Controller_Tile.
Display the current character name in the banner.
E409 LD H,$7C H=7C.
E40B LD L,(IY-$23) L=IY-23.
E40E LD C,$45 C=45 (attribute: INK: CYAN, PAPER: BLACK (BRIGHT) ).
E410 LD DE,$001B DE=001B (screen co-ordinates).
E413 CALL Controller_Tile Call Controller_Tile.
Displays the endurance meter and lives.
E416 CALL $E36D Call E36D.
Display the currently held items.
E419 CALL PrintCharacterItems Call PrintCharacterItems.
E41C RET Return.
Prev: E3EC Up: Map Next: E41D