1; copies a string from de to wStringBuffer 2CopyToStringBuffer:: 3 ld hl, wStringBuffer 4 ; fall through 5 6; copies a string from de to hl 7CopyString:: 8 ld a, [de] 9 inc de 10 ld [hli], a 11 cp "@" 12 jr nz, CopyString 13 ret 14 15