aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/tests/counter/remap.v
diff options
context:
space:
mode:
Diffstat (limited to 'fpga_interchange/examples/tests/counter/remap.v')
-rw-r--r--fpga_interchange/examples/tests/counter/remap.v11
1 files changed, 0 insertions, 11 deletions
diff --git a/fpga_interchange/examples/tests/counter/remap.v b/fpga_interchange/examples/tests/counter/remap.v
deleted file mode 100644
index 6dfc0b4a..00000000
--- a/fpga_interchange/examples/tests/counter/remap.v
+++ /dev/null
@@ -1,11 +0,0 @@
-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