automatically fix simple declaration order issues

This commit is contained in:
Zachary Snow
2020-07-08 22:20:40 -06:00
parent d2a0ba0d13
commit a7673c55fd
4 changed files with 40 additions and 7 deletions
+5
View File
@@ -0,0 +1,5 @@
module top;
assign arr[0][0] = 1;
logic [1:0][2:0] arr;
initial $display("%b", arr);
endmodule
+5
View File
@@ -0,0 +1,5 @@
module top;
wire [5:0] arr;
assign arr[0] = 1;
initial $display("%b", arr);
endmodule