Prev: 37172 Up: Map Next: 37219
37210: Copy UDG To Screen
Used by the routines at 38242 and PrintNumbers.
Input
DE Destination screen buffer address
HL Source UDG address
CopyUDGToScreen 37210 LD B,8 B=8.
CopyUDGToScreen_Loop 37212 LD A,(HL) A=*HL.
37213 LD (DE),A Write A to *DE.
37214 INC HL Increment HL by one.
37215 INC D Increment D by one.
37216 DJNZ CopyUDGToScreen_Loop Decrease counter by one and loop back to CopyUDGToScreen_Loop until counter is zero.
37218 RET Return.
Prev: 37172 Up: Map Next: 37219