MIPS 浮点数不带 li.s

发布于 2024-11-15 02:55:04 字数 70 浏览 2 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疏忽 2024-11-22 02:55:04

我遇到了类似的情况,这就是我发现的:

在火星上你不能使用 li.s 因为它是一个伪未实现的。在 PCSPIM 中它被实现了,类似

li.s $f2, 9.0

In PCSPIM 的东西将被转变成

lui $1, 16656
mtc1 $1, $f2

因此,如果你想做 li.s 但你不想调用 li.s 你总是可以将你的程序加载到 PCSPIM (使用 li.s)并看到您的代码发生了什么变化,然后用您的代码替换这些更改。

但要小心,在 PCSPIM 中你不能这样做,

lui $1, 16656
mtc1 $1, $f2

这会给你带来一个很好的错误。

我知道它很便宜而且很国际象棋,但它确实有效......

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

li.s $f2, 9.0

In PCSPIM will be traduced into

lui $1, 16656
mtc1 $1, $f2

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

lui $1, 16656
mtc1 $1, $f2

It's gonna trow a nice error to you.

It's cheap and chessy, I know, but it do the trick...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文