3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-30 07:53:16 +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

12
tests/opt/opt_rmdff_sat.v Normal file
View file

@ -0,0 +1,12 @@
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