I'm trying to figure out how to pull a register value from an ASM instruction and into a variable in C++.
For example: MOV DWORD PTR DS:[ESI],EDI
(Assuming value EDI holds is an int) int Value = EDI;
I'm trying to figure out how to pull a register value from an ASM instruction and into a variable in C++.
For example: MOV DWORD PTR DS:[ESI],EDI
(Assuming value EDI holds is an int) int Value = EDI;