blob: 7a7742b413d9b2328cc10a5e0e1e1f39c5e977d3 [file] [log] [blame]
/*
:name: array_addressing
:description: array addressing test
:should_fail: 0
:tags: 11.5.2
*/
module top();
logic [7:0] mem [0:1023];
logic [7:0] a;
initial begin
a = mem[123];
end
endmodule