3
0
Fork 0
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:
Claire Wolf 2020-04-03 15:28:23 +02:00
parent d18656084c
commit a4885ce494

View file

@ -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;