1
0
mirror of synced 2026-02-17 13:26:56 +00:00

Fixed typo in COUNT8 model

This commit is contained in:
Andrew Zonenberg
2017-08-07 15:49:30 -07:00
parent 60dd5dba7b
commit 4504dd78e9

View 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