diff options
author | Alessandro Comodi <acomodi@antmicro.com> | 2021-07-05 13:34:34 +0200 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-07-06 09:57:26 +0100 |
commit | 6edc11de4de20aa5194f5cf3705a320b1891a2d6 (patch) | |
tree | 9bc2c112922b53f3009ca8cf2b72a91607d70689 /fpga_interchange/examples/tests/obuftds/run.tcl | |
parent | 8a9fb810369aeb5eed128ef4e7d4de456ef1ec8f (diff) | |
download | nextpnr-6edc11de4de20aa5194f5cf3705a320b1891a2d6.tar.gz nextpnr-6edc11de4de20aa5194f5cf3705a320b1891a2d6.tar.bz2 nextpnr-6edc11de4de20aa5194f5cf3705a320b1891a2d6.zip |
interchange: tests: add obuftds test
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
Diffstat (limited to 'fpga_interchange/examples/tests/obuftds/run.tcl')
-rw-r--r-- | fpga_interchange/examples/tests/obuftds/run.tcl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fpga_interchange/examples/tests/obuftds/run.tcl b/fpga_interchange/examples/tests/obuftds/run.tcl new file mode 100644 index 00000000..b8d0df72 --- /dev/null +++ b/fpga_interchange/examples/tests/obuftds/run.tcl @@ -0,0 +1,14 @@ +yosys -import + +read_verilog $::env(SOURCES) + +synth_xilinx -nolutram -nowidelut -nosrl -nocarry -nodsp + +# opt_expr -undriven makes sure all nets are driven, if only by the $undef +# net. +opt_expr -undriven +opt_clean + +setundef -zero -params + +write_json $::env(OUT_JSON) |