FDIV如何在nasm、汇编中使用

发布于 2024-10-24 05:00:18 字数 254 浏览 4 评论 0原文

我有一个总和值存储在

fstp    qword [ebx]  ; Copy contents of st0 to space currently on top of the system stack

如何将其除以存储在寄存器 edi 中的整数值?

我以为这只是

fdiv edi

,但它说......等等无效的

洞察力组合?

i have a sum value stored in

fstp    qword [ebx]  ; Copy contents of st0 to space currently on top of the system stack

how do i divide it by an integer value that is stored in register edi?

i thought it was just

fdiv edi

but it says invalid combination of....blah blah blha

insight?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

拒绝两难 2024-10-31 05:00:18

你不能。 FPU 无​​法访问整数寄存器。

You can't. The FPU does not have access to the integer registers.

无戏配角 2024-10-31 05:00:18

正如 Jens 在他的回答中所说,FPU 无​​法直接访问整数寄存器。您将需要使用暂存存储器来进行传输。这是 x87 FPU 的主要缺点之一。示例代码可能看起来像这样:

section .bss
fpscratch: resd 1

...

section .text

;other code goes here

MOV fpscratch, edi
FILD fpscratch
FDIV

(注意上面的代码:显然,它还没有经过测试,而且我对我的程序集有点生疏,所以它可能有问题,尽管它很好而且很短.)

As Jens says in his answer, the FPU does not have any direct access to the integer registers. You will need to use scratch memory to make the transfer. This is one of the major disadvantages of the x87 FPU. Example code might look something like:

section .bss
fpscratch: resd 1

...

section .text

;other code goes here

MOV fpscratch, edi
FILD fpscratch
FDIV

(Note on the above code: it has not been tested, obviously, and I'm a little rusty on my assembly so there is probably something wrong with it, even though it's nice and short.)

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