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;
reg [5:0] a;
wire [5:0] b;
always @(*) a = b;
endmodule