blob: a4590b2a4910d80059d010a9bbde78ca349d9c7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
entity repro is
end entity repro;
architecture TB of repro is
begin
DM: process
type t_ram is array(natural range <>) of bit_vector;
type p_ram is access t_ram;
variable myram : p_ram;
begin
myram := new t_ram(0 to 31)(15 downto 0);
wait;
end process DM;
end architecture TB;
|