ref: 66f03cd6b388a7330640b6f592590ac870881d1d
dir: /home/copy_string.asm/
; copies a string from de to wStringBuffer CopyToStringBuffer:: ld hl, wStringBuffer ; fall through ; copies a string from de to hl CopyString:: ld a, [de] inc de ld [hli], a cp "@" jr nz, CopyString ret