MIPS 向右移动(但添加 1 而不是零)
无论如何,是否可以将寄存器值向右移动,但不是添加 0(如 srl 那样),而是添加 1。如果这是不可能的,任何其他实现相同目标的建议将不胜感激。
Is there anyway to shift a register value to the right but instead of adding 0's (like srl does), make it add 1's. If that's not possible, any other suggestions to accomplish the same goal would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过首先确保要移位的寄存器的最高有效位为 1,然后进行右移算术(该符号扩展结果)来完成此操作。
例如,假设您想将寄存器 $t0 右移四位,那么您可以这样做:
You can do it by first ensuring that the most significative bit of the register to be shifted is 1 and then doing a shift right arithmetic (which sign extends the result).
For example, suppose you want to shift four bits right register $t0, so you would do: