aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/remap_nexus.v
diff options
context:
space:
mode:
Diffstat (limited to 'fpga_interchange/examples/remap_nexus.v')
-rw-r--r--fpga_interchange/examples/remap_nexus.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/fpga_interchange/examples/remap_nexus.v b/fpga_interchange/examples/remap_nexus.v
new file mode 100644
index 00000000..fa817762
--- /dev/null
+++ b/fpga_interchange/examples/remap_nexus.v
@@ -0,0 +1,4 @@
+// Inverter support is still a TODO
+module INV(input A, output Z);
+ LUT4 #(.INIT("0x5555")) _TECHMAP_REPLACE_ (.A(A), .B(1'b1), .C(1'b1), .D(1'b1), .Z(Z));
+endmodule