关于_asm int 3运用

在使用Windbg调试的时候,手动添加如下的代码:

#if DBG
  _asm int 3
#endif

 

执行到它的时候就会停下来。

但是这样的代码如果不是调试状态执行就会直接蓝屏。

所以如果你不在调试状态下,请注释掉这三句。否则出现蓝屏:

0x008e (0x008003....)

而:0x80000003: STATUS_BREAKPOINT indicates that a breakpoint or ASSERT was encountered when no kernel debugger was attached to the system.

你可能感兴趣的:(ASM)