Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/home/compare.asm
1270 views
1
; Compare strings, c bytes in length, at de and hl.
2
; Often used to compare big endian numbers in battle calculations.
3
StringCmp::
4
ld a, [de]
5
cp [hl]
6
ret nz
7
inc de
8
inc hl
9
dec c
10
jr nz, StringCmp
11
ret
12
13