mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
clkbufmap: Add support for inverters in clock path.
This commit is contained in:
committed by
Marcin Kościelnicki
parent
7562e7304e
commit
6cdea425b8
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user