mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-05 01:03:02 +02:00
automatically fix simple declaration order issues
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
module top;
|
||||
assign arr[0][0] = 1;
|
||||
logic [1:0][2:0] arr;
|
||||
initial $display("%b", arr);
|
||||
endmodule
|
||||
@@ -0,0 +1,5 @@
|
||||
module top;
|
||||
wire [5:0] arr;
|
||||
assign arr[0] = 1;
|
||||
initial $display("%b", arr);
|
||||
endmodule
|
||||
Reference in New Issue
Block a user