1
0
Fork 0

fixed breakpoint handling

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@928
This commit is contained in:
Ulf Wohlers 2003-04-14 10:43:56 +00:00
parent 4f9387f1ce
commit 7b45220ec3

View file

@ -336,7 +336,7 @@ switch (inst.code.op) {
case O_INT:
SaveIP();
#if C_DEBUG
if (inst.entry==0xcc) if (DEBUG_Breakpoint()) return 1;
if ((inst.entry==0xcc) && DEBUG_Breakpoint()) return 1;
else if (DEBUG_IntBreakpoint(inst.op1.b)) return 1;
#endif
Interrupt(inst.op1.b);