mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
clkbufmap: Add support for inverters in clock path.
This commit is contained in:
parent
7562e7304e
commit
6cdea425b8
4 changed files with 69 additions and 6 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue