1
0
mirror of synced 2026-02-07 09:07:09 +00:00

clkbufmap: Add support for inverters in clock path.

This commit is contained in:
Marcin Kościelnicki
2019-11-24 16:05:45 +01:00
committed by Marcin Kościelnicki
parent 7562e7304e
commit 6cdea425b8
4 changed files with 69 additions and 6 deletions

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