shithub: pokered

ref: d48a318dbf4b9e07da57980adb5894f5eadb11f7
dir: /home/compare.asm/

View raw version
; Compare strings, c bytes in length, at de and hl.
; Often used to compare big endian numbers in battle calculations.
StringCmp::
	ld a, [de]
	cp [hl]
	ret nz
	inc de
	inc hl
	dec c
	jr nz, StringCmp
	ret