verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1536 / ent1.vhdl
blobe3f811006376daee531886747a6387f4b1f54bcd
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity ent1 is
5     port (
6         i: in bit;
7         o: out std_ulogic
8     );
9 end entity;
11 architecture arch of ent1 is
12 begin
13     o <= to_stdulogic(i);
14 end architecture;