mirror of https://github.com/YosysHQ/yosys.git
Fixed typo in COUNT8 model
This commit is contained in:
parent
60dd5dba7b
commit
4504dd78e9
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue