阅读需要有一点汇编基础,源代码如下
#include "stdafx.h"
int plus(int x, int y){
int z = 2;
return x + y + z;
}
int main()
{
int c = plus(3, 4);
return 0;
}
用VS的反汇编找到main函数的地址0xF216E0
将程序载入OD,到达0xF216E0地址处
当前ESP:0x36FA54 EBP:0x36FA5C
阅读需要有一点汇编基础,源代码如下
#include "stdafx.h"
int plus(int x, int y)}
用VS的反汇编找到main函数的地址0xF216E0
将程序载入OD,到达0xF216E0地址处
当前ESP:0x36FA54 EBP:0x36FA5C