SRA rt, rs, shift |
nanoMIPS |
Shift Right Arithmetic |
Shift Right Arithmetic. Right shift word value in register $rs by amount shift, duplicatingthe sign bit (bit 31) in the emptied bits. Place the result in register $rt.
nanoMIPS
100000 |
rt |
rs |
1100 |
x |
0100 |
shift |
6 |
5 |
5 |
4 |
3 |
4 |
5 |
GPR[rt] = GPR[rs] >> shift
None.