From b05b98521c781fef0f9d900a53310cad9e1434b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcelina=20Ko=C5=9Bcielnicka?= Date: Tue, 23 Feb 2021 21:23:26 +0100 Subject: Add tests for some common techmap files. --- tests/techmap/pmux2mux.ys | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/techmap/pmux2mux.ys (limited to 'tests/techmap/pmux2mux.ys') diff --git a/tests/techmap/pmux2mux.ys b/tests/techmap/pmux2mux.ys new file mode 100644 index 000000000..1714a6b87 --- /dev/null +++ b/tests/techmap/pmux2mux.ys @@ -0,0 +1,15 @@ +read_verilog -icells << EOT +module top(...); + +input [3:0] A; +input [3:0] B0; +input [3:0] B1; +input [1:0] S; +output [3:0] O; + +\$pmux #(.WIDTH(4), .S_WIDTH(2)) pm (.A(A), .B({B1, B0}), .S(S), .Y(O)); + +endmodule +EOT + +equiv_opt techmap -map +/pmux2mux.v -- cgit v1.2.3