Prev: 98C0 Up: Map Next: 98E3
98CD: Graphics: Print Image Width - 04
Used by the routine at Girl3_Frame5.
Input
HL Pointer to JumpTable_StageData for referencing the graphic data
Graphics_Width04 98CD LD C,$38 C=38 (height).
98CF LD B,$04 B=04 (width).
98D1 LD DE,$4084 DE=4084 (screen buffer location).
98D4 LD IX,$5884 IX=5884 (attribute buffer location).
Graphics_PrepToPrintGirl 98D8 INC HL Increment HL by three to move the pointer past the JP command.
98D9 INC HL
98DA INC HL
98DB PUSH DE Stash the screen buffer pointer on the stack.
98DC LD E,(HL) Store a pointer to the stage data in DE.
98DD INC HL
98DE LD D,(HL)
98DF POP HL Restore the screen buffer pointer from the stack.
98E0 JP PrintGirl Jump to PrintGirl.
Prev: 98C0 Up: Map Next: 98E3