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
|
endmodule
|
||||||
|
|
||||||
module BUFGSR(I, O);
|
module BUFGSR(I, O);
|
||||||
|
parameter INVERT = 0;
|
||||||
|
|
||||||
input I;
|
input I;
|
||||||
output O;
|
output O;
|
||||||
|
|
||||||
assign O = I;
|
assign O = INVERT ? ~I : I;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module BUFGTS(I, O);
|
module BUFGTS(I, O);
|
||||||
|
parameter INVERT = 0;
|
||||||
|
|
||||||
input I;
|
input I;
|
||||||
output O;
|
output O;
|
||||||
|
|
||||||
assign O = I;
|
assign O = INVERT ? ~I : I;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module FDDCP (C, PRE, CLR, D, Q);
|
module FDDCP (C, PRE, CLR, D, Q);
|
||||||
|
|
Loading…
Reference in New Issue