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