Figure 1. pcmpleq
Description
The contents of register rAL are compared with the contents in register rBL.
- rD is loaded with 1 if they match, and 0 if not
Pseudocode
if (rBL) = (rAL) then
(rD) ← 1
else
(rD) ← 0
Registers Altered
- rD
Latency
- 1 cycle
Notes
- This instruction is only available when the parameter
C_USE_PCMP_INSTR
is set to 1.