For this pseudoinstruction:
move $rt, $rs
Are both the addi and add assembly code acceptable? So could I use either
add $rt, $rs, $0
or
addi $rt, $rs, $0
?
Edit:
I think I made a mistake with addi
add $rt, $rs, $0
would be the same as
addi $rt, $rs, 0
since add
adds registers, and I need a constant for the immediate for addi