verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / synth80 / test2.vhdl
blob473f67c748b65a82d4405d0ddc65436c34768a17
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity testcase is
5     generic (
6         init_bit : std_logic := '1'
7     );
8     port (o : out std_logic_vector (2 downto 0));
9 end testcase;
11 architecture rtl of testcase is
12     -- assigning generic to multiple parts of std_logic_vector breaks ghdlsynth
13     signal test_assign_vector : std_logic_vector(2 downto 0) := init_bit & "0" & init_bit;
14 begin
15   o <= test_assign_vector;
16 end rtl;