ref: fa7d76f39ef2ca94f1b4a1ba01039f748664f523
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