Prev: 94BB Up: Map Next: 94D9
94C3: Copy the data for the current room into the working buffer
Used by the routine at 940C.
94C3 LD A,($9649) Get the current room (9649).
94C6 DI Disable interrupts.
94C7 LD D,A Put the current room multipled by 0200 in DE.
94C8 LD E,$00
94CA RLC D
94CC LD HL,$9A2A Get the base address of the rooms (9A2A).
94CF ADD HL,DE Add the offset.
94D0 LD DE,$C42A Destination is the working buffer at C42A.
94D3 LD BC,$0200 Length is always 0200 bytes.
94D6 LDIR Do the copy and return.
94D8 RET
Prev: 94BB Up: Map Next: 94D9