verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1536 / ent2.vhdl
blobfabf756e81c1675eee9c2543f1c9ba84021b34ea
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity ent2 is
5     port (
6         i: in bit_vector(3 downto 0);
7         o: out std_ulogic_vector(3 downto 0)
8     );
9 end entity;
11 architecture arch of ent2 is
12 begin
13     o <= to_stdulogicvector(i);
14 end architecture;