mirror of https://github.com/YosysHQ/yosys.git
Renamed GP4_V* cells to GP_V* for consistency
This commit is contained in:
parent
a922d705d4
commit
af15b92c86
|
@ -55,10 +55,11 @@ module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT);
|
||||||
assign OUT = INIT[{IN3, IN2, IN1, IN0}];
|
assign OUT = INIT[{IN3, IN2, IN1, IN0}];
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module GP4_VDD(output OUT);
|
module GP_VDD(output OUT);
|
||||||
assign OUT = 1;
|
assign OUT = 1;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module GP4_VSS(output OUT);
|
module GP_VSS(output OUT);
|
||||||
assign OUT = 0;
|
assign OUT = 0;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue