- Make transfrorms run in as close to same order as before

- Fix parsing of PadPlacement JSON
This commit is contained in:
chick
2020-09-29 10:11:46 -07:00
parent f51156bf1f
commit 1a82c082b3
8 changed files with 66 additions and 17 deletions

View File

@@ -257,9 +257,10 @@ class IOPadSpec extends FlatSpec with Matchers {
*/
it should "create proper IO pads + black box in verilog" in {
val dir = "test_run_dir/PadsVerilog"
(new ChiselStage).emitFirrtl(
(new ChiselStage).emitVerilog(
new ExampleTopModuleWithBB,
Array("-td", dir, "-X", "verilog")
// Array("-td", dir, "-X", "verilog")
Array("-td", dir)
)
checkOutputs(dir)
}