Oops, I had #ifdef 0'd the code in here to do a test compile,

and forgot to put it back.
This commit is contained in:
Kevin Lawton 2002-09-22 02:07:46 +00:00
parent e41655a78c
commit 7fd744b4ef

View File

@ -15,7 +15,6 @@ void (*call_debugger)(TRegs *,Bit8u *, Bit32u);
void bx_external_debugger(BX_CPU_C *cpu)
{
#if 0
//printf("Calling debugger state=%d\n",regs.debug_state);
switch (regs.debug_state) {
case debug_run:
@ -85,5 +84,4 @@ void bx_external_debugger(BX_CPU_C *cpu)
bx_vga.timer();
call_debugger(&regs,cpu->mem->vector,cpu->mem->len);
}
#endif
}