removed debug prints

This commit is contained in:
2026-01-27 19:07:31 +00:00
parent 8097b5cd3d
commit aa0f7c69a7
6 changed files with 168 additions and 43 deletions

View File

@@ -366,6 +366,11 @@ module mkCore#(CoreId coreId)(Core);
// whether perf data is collected
Reg#(Bool) doStatsReg <- mkConfigReg(True);
// Hack to get set stat reg to true
// rule forceSetStatRegToTrue;
// doStatsReg <= True;
// endrule
// write aggressive elements + wakupe reservation stations
function Action writeAggr(Integer wrAggrPort, PhyRIndx dst);
action

View File

@@ -330,7 +330,8 @@ interface StatsCsr;
endinterface
module mkStatsCsr(StatsCsr);
Reg#(Bool) doStats <- mkConfigReg(False);
// Seeting CSR stat to true
Reg#(Bool) doStats <- mkConfigReg(True);
FIFO#(Bool) writeQ <- mkFIFO1;