From: Andrew Zonenberg Date: Mon, 7 Aug 2017 22:49:30 +0000 (-0700) Subject: Fixed typo in COUNT8 model X-Git-Tag: yosys-0.8~346^2~9 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4504dd78e9bba5b768fbc3a91e006c5679366e15;p=yosys.git Fixed typo in COUNT8 model --- 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