![]() |
Routines |
| Prev: E039 | Up: Map | Next: E0C2 |
|
Copies the 16 bytes of object/item data from the buffer at EB43 to a data set at 7C00.
|
||||
| E0B0 | LD B,$10 | 16 bytes to copy | ||
| E0B2 | LD DE,$EB43 | Address pointer to start of data buffer | ||
| E0B5 | LD HL,($EABE) | Get pointer to start of data set at 7C00. | ||
| E0B8 | LD A,(DE) | Copy a byte from the buffer to the set | ||
| E0B9 | LD (HL),A | |||
| E0BA | INC DE | |||
| E0BB | INC HL | |||
| E0BC | DJNZ $E0B8 | Repeat x16 bytes | ||
| E0BE | LD ($EABE),HL | Address pointer to start of next data set | ||
| E0C1 | RET | |||
| Prev: E039 | Up: Map | Next: E0C2 |