Prev: 0EFD Up: Map Next: 0F11
0F06: Copy 32 contiguous mosaic characters from address in HL to address in DE, separating the columns.
Used by the routine at init_mosaics.
0F06 LD B,$FF Set B to 255 as loop counter.
0F08 LD A,(HL) Load byte from address in HL.
0F09 AND $36 Mask off separated mosaic columns and store new bitmap at address in DE.
0F0B LD (DE),A
0F0C INC HL Increment addresses and loop through 32 characters.
0F0D INC DE
0F0E DJNZ $0F08
0F10 RET Return.
Prev: 0EFD Up: Map Next: 0F11