verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / conv01 / conv01.vhdl
blobf4cd8bab9b76c6f842234e3ec49dfcc2ecdbe03e
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity conv01 is
5   port (a, b : in std_logic;
6         z : out std_logic);
7 end conv01;
9 architecture behav of conv01 is
10 begin
11   z <= not a and std_logic(b);
12 end behav;