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