fix struct array pattern conversion (resolves #60)

This commit is contained in:
Zachary Snow
2020-01-20 17:26:03 -08:00
parent cf4c2a5491
commit 17e17ebd7f
3 changed files with 36 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
module top;
initial begin
$display(1'b0);
$display(1'b0);
$display(1'b1);
$display(1'b0);
end
endmodule