verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1572 / ent.psl
blob87b1a8c488ccb24d8fd4d4f68a42cfcc5e34d1dc
1 vunit i_ent(ent(synthesis))
3 default clock is rising_edge(clk_i);
5 process (all)
6 variable num_colors : integer_vector(0 to 7);
7 begin
8 num_colors := (others => 0);
9 num_colors(to_integer(u0)) := num_colors(to_integer(u0)) + 1;
10 end process;