3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 19:05:52 +00:00

Move tests/various/opt* into tests/opt/

This commit is contained in:
Eddie Hung 2019-08-07 21:35:48 -07:00
parent d5e8c0e6d3
commit 2b6cdfb39f
5 changed files with 1 additions and 1 deletions

View file

@ -1,12 +0,0 @@
module top (
input clk,
output reg [7:0] cnt
);
initial cnt = 0;
always @(posedge clk) begin
if (cnt < 20)
cnt <= cnt + 1;
else
cnt <= 0;
end
endmodule