mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-13 17:36:16 +00:00
Renamed GP4_V* cells to GP_V* for consistency
This commit is contained in:
parent
a922d705d4
commit
af15b92c86
1 changed files with 3 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue