CpHLDE
Compares a 24-bit value in hl
to a 24-bit value in de
. The output is similar to the cp
instruction.
hl
: Value.de
: Comparison value.
- Z flag: Set if
hl
andde
are equal. - C flag: Set if
hl
is less than or equal tode
, reset ifhl
is greater thande
.
- None.