| ORI 001101 | rs | rt | immediate | 
| 6 | 5 | 5 | 16 | 
| ORI rt, rs, immediate | MIPS32 | Or Immediate | 
Or Immediate
To do a bitwise logical OR with a constant.
GPR[rt] = GPR[rs] or immediate
The 16-bit immediate is zero-extended to the left and combined with the contents of GPR rs in a bitwise logical OR operation. The result is placed into GPR rt.
None
GPR[rt] = GPR[rs] or zero_extend(immediate)
None