Renamed GP4_V* cells to GP_V* for consistency
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Sat, 26 Mar 2016 20:42:41 +0000 (13:42 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Sat, 26 Mar 2016 20:42:41 +0000 (13:42 -0700)
techlibs/greenpak4/cells_sim.v

index 4602c6cc4750b97994b43657096cdf4451c82c9d..54e5a423c4e06e8710ebd0f3cdf7dc727c351e19 100644 (file)
@@ -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
+