aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/greenpak4/cells_sim.v5
1 files changed, 3 insertions, 2 deletions
diff --git a/techlibs/greenpak4/cells_sim.v b/techlibs/greenpak4/cells_sim.v
index 4602c6cc4..54e5a423c 100644
--- a/techlibs/greenpak4/cells_sim.v
+++ b/techlibs/greenpak4/cells_sim.v
@@ -55,10 +55,11 @@ module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT);
assign OUT = INIT[{IN3, IN2, IN1, IN0}];
endmodule
-module GP4_VDD(output OUT);
+module GP_VDD(output OUT);
assign OUT = 1;
endmodule
-module GP4_VSS(output OUT);
+module GP_VSS(output OUT);
assign OUT = 0;
endmodule
+