mirror of https://github.com/YosysHQ/yosys.git
fixed error
This commit is contained in:
parent
9bd9db56c8
commit
190b40341a
|
@ -6,6 +6,6 @@ module top ( out, clk, reset );
|
||||||
always @(posedge clk, posedge reset)
|
always @(posedge clk, posedge reset)
|
||||||
if (reset)
|
if (reset)
|
||||||
out <= 8'b0;
|
out <= 8'b0;
|
||||||
end
|
else
|
||||||
out <= out + 1;
|
out <= out + 1;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
Loading…
Reference in New Issue