ref: 254f26bf6b36f1a35f3c3f58516e4f719af122c2
dir: /home/copy_string.asm/
; copies a string from [de] to [wcf4b] CopyStringToCF4B:: ld hl, wcf4b ; fall through ; copies a string from [de] to [hl] CopyString:: ld a, [de] inc de ld [hli], a cp "@" jr nz, CopyString ret