diff options
Diffstat (limited to 'x86emu/ops.c')
-rw-r--r-- | x86emu/ops.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/x86emu/ops.c b/x86emu/ops.c index 6fc936b..37ae2c9 100644 --- a/x86emu/ops.c +++ b/x86emu/ops.c @@ -70,8 +70,6 @@ * ****************************************************************************/ -/* $XFree86: xc/extras/x86emu/src/x86emu/ops.c,v 1.8tsi Exp $ */ - #include "x86emu/x86emui.h" /*----------------------------- Implementation ----------------------------*/ @@ -90,8 +88,8 @@ static void x86emuOp_illegal_op( if (M.x86.R_SP != 0) { DECODE_PRINTF("ILLEGAL X86 OPCODE\n"); TRACE_REGS(); - printk("%04x:%04x: %02X ILLEGAL X86 OPCODE!\n", - M.x86.R_CS, M.x86.R_IP-1,op1); + DB( printk("%04x:%04x: %02X ILLEGAL X86 OPCODE!\n", + M.x86.R_CS, M.x86.R_IP-1,op1)); HALT_SYS(); } else { |