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:
parent
d5e8c0e6d3
commit
2b6cdfb39f
5 changed files with 1 additions and 1 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue