From 8e4848c4bce75bc3dc31f4b5187e76d47e713f65 Mon Sep 17 00:00:00 2001 From: Jonathan Woodruff Date: Fri, 26 Jan 2024 16:32:16 +0000 Subject: [PATCH] Turn off tracing in instruction fetch. --- src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv b/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv index a817dac..d752a64 100644 --- a/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv +++ b/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv @@ -355,8 +355,8 @@ module mkFetchStage(FetchStage); // rule ordering: Fetch1 (BTB+TLB) < Fetch2 (decode & dir pred) < redirect method // Fetch1 < Fetch2 to avoid bypassing path on PC and epochs - Bool verbose = True; - Integer verbosity = 2; + Bool verbose = False; + Integer verbosity = 0; // Basic State Elements Reg#(Bool) started <- mkConfigReg(False);