blob: 65612ab1e6e883c410d3356c88efa40a4d7c418f [file] [log] [blame]
/*
:name: multi_dim_array_addressing
:description: multi-dimensional array addressing test
:should_fail: 0
:tags: 11.5.2
*/
module top();
logic [7:0] mem [0:1023][0:3];
logic [7:0] a;
initial begin
a = mem[123][2];
end
endmodule