verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1239 / repro3.vhdl
blobab817ac1d72273a6a2e3ce5e338aa6118dbb6217
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity repro3 is
5   generic ( 
6     constant DIN_WIDTH      : positive := 8;
7     constant FIFO_DEPTH     : positive := 12
8     ); 
9 end repro3;
11 architecture Behav of repro3 is
12   type       FIFO_Memory             is array (0 to FIFO_DEPTH - 1)          of STD_LOGIC_VECTOR(DIN_WIDTH - 1 downto 0);
13   
14   signal FIFO_ROW_1     : FIFO_Memory;
15 begin
16   FIFO_ROW_1<= (FIFO_ROW_1 'range=> (FIFO_ROW_1 'range=>'0'));
17 end Behav;