fix combined array declarations (resolves #34)

This commit is contained in:
Zachary Snow
2019-09-11 19:32:12 +02:00
parent a0068f60f2
commit 46242aac5d
3 changed files with 34 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
module top;
reg [1:0] a[1:0];
reg [1:0] b[1:0];
reg [1:0] c[1:0], d[1:0];
reg [1:0] e[1:0], f[1:0], g;
reg [1:0] h, i[1:0];
reg [1:0] j;
reg [1:0] k;
endmodule