Skip to content

Commit

Permalink
[SRC] Fix incorrect calculation of NrSramCfg.
Browse files Browse the repository at this point in the history
  • Loading branch information
DiyouS committed Dec 3, 2024
1 parent c33aee3 commit 3986d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/system/spatz_cluster/src/spatz_cluster.sv
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ module spatz_cluster
// additional cycle latency, which is taken into account here.
parameter int unsigned MemoryMacroLatency = 1 + RegisterTCDMCuts,
/// # SRAM Configuration rules needed: L1D Tag + L1D Data + L1D FIFO + L1I Tag + L1I Data
parameter int unsigned NrSramCfg = 64 + 8 + 1 + ICacheSets + ICacheSets
parameter int unsigned NrSramCfg = 64 + 8 + 2 + ICacheSets + ICacheSets
) (
/// System clock.
input logic clk_i,
Expand Down

0 comments on commit 3986d9b

Please sign in to comment.