Skip to content

Commit

Permalink
UPDATE: match chipyard DigitalTop
Browse files Browse the repository at this point in the history
  • Loading branch information
T-K-233 committed Dec 27, 2024
1 parent 5edaa85 commit a0c5281
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/DigitalTop.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ class DigitalTop extends BlackBox {
val uart_0_txd = Output(Bool())
val uart_0_rxd = Input(Bool())
val clock_tap = Output(Clock())
val axi4_lite_s_axi = new RawAXI4Lite()
val periph_axi4_s_axi = new RawAXI4Lite()
})
}
2 changes: 1 addition & 1 deletion src/main/scala/Elaborate.scala
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ object GenerateBitstream extends App {
)


val chipyard_sources = new File("chipyard/sims/verilator/generated-src/chipyard.harness.TestHarness.TinyRocketConfig/gen-collateral").listFiles(new FileFilter {
val chipyard_sources = new File("chipyard/sims/verilator/generated-src/chipyard.harness.TestHarness.WithPeripheralAXI4LiteTinyRocketConfig/gen-collateral").listFiles(new FileFilter {
def accept(file: File): Boolean = file.isFile || file.isDirectory
}).flatMap(file => if (file.isDirectory) file.listFiles().map(_.getAbsolutePath) else Array(file.getAbsolutePath))
// Exclude files listed in excluded_sources
Expand Down

0 comments on commit a0c5281

Please sign in to comment.