Prev: BF25 Up: Map Next: BF35
BF2C: Unused: Copy 8 Bytes
Unused routine to copy 08 bytes from *DE to *HL.
Unused_Copy_8_Bytes BF2C LD B,$08 Set the byte counter to 08 in B.
Unused_Copy_Loop BF2E LD A,(DE) Copy one byte from *DE to *HL.
BF2F LD (HL),A
BF30 INC HL Advance the destination pointer.
BF31 INC DE Advance the source pointer.
BF32 DJNZ $BF2E Decrease the counter and loop back to Unused_Copy_Loop until all 08 bytes are copied.
BF34 RET Return.
Prev: BF25 Up: Map Next: BF35