3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

fixed error

This commit is contained in:
Miodrag Milanovic 2019-10-18 13:15:36 +02:00
parent 9bd9db56c8
commit 190b40341a

View file

@ -6,6 +6,6 @@ module top ( out, clk, reset );
always @(posedge clk, posedge reset)
if (reset)
out <= 8'b0;
end
else
out <= out + 1;
endmodule