13 lines
279 B
Scala
13 lines
279 B
Scala
|
|
package test
|
||
|
|
|
||
|
|
import MAC._
|
||
|
|
import chisel3._
|
||
|
|
import chisel3.stage._
|
||
|
|
|
||
|
|
object testModule extends App {
|
||
|
|
(new chisel3.stage.ChiselStage).execute( Array("--target-dir", "generated/", "-e", "verilog" ) ++ args, Seq(
|
||
|
|
ChiselGeneratorAnnotation(() => {
|
||
|
|
new MIIM()
|
||
|
|
})
|
||
|
|
))
|
||
|
|
}
|