When talking about sign-extended instructions I think of the I-instruction (beq, bne, addi, etc) if I am correct, but I am not sure if the MIPS instruction NOT is I type or R Type
There is technically no NOT instruction in MIPS. NOT is a synthetic instruction. Convert it to an actual MIPS instruction first.
– Raymond Chen
1 Answers
0
votes
NOT is a pseudo instruction that inverts the given input. I believe the real instruction is a logical operation with the zero register which is R type.
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
NOT
instruction in MIPS.NOT
is a synthetic instruction. Convert it to an actual MIPS instruction first. – Raymond Chen