pack arrays assigned to other arrays

This commit is contained in:
Zachary Snow
2020-02-13 23:59:01 -05:00
parent 104f98011e
commit aea64e903c
3 changed files with 22 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
module top;
logic [1:0] a [3];
logic [1:0] b [3];
always_comb a = b;
endmodule