在以下代码中,rEDX, rEBX, rEBP, rESI and rEDI
是结构scratch_space
的成员。 scratch_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:我使用this article来访问struct
成员。
答案 0 :(得分: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);
然后你就会知道自己使用的正确表示法。