Skip to content

Commit

Permalink
feat: add base emit with optimized firtool arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
SingularityKChen committed Aug 8, 2023
1 parent 1aa8b9c commit ee4ec78
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions chipware/test/src/inittest/EmitTestBase.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import utest._

abstract class EmitTestBase extends TestSuite {
val targetDir: String = "./build"
val chiselArgs: Array[String] = Array(
f"--target-dir=$targetDir"
)
val firtoolArgs: Array[String] = Array(
"-disable-all-randomization"
)
val tests: Tests
}

0 comments on commit ee4ec78

Please sign in to comment.