MIPS 移位指令
在 MIPS 的 sll
指令中,它只能占用 5 位。如果轮班数量超过31人,如何轮班?我们如何用 5 位来表示它?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。
SLL
仅适用于 32 位值,其中移位超过 31 位是没有意义的。对于 64 位值,请使用DSLL/DSLL32
或DSLLV
。You cannot.
SLL
is only for 32-bit values, where shifting more than 31 places makes no sense. UseDSLL/DSLL32
orDSLLV
for 64-bit values.