Prev: E8E0 Up: Map Next: E8F6
E8E4: Display Pink Footer
Used by the routine at InitialiseGame.
This routine moves the data at Footer_StartScreen to the screen buffer (to draw the start page footer).
DisplayPinkFooter E8E4 LD DE,$5000 DE=5000 (screen buffer location).
E8E7 LD HL,$A900 HL=Footer_StartScreen.
E8EA LD BC,$0800 BC=0800 (counter).
E8ED LDIR Copy the footer graphic data to the screen buffer, decrease the counter, repeat until zero.
E8EF LD D,$5A DE=5A00 (attribute buffer location).
E8F1 LD B,$01 B=01 (counter).
E8F3 LDIR Copy the footer attribute data to the attribute buffer, decrease the counter, repeat until zero.
E8F5 RET Return.
Prev: E8E0 Up: Map Next: E8F6