VC中嵌入斷點中斷的HelloWorld程式:
#include <iostream>
int main(INT argc,char*argv[])
{
__asm INT 3; //呼叫斷點中斷
cout << "Hello world!" << endl;
}
<編譯後程式將停在INT3這個位置>
彙編中嵌入斷點中斷的HelloWorld程式
這個示例和那個單步中斷先待定
VC中嵌入斷點中斷的HelloWorld程式:
#include <iostream>
int main(INT argc,char*argv[])
{
__asm INT 3; //呼叫斷點中斷
cout << "Hello world!" << endl;
}
<編譯後程式將停在INT3這個位置>
彙編中嵌入斷點中斷的HelloWorld程式
這個示例和那個單步中斷先待定