3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 14:24:08 +00:00

Get rid of verific warning in abstraction example

Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
Claire Wolf 2020-04-03 15:28:23 +02:00
parent d18656084c
commit a4885ce494

View file

@ -9,7 +9,7 @@ module demo (
if (reset)
counter <= 0;
else
counter <= counter + 1;
counter <= counter + 20'd 1;
end
assign A = counter == 123456;