additional codegen test coverage

- assertions, gen case, and inout
- simplify block codegen
- remove blank lines in tasks with no inputs
This commit is contained in:
Zachary Snow
2020-12-11 12:41:59 -07:00
parent 2311d3e2d6
commit 2a2d819baa
11 changed files with 96 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
module top;
task t;
input x;
begin : y
reg z;
end
endtask
initial t(0);
endmodule