ref: 79bb2784e92de0524c69c87556f7647861c47fb8
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