在 MIPS 中查找浮点数的指数
我被困在装配作业的某个部分上。
我读取浮点值并通过牛顿法执行平方根函数。我的公式运行良好,但在从浮点数中提取指数时遇到困难。 (对于我在循环中的最初猜测)
我认为我应该在浮点上使用 AND 掩码或某种左移操作,但我在网上找到的所有信息都是为了处理整数。
我对汇编并不陌生,但对 MIPS 很陌生,因此我们将不胜感激。谢谢。
Im stuck on a certain part of my Assembly homework.
Im reading in floating point values and doing a square root function via Newtons method. Ive got the formula working fine, but having trouble extracting the exponent from a floating point number. (For my initial guess in the loop)
I think im supposed to use a AND mask on the float or some sort of shift left operation, but all the info im finding online is for dealing with ints.
Im not new to assembly, but new to MIPS so any help would be appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
总结一下:
看来你不能直接从浮点寄存器获取它。通常如何将值存入寄存器?
To summarize:
It seems like you can't get it directly from a floating point register. How would you normally get a value into a register?