more test coverage and dead code removal

This commit is contained in:
Zachary Snow
2021-03-09 15:48:10 -05:00
parent 937a583e41
commit 38cc25fad6
21 changed files with 115 additions and 44 deletions
+7
View File
@@ -0,0 +1,7 @@
module top;
initial
fork
$display("A");
$display("B");
join
endmodule
+9
View File
@@ -136,4 +136,13 @@ module top;
$display("Block F-1");
end
initial begin
int i;
for (i = 0; i < 10; ++i)
if (i < 5)
$display("Loop F:", i);
else
break;
end
endmodule
+6
View File
@@ -112,4 +112,10 @@ module top;
$display("Block F-1");
end
initial begin : loop_f
integer i;
for (i = 0; i < 5; ++i)
$display("Loop F:", i);
end
endmodule