clkbufmap: Add support for inverters in clock path.

This commit is contained in:
Marcin Kościelnicki
2019-11-25 20:40:39 +01:00
committed by Marcin Kościelnicki
parent 7562e7304e
commit 6cdea425b8
4 changed files with 69 additions and 6 deletions
+5 -1
View File
@@ -126,7 +126,11 @@ endmodule
// assign O = IO, IO = T ? 1'bz : I;
// endmodule
module INV(output O, input I);
module INV(
(* clkbuf_inv = "I" *)
output O,
input I
);
assign O = !I;
endmodule