diff options
Diffstat (limited to 'fpga_interchange/examples/remap_xilinx.v')
-rw-r--r-- | fpga_interchange/examples/remap_xilinx.v | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fpga_interchange/examples/remap_xilinx.v b/fpga_interchange/examples/remap_xilinx.v new file mode 100644 index 00000000..6dfc0b4a --- /dev/null +++ b/fpga_interchange/examples/remap_xilinx.v @@ -0,0 +1,11 @@ +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 |