如何获得MIPS中的LSB位?
在 MIPS 中,是否有一种简短的方法来检查/获取 32 位整数中的最低有效位?显然它是为奇数设置的,检查整个数字是奇数还是偶数的算法可以对此做出决定。但我只是想知道是否有更好的方法来做到这一点......
Is there a short way to check/get for least significant bit in a 32-bit integer, in MIPS? It is obviously set for the odd numbers and an algorithm which checks for the whole number is odd or even can decide for this. But I just wonder is there a better way to do this...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
andi $t0, $s0, 1
将获取$s0
的最低有效位并将其放入$t0
中。andi $t0, $s0, 1
will get the least significant bit of$s0
and put it in$t0
.