compare test pass

This commit is contained in:
RuigeLee
2023-06-20 18:26:59 +08:00
parent 1bc7d68af8
commit ac7db49089
10 changed files with 1080 additions and 186 deletions

View File

@@ -0,0 +1,13 @@
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()
})
))
}