verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1596 / ent_working.vhdl
blobd311b7d764362cfa4bab1ec8e2e55317915757ac
1 library ieee;
2 use ieee.std_logic_1164.all;
3 use work.v;
5 -- TOP WORKING ---
6 entity ent_working is end;
7 architecture RTL of ent_working is
8         signal a : std_logic_vector(3 downto 0) := "0101";
9 begin
10         inst_v : entity v
11         port map (input => a);
12 end;