Skip to content

Commit 54974b3

Browse files
authored
Bump Chisel 7.0.0 (#235)
1 parent 130cd27 commit 54974b3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import coursier.maven.MavenRepository
33

44
object ivys {
55
val scala = "2.13.14"
6-
val chisel = ivy"org.chipsalliance::chisel:6.7.0"
7-
val chiselPlugin = ivy"org.chipsalliance:::chisel-plugin:6.7.0"
6+
val chisel = ivy"org.chipsalliance::chisel:7.0.0"
7+
val chiselPlugin = ivy"org.chipsalliance:::chisel-plugin:7.0.0"
88
}
99

1010
trait CommonModule extends ScalaModule {

src/main/scala/system/NutShell.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ class NutShell(implicit val p: NutCoreConfig) extends Module with HasSoCParamete
7878
l2cacheIn
7979
} else xbar.io.out
8080
val l2Empty = Wire(Bool())
81-
l2cacheOut <> Cache(in = l2cacheIn, mmio = 0.U.asTypeOf(new SimpleBusUC) :: Nil, flush = "b00".U, empty = l2Empty, enable = true)(
81+
val mmio = WireInit(0.U.asTypeOf(new SimpleBusUC))
82+
l2cacheOut <> Cache(in = l2cacheIn, mmio = mmio :: Nil, flush = "b00".U, empty = l2Empty, enable = true)(
8283
CacheConfig(name = "l2cache", totalSize = 128, cacheLevel = 2))
8384
l2cacheOut.coh.resp.ready := true.B
8485
l2cacheOut.coh.req.valid := false.B

0 commit comments

Comments
 (0)