mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
pack arrays assigned to other arrays
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
module top;
|
||||
logic [1:0] a [3];
|
||||
logic [1:0] b [3];
|
||||
always_comb a = b;
|
||||
endmodule
|
||||
@@ -0,0 +1,5 @@
|
||||
module top;
|
||||
reg [5:0] a;
|
||||
wire [5:0] b;
|
||||
always @(*) a = b;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user