1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-04 07:43:23 +00:00
Files
YosysHQ.nextpnr/fpga_interchange/examples/remap.v
Keith Rothman 9cbfd0b967 Add counter test.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
2021-02-26 11:01:22 -08:00

12 lines
199 B
Verilog

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