rearrangement

This commit is contained in:
2024-12-01 02:01:08 +03:00
parent 7466f916d3
commit 0237c7bcb2
277 changed files with 56884 additions and 56884 deletions

View File

@ -0,0 +1,27 @@
module timerTB ();
reg clock;
reg reset;
reg gate;
reg [2:0] counter;
reg way;
wire [5:0] count;
timer uut (clock,reset,gate,counter,way,count);
initial begin
clock = 0;
forever begin
#5 clock = ~clock;
end
end
initial begin
$dumpfile("lab5t.vcd");
$dumpvars;
reset = 1'b0; gate = 1'b1; counter = 3'b010; way = 1'b1;
#200;
$finish;
end
endmodule