Assembly:

NOR rd, rs, rt

nanoMIPS

NOR

Purpose:

NOR. Compute logical NOR of registers $rs and $rt, placing the result in register $rt.

Availability:

nanoMIPS

Format:

001000

rt

rs

rd

x

1011010

000

6

5

5

5

1

7

3

Operation:

GPR[rd] = ~(GPR[rs] | GPR[rt])

Exceptions:

None.