mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-12 16:28:17 +00:00
Get rid of verific warning in abstraction example
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
parent
d18656084c
commit
a4885ce494
|
@ -9,7 +9,7 @@ module demo (
|
||||||
if (reset)
|
if (reset)
|
||||||
counter <= 0;
|
counter <= 0;
|
||||||
else
|
else
|
||||||
counter <= counter + 1;
|
counter <= counter + 20'd 1;
|
||||||
end
|
end
|
||||||
|
|
||||||
assign A = counter == 123456;
|
assign A = counter == 123456;
|
||||||
|
|
Loading…
Reference in a new issue