File size: 436 Bytes
387c3d6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | module top_tb();
reg clk, rst_n, l_start, r_start, l_clear, r_clear;
top TOP(clk, rst_n, l_start, r_start, l_clear, r_clear);
initial
begin
clk = 0;
$dumpfile("../vcd/interface_tb.vcd");
$dumpvars(0, top_tb);
rst_n = 0;
l_clear = 0;
r_clear = 0;
l_start = 0;
r_start = 0;
#2;
rst_n = 1;
l_start = 1;
r_start = 1;
#2;
l_start = 0;
r_start = 0;
#10860050;
$finish;
end
always
begin
clk = ~clk;
#1;
end
endmodule
|