1 Index: src/cpu/core_full/op.h
2 ===================================================================
3 --- ./src/cpu/core_full/op.h (revision 4019)
4 +++ ./src/cpu/core_full/op.h (working copy)
9 - if (((inst.entry & 0xFF)==0xcc) && DEBUG_Breakpoint())
10 + if (((inst.entry & 0xFF)==0xcc) && (DEBUG_Breakpoint() || DEBUG_IntBreakpoint(3)))
12 else if (DEBUG_IntBreakpoint(inst_op1_b))
14 Index: src/cpu/core_normal/prefix_none.h
15 ===================================================================
16 --- ./src/cpu/core_normal/prefix_none.h (revision 4019)
17 +++ ./src/cpu/core_normal/prefix_none.h (working copy)
19 CASE_B(0xcc) /* INT3 */
22 - if (DEBUG_Breakpoint())
23 + if (DEBUG_Breakpoint() || DEBUG_IntBreakpoint(3))
26 CPU_SW_Interrupt_NoIOPLCheck(3,GETIP);