Prevent various debug prints by default

This commit is contained in:
Peter Rugg
2025-01-08 18:43:05 +00:00
parent d1bea2faf0
commit 1df304a820
6 changed files with 127 additions and 105 deletions

View File

@@ -1165,7 +1165,6 @@ module mkFetchStage(FetchStage);
if (iType == Br) begin
// Train the direction predictor for all branches
dirPred.update(taken, trainInfo.dir, mispred);
$display("Branch train PC: %x, taken: %x, mispred: %x", getAddr(pc), taken, mispred);
end
// train next addr pred when mispred
if(mispred) begin

View File

@@ -271,7 +271,7 @@ interface MemExePipeline;
endinterface
module mkMemExePipeline#(MemExeInput inIfc)(MemExePipeline);
Bool verbose = True;
Bool verbose = False;
// we change cache request in case of single core, becaues our MSI protocol
// is not good with single core