IA32 无基址变址寻址模式

发布于 2024-12-14 10:05:41 字数 85 浏览 3 评论 0原文

这个语法是什么意思?我特别不确定缺少的基址

mov    0x804a1d4(,%edx,4),%eax

What does this syntax mean? I'm specifically unsure about the missing base address

mov    0x804a1d4(,%edx,4),%eax

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

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

发布评论

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

评论(2

变身佩奇 2024-12-21 10:05:41

0x804a1d4 + %edx*4的内容赋值给%eax

assign the contents of 0x804a1d4 + %edx*4 to %eax

野却迷人 2024-12-21 10:05:41

没有基础。可以省略基址寄存器或偏移寄存器(但不能同时省略两者)。在这种情况下,基地址是硬编码的,并且要移入 eax 的值是从

  0x804a1d4 + (edx * 4)

There is no base. Either the base register or the offset register (but not both) may be omitted. In this case the base address is hard-coded and the value to be moved into eax is loaded from

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