summaryrefslogtreecommitdiff
path: root/home/copy_string.asm
blob: 7f86e501ba190f1d2b77308768b1c57ce309b564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; 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