aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples/lut/lut.v
diff options
context:
space:
mode:
Diffstat (limited to 'fpga_interchange/examples/lut/lut.v')
-rw-r--r--fpga_interchange/examples/lut/lut.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/fpga_interchange/examples/lut/lut.v b/fpga_interchange/examples/lut/lut.v
new file mode 100644
index 00000000..ca18e665
--- /dev/null
+++ b/fpga_interchange/examples/lut/lut.v
@@ -0,0 +1,5 @@
+module top(input i0, input i1, output o);
+
+assign o = i0 | i1;
+
+endmodule