C++ ASM Inline如何在ASM中使用struct成员?
我有以下内容
struct john {
int oldA;
int A;
} myJohn;
DWORD gotoAddressBack = 0x00401000;
void __declspec( naked ) test(void) {
__asm {
MOV myJohn.oldA, DWORD PTR DS:[ESI+0x77C]
MOV DWORD PTR DS:[ESI+0x77C], myJohn.A
JMP gotoAddressBack
}
}
您可以看出两个 MOV 都会生成错误 C2415:操作数类型不正确。
如您所见,我想要做的是将 [ESI+0x77C] 的值存储到 myJohn.oldA
然后我想用 myJohn.A 替换相同的 [ESI+0x77C] 值
I have the following
struct john {
int oldA;
int A;
} myJohn;
DWORD gotoAddressBack = 0x00401000;
void __declspec( naked ) test(void) {
__asm {
MOV myJohn.oldA, DWORD PTR DS:[ESI+0x77C]
MOV DWORD PTR DS:[ESI+0x77C], myJohn.A
JMP gotoAddressBack
}
}
You can tell that both MOV's generate the error C2415: improper operand type.
As you can see what I want to do is store [ESI+0x77C]'s value into myJohn.oldA
Then I want to replace the same [ESI+0x77C]'s value with myJohn.A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MOV
指令没有内存/内存操作数。您应该使用寄存器来实现此类用途。事情是这样的:顺便说一句,我真的怀疑你真的必须在现代操作系统下处理段寄存器(由于虚拟内存,即你可以使用直接地址)。您应该在上述更改后检查您的代码。
There is no memory/memory operand for
MOV
instruction. You should use a register for such usages. This is something like that:BTW, I really suspect that you really have to deal with segment registers under modern OSes (due to virtual memory, i.e. you can use direct addresses). You should check your code after above changes.