Prev: 48933 Up: Map Next: 48949
48940: Unused: Copy 8 Bytes
Unused routine to copy 8 bytes from *DE to *HL.
Unused_Copy_8_Bytes 48940 LD B,8 Set the byte counter to 8 in B.
Unused_Copy_Loop 48942 LD A,(DE) Copy one byte from *DE to *HL.
48943 LD (HL),A
48944 INC HL Advance the destination pointer.
48945 INC DE Advance the source pointer.
48946 DJNZ 48942 Decrease the counter and loop back to Unused_Copy_Loop until all 8 bytes are copied.
48948 RET Return.
Prev: 48933 Up: Map Next: 48949