Skip to content

Commit

Permalink
Fix mmuSets not being applied to lsu
Browse files Browse the repository at this point in the history
  • Loading branch information
Dolu1990 committed Feb 8, 2024
1 parent 4640c0a commit 9e14835
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/scala/naxriscv/Gen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ object Config{
MmuStorageLevel(
id = 0,
ways = 4,
depth = 32
depth = mmuSets
),
MmuStorageLevel(
id = 1,
ways = 2,
depth = 32
depth = mmuSets
)
),
priority = 1
Expand Down Expand Up @@ -334,11 +334,11 @@ object Config{
case true => new MulPlugin(
euId = "EU0",
sumAt = 0,
sumsSpec = List((20, 2), (24, 8), (1000, 1000)),
sumsSpec = List((20, 4), (24, 8), (1000, 1000)),
untilOffsetS0 = 28,
splitWidthA = xlen,
splitWidthB = 1,
useRsUnsignedPlugin = true,
useRsUnsignedPlugin = false,
staticLatency = false
)
})
Expand Down

0 comments on commit 9e14835

Please sign in to comment.