From af15b92c861f11d1f4b5016fed0cb8cb45af9175 Mon Sep 17 00:00:00 2001 From: Andrew Zonenberg Date: Sat, 26 Mar 2016 13:42:41 -0700 Subject: [PATCH] Renamed GP4_V* cells to GP_V* for consistency --- techlibs/greenpak4/cells_sim.v | 5 +++-- 1 file 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 +