Prev: 9134 Up: Map Next: 9163
915A: Copy UDG To Screen
Used by the routines at 9562 and PrintNumbers.
Input
DE Destination screen buffer address
HL Source UDG address
CopyUDGToScreen 915A LD B,$08 B=08.
CopyUDGToScreen_Loop 915C LD A,(HL) A=*HL.
915D LD (DE),A Write A to *DE.
915E INC HL Increment HL by one.
915F INC D Increment D by one.
9160 DJNZ CopyUDGToScreen_Loop Decrease counter by one and loop back to CopyUDGToScreen_Loop until counter is zero.
9162 RET Return.
Prev: 9134 Up: Map Next: 9163