编译通过 仿真启动 请知悉 改处理器没有csr

This commit is contained in:
RuigeLee
2024-10-25 17:46:21 +08:00
parent 4737700f56
commit 78d54d2083
20 changed files with 880 additions and 69 deletions

View File

@@ -97,11 +97,25 @@ lazy val rocketchip = freshProject("rocketchip", file("./rocket-chip"))
)
lazy val rocketLibDeps = (rocketchip / Keys.libraryDependencies)
lazy val blocks = (project in file("./rocket-chip-blocks"))
.dependsOn(rocketchip)
.settings(chiselSettings)
.settings(commonSettings)
.settings(name := "blocks", organization := "org.chipsalliance")
.settings(
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.json4s" %% "json4s-jackson" % "3.6.6",
"org.scalatest" %% "scalatest" % "3.2.0" % "test"
)
)
lazy val root = (project in file("."))
.dependsOn(rocketchip)
.dependsOn(blocks)
.settings(
name := "%NAME%",
libraryDependencies ++= Seq(