在 MIPS 中显示除法结果
你好,我正在 MIPS 中编写一个小程序,我有这个代码
li $v0, 2
div $t0,$t2,$t1
move $a0,$t0
syscall
(这不是完整的代码,只是部分处理部分)
其中 $t1 是 2,$t2 是 9。
所以,2/9 是 0.2222222222222222
但是当我运行我只得到 0.0
为什么?,我如何显示真实结果?
提前致谢。
Hi I'm coding a small program in MIPS and I have this code
li $v0, 2
div $t0,$t2,$t1
move $a0,$t0
syscall
(it's not the full code, just the section handling division)
Where $t1 is 2, $t2 is 9.
So, 2/9 is 0.2222222222222222
But when I run it I only get 0.0
Why?, how I show the true result?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论