mirror of https://github.com/YosysHQ/yosys.git
xilinx: add delays to INV
This commit is contained in:
parent
6bb3d9f9c0
commit
3b74e0fa45
|
@ -160,6 +160,9 @@ module INV(
|
||||||
input I
|
input I
|
||||||
);
|
);
|
||||||
assign O = !I;
|
assign O = !I;
|
||||||
|
specify
|
||||||
|
(I => O) = 127;
|
||||||
|
endspecify
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_lut=1 *)
|
(* abc9_lut=1 *)
|
||||||
|
|
Loading…
Reference in New Issue