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