Fixed typo in COUNT8 model

This commit is contained in:
Andrew Zonenberg 2017-08-07 15:49:30 -07:00
parent 60dd5dba7b
commit 4504dd78e9
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ module GP_COUNT8(
count <= COUNT_TO; count <= COUNT_TO;
if(RST) if(RST)
count <= COUNT_0; count <= 0;
end end
end end
@ -72,7 +72,7 @@ module GP_COUNT8(
count <= COUNT_TO; count <= COUNT_TO;
if(!RST) if(!RST)
count <= COUNT_0; count <= 0;
end end
end end