ANDI32 110100 |
rt |
rs |
immediate |
6 |
5 |
5 |
16 |
ANDI rt, rs, immediate |
microMIPS |
and immediate |
and immediate
To do a bitwise logical AND with a constant
GPR[rt] = GPR[rs] and zero_extend(immediate)
The 16-bit immediate is zero-extended to the left and combined with the contents of GPR rs in a bitwise logical AND operation. The result is placed into GPR rt.
None
GPR[rt] = GPR[rs] and zero_extend(immediate)
None