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