求助:VC中如何反汇编定位地址
具体是这个意思比如程序反汇编如下:
8: printf("Darn tootin!\n");
00401043 68 B0 0F 42 00 push offset string "Darn tootin!\n" (00420fb0)
00401048 E8 43 00 00 00 call printf (00401090)
0040104D 83 C4 04 add esp,4
这段汇编语句中的push offset string "Darn tootin!\n"(00420fb0)
我的意思是我想定位到地址处00420fb0处,查看这段地址开始的汇编指令
在VC中有什么方法,直接定位到这个地址,而不是慢慢找...