diff options
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/SConscript | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/arch/x86/SConscript b/src/arch/x86/SConscript index 9cb774647..2742c79e8 100644 --- a/src/arch/x86/SConscript +++ b/src/arch/x86/SConscript @@ -66,14 +66,14 @@ if env['TARGET_ISA'] == 'x86': SimObject('X86NativeTrace.py') SimObject('X86TLB.py') - TraceFlag('Predecoder', "Predecoder debug output") - TraceFlag('X86', "Generic X86 ISA debugging") + DebugFlag('Predecoder', "Predecoder debug output") + DebugFlag('X86', "Generic X86 ISA debugging") if env['FULL_SYSTEM']: - TraceFlag('LocalApic', "Local APIC debugging") - TraceFlag('PageTableWalker', \ + DebugFlag('LocalApic', "Local APIC debugging") + DebugFlag('PageTableWalker', \ "Page table walker state machine debugging") - TraceFlag('Faults', "Trace all faults/exceptions/traps") + DebugFlag('Faults', "Trace all faults/exceptions/traps") SimObject('X86LocalApic.py') SimObject('X86System.py') |