In MIPS, instead of NOT, nor is used to perform the NOT operation. Instruction nor will provide the inverted bit of the operand involved.
Pseudo instruction:
not $t1,$t2
For example, let us consider the value of $t2 to be 10100, then the NOT operation will be performed. After the NOT operation, the bits of $t2 will be inverted bit by bit and the value of $t1 will be 01011.
MIPS instruction:
nor $t1,$t2,$t2
The above instruction will perform the NOT OR, which results in NOT operation.
For example, let us consider the value of $t2 to be 10101, then the value of $t2 will perform OR operation with 0. Then the value of $t2 will 10101. Now the NOT will be performed on the value of $t2 and the result 01010 will be stored in the $t1 register.