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

@ -1,16 +1,16 @@
module test2Tb();
reg [3:0] a;
wire [6:0] b;
test2 uut(a,b);
initial begin
$dumpfile("test2v.vcd");
$dumpvars;
$display("Success!");
a = 4'd5; #10;
$finish;
end
module test2Tb();
reg [3:0] a;
wire [6:0] b;
test2 uut(a,b);
initial begin
$dumpfile("test2v.vcd");
$dumpvars;
$display("Success!");
a = 4'd5; #10;
$finish;
end
endmodule