MIPS 浮点数不带 li.s
我正在尝试在 MIPS 中加载浮点整数,而无需使用 li.s 等伪代码指令,有谁知道我将如何针对 2.0 这样的示例执行此操作
I am trying to load a floating point integer in MIPS without a pseudocode instruction such as li.s does anyone know how I would go about doing that for an example like 2.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了类似的情况,这就是我发现的:
在火星上你不能使用 li.s 因为它是一个伪未实现的。在 PCSPIM 中它被实现了,类似
In PCSPIM 的东西将被转变成
因此,如果你想做 li.s 但你不想调用 li.s 你总是可以将你的程序加载到 PCSPIM (使用 li.s)并看到您的代码发生了什么变化,然后用您的代码替换这些更改。
但要小心,在 PCSPIM 中你不能这样做,
这会给你带来一个很好的错误。
我知道它很便宜而且很国际象棋,但它确实有效......
I was in a similar situation and this is what I found:
In Mars you can't use li.s because it's a pseudonot implemented. In PCSPIM it's implemented, something like
In PCSPIM will be traduced into
So, if you want to do li.s but you don't want to call li.s you can always load your program into PCSPIM (with li.s) and see what changes in your code and then substitute you code for those changes.
But be careful, in PCSPIM you can't
It's gonna trow a nice error to you.
It's cheap and chessy, I know, but it do the trick...