ref: 9cfae346587676e8f7b345a41b0b55734da2dd23
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