Dynamite Dan
Routines
Prev:
D9A7
Up:
Map
Next:
D9B0
D9AA: Set the zero flag if B or C equals E
Used by the routines at
CD5C
,
D567
and
D895
.
D9AA
LD A,C
Compare
C
with
E
.
D9AB
CP E
D9AC
RET Z
Return if there's a match.
D9AD
LD A,B
Compare
B
with
E
.
D9AE
CP E
D9AF
RET
Return with the zero flag set.
Prev:
D9A7
Up:
Map
Next:
D9B0