0

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

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

2 回答 2

2

将内容分配0x804a1d4 + %edx*4%eax

于 2011-11-09T04:54:02.053 回答
1

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

  0x804a1d4 + (edx * 4)
于 2011-11-09T05:19:14.470 回答