ref: c8e9a82190fcb8687e3e48c1268f4b888e536f57
dir: /home/copy_name.asm/
CopyName1:: ; Copies the name from de to wStringBuffer2 ld hl, wStringBuffer2 CopyName2:: ; Copies the name from de to hl .loop ld a, [de] inc de ld [hli], a cp "@" jr nz, .loop ret