ref: 58d08bff4386815b83c9260bd831719507acfcec
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