1. Change CONFIG_DEBUG to DEBUG in util/x86emu/*
[coreboot.git] / util / x86emu / x86emu / debug.c
index c884462567a921e78265dcb7b23f1cacf1ccad25..026c03fddd0f1c714c8591296f637a1674763928 100644 (file)
@@ -42,7 +42,7 @@
 
 /*----------------------------- Implementation ----------------------------*/
 
-#ifdef CONFIG_DEBUG
+#ifdef DEBUG
 
 static void     print_encoded_bytes (u16 s, u16 o);
 static void     print_decoded_instruction (void);
@@ -94,7 +94,7 @@ void disassemble_forward (u16 seg, u16 off, int n)
      * flag associated with the "execution", and we are using a copy
      * of the register struct.  All the major opcodes, once fully
      * decoded, have the following two steps: TRACE_REGS(r,m);
-     * SINGLE_STEP(r,m); which disappear if CONFIG_DEBUG is not defined to
+     * SINGLE_STEP(r,m); which disappear if DEBUG is not defined to
      * the preprocessor.  The TRACE_REGS macro expands to:
      *
      * if (debug&DEBUG_DISASSEMBLE)
@@ -364,7 +364,7 @@ int parse_line (char *s, int *ps, int *n)
 #endif
 }
 
-#endif /* CONFIG_DEBUG */
+#endif /* DEBUG */
 
 void x86emu_dump_regs (void)
 {