2

在下面的代码中,rEDX, rEBX, rEBP, rESI and rEDI是结构体的成员scratch_spacescratch_space_arg是结构的对象scratch_space

lea eax, scratch_space_arg
mov [ecx+[eax].rEDX], edx
mov [ecx+[eax].rEBX], ebx
mov [ecx+[eax].rEBP], ebp
mov [ecx+[eax].rESI], esi
mov [ecx+[eax].rEDI], edi

这段代码给了我一个:

error C2426: '[' : illegal operator in 'first operand'

对于所有的mov陈述。知道如何解决这个问题吗?

PS:我用这篇文章来访问struct会员。

4

1 回答 1

2

我建议反汇编一些引用结构元素的 C 代码:

struct scratch_space scratch_space_arg = { 0, 0, 0, 0, 0 };
int rEDX = scratch_space_arg.rEDX;
int rEBX = scratch_space_arg.rEBX;
int rEBP = scratch_space_arg.rEBP;
int rESI = scratch_space_arg.rESI;
int rEDI = scratch_space_arg.rEDI;
printf("%d %d %d %d %d\n", rEDX, rEBX, rEBP, rESI, rEDI);

然后你就会知道自己使用的正确符号。

于 2012-08-06T04:03:07.013 回答