ref: 4c6a58ee21326ff8249914704ba6043b8b9af239
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