aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/tests/ram/run.tcl
diff options
context:
space:
mode:
authorKeith Rothman <537074+litghost@users.noreply.github.com>2021-03-22 17:59:20 -0700
committerKeith Rothman <537074+litghost@users.noreply.github.com>2021-03-25 17:14:53 -0700
commit22fb2c1548d8451e2247a160e71ca1667022204a (patch)
treedf9db1d9d5b5ffc9ae933f1359f9806daa6a72f6 /fpga_interchange/examples/tests/ram/run.tcl
parent7b1df27c1a75c64e14e50d5f435287ca184425ab (diff)
downloadnextpnr-22fb2c1548d8451e2247a160e71ca1667022204a.tar.gz
nextpnr-22fb2c1548d8451e2247a160e71ca1667022204a.tar.bz2
nextpnr-22fb2c1548d8451e2247a160e71ca1667022204a.zip
Enable counter tests and add RAM tests.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'fpga_interchange/examples/tests/ram/run.tcl')
-rw-r--r--fpga_interchange/examples/tests/ram/run.tcl17
1 files changed, 17 insertions, 0 deletions
diff --git a/fpga_interchange/examples/tests/ram/run.tcl b/fpga_interchange/examples/tests/ram/run.tcl
new file mode 100644
index 00000000..79321139
--- /dev/null
+++ b/fpga_interchange/examples/tests/ram/run.tcl
@@ -0,0 +1,17 @@
+yosys -import
+
+foreach src $::env(SOURCES) {
+ read_verilog $src
+}
+
+synth_xilinx -flatten -nolutram -nowidelut -nosrl -nocarry -nodsp
+techmap -map $::env(TECHMAP)
+
+# 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)