Fixed typo in COUNT8 model
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Mon, 7 Aug 2017 22:49:30 +0000 (15:49 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Mon, 14 Aug 2017 17:45:39 +0000 (10:45 -0700)
techlibs/greenpak4/cells_sim_digital.v

index f8ab5bf3761eb6e653a4602538a12915292c0384..ccf9840c7b0408886e1f4b58e0206dd728378b35 100644 (file)
@@ -61,7 +61,7 @@ module GP_COUNT8(
                                                count   <= COUNT_TO;
 
                                        if(RST)
-                                               count   <= COUNT_0;
+                                               count   <= 0;
                                end
                        end
 
@@ -72,7 +72,7 @@ module GP_COUNT8(
                                                count   <= COUNT_TO;
 
                                        if(!RST)
-                                               count   <= COUNT_0;
+                                               count   <= 0;
                                end
                        end