cache area optimization + IPC boost from 4.24 => 4.42

This commit is contained in:
Blaise Tine
2021-07-26 21:24:27 -07:00
parent b307c40ae7
commit d2aa228a34
4 changed files with 12 additions and 12 deletions

View File

@@ -40,7 +40,7 @@ module VX_scoreboard #(
end
reg [31:0] deadlock_ctr;
wire [31:0] deadlock_timeout = 1000 * (10 ** (`L2_ENABLE + `L3_ENABLE));
wire [31:0] deadlock_timeout = 10000 * (1 ** (`L2_ENABLE + `L3_ENABLE));
always @(posedge clk) begin
if (reset) begin
deadlock_ctr <= 0;