diff options
-rw-r--r-- | techlibs/greenpak4/cells_sim_digital.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/greenpak4/cells_sim_digital.v b/techlibs/greenpak4/cells_sim_digital.v index f8ab5bf37..ccf9840c7 100644 --- a/techlibs/greenpak4/cells_sim_digital.v +++ b/techlibs/greenpak4/cells_sim_digital.v @@ -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 |