verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1324 / foo.vhdl
blob84c7698f6dd79872a7f101dbabd3c6d6a3ca1e2e
1 library ieee;
2 use ieee.std_logic_1164.all;
3 use ieee.numeric_std.all;
4 use work.pkg.all;
6 entity foo is
7   port (
8     bus_in : in bus_t(data(7 downto 0));
9     bus_out : out bus_t(data(7 downto 0))
10   );
11 end foo;
13 architecture foo of foo is
15 begin
17   bus_out <= bus_in;
19 end foo;