Question about CALL statement
- by Bruce
I have the following code in VC++
Func5(){ StackWalk(); }
Func4{ Func5();}
I am a Beginner in x86 Assembly Language. I am trying to find out the starting address of Func5(). I get the Func5()'s return address from its stack frame. Now before this return address there should be a CALL statement. So I extract out the bytes before the return…