当前位置: 代码迷 >> 汇编语言 >> [ [[ [[0x00a031b8]+0x74]+0x1ec ]+04]+272c]该怎么写
  详细解决方案

[ [[ [[0x00a031b8]+0x74]+0x1ec ]+04]+272c]该怎么写

热度:201   发布时间:2016-05-02 04:25:55.0
[ [[ [[0x00a031b8]+0x74]+0x1ec ]+04]+272c]该如何写
[ [[ [[0x00a031b8]+0x74]+0x1ec ]+04]+272c]   用汇编该如何写
------解决思路----------------------
[0x00a031b8] 是取内存单元数据的?这样的话,得一次次地取出来,加偏址接着取下一级的吧,比如:
  mov  eax, dword ptr ds:[00a031b8h]
  mov  eax, dword ptr [eax+74h]
  mov  eax, dword ptr [eax+1ech]
  mov  eax, dword ptr [eax+4]
  mov  eax, dword ptr [eax+272ch]