diff options
Diffstat (limited to 'fpga_interchange/examples/const_wire/wire.v')
-rw-r--r-- | fpga_interchange/examples/const_wire/wire.v | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fpga_interchange/examples/const_wire/wire.v b/fpga_interchange/examples/const_wire/wire.v deleted file mode 100644 index 5b1ab692..00000000 --- a/fpga_interchange/examples/const_wire/wire.v +++ /dev/null @@ -1,8 +0,0 @@ -module top(output o, output o2, output o3, output o4); - -assign o = 1'b0; -assign o2 = 1'b1; -assign o3 = 1'b0; -assign o4 = 1'b1; - -endmodule |