MIPS Shift Instruction

1.7k views Asked by At

In an sll instruction in MIPS, it can only take 5-bits. How would the shift work if the shift amount was more than 31? How do we represent that with 5-bits?

Thanks

1

There are 1 answers

1
ninjalj On BEST ANSWER

You cannot. SLL is only for 32-bit values, where shifting more than 31 places makes no sense. Use DSLL/DSLL32 or DSLLV for 64-bit values.