mirror of https://github.com/zachjs/sv2v.git
6 lines
107 B
Systemverilog
6 lines
107 B
Systemverilog
|
|
module top;
|
||
|
|
assign arr[0][0] = 1;
|
||
|
|
logic [1:0][2:0] arr;
|
||
|
|
initial $display("%b", arr);
|
||
|
|
endmodule
|