From f52b5b39edf3075fbee7244aabea1a12f6cdc70b Mon Sep 17 00:00:00 2001 From: Alessandro Comodi Date: Mon, 15 Mar 2021 11:02:56 +0100 Subject: fpga_interchange: tests: add techmap optional source file Signed-off-by: Alessandro Comodi --- fpga_interchange/examples/tests/counter/remap.v | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 fpga_interchange/examples/tests/counter/remap.v (limited to 'fpga_interchange/examples/tests/counter/remap.v') diff --git a/fpga_interchange/examples/tests/counter/remap.v b/fpga_interchange/examples/tests/counter/remap.v new file mode 100644 index 00000000..6dfc0b4a --- /dev/null +++ b/fpga_interchange/examples/tests/counter/remap.v @@ -0,0 +1,11 @@ +module INV(input I, output O); + +LUT1 #(.INIT(2'b01)) _TECHMAP_REPLACE_ (.I0(I), .O(O)); + +endmodule + +module BUF(input I, output O); + +LUT1 #(.INIT(2'b10)) _TECHMAP_REPLACE_ (.I0(I), .O(O)); + +endmodule -- cgit v1.2.3