Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.5.2--multi_dim_array_addressing.sv
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