blob: 6dfc0b4aac05eb26c7b6eef57545cf10d3dc16e6 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|