mirror of https://github.com/YosysHQ/yosys.git
coolrunner2: Add INVERT parameter to some BUFGs
This commit is contained in:
parent
1e3ffd57cb
commit
78fd24f40f
|
@ -143,17 +143,21 @@ module BUFG(I, O);
|
|||
endmodule
|
||||
|
||||
module BUFGSR(I, O);
|
||||
parameter INVERT = 0;
|
||||
|
||||
input I;
|
||||
output O;
|
||||
|
||||
assign O = I;
|
||||
assign O = INVERT ? ~I : I;
|
||||
endmodule
|
||||
|
||||
module BUFGTS(I, O);
|
||||
parameter INVERT = 0;
|
||||
|
||||
input I;
|
||||
output O;
|
||||
|
||||
assign O = I;
|
||||
assign O = INVERT ? ~I : I;
|
||||
endmodule
|
||||
|
||||
module FDDCP (C, PRE, CLR, D, Q);
|
||||
|
|
Loading…
Reference in New Issue