verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / unary01 / func.vhdl
blobe931a0c673d3936fe5f4af3dec2e88f334e7052a
1 library ieee;
2 use ieee.std_logic_1164.all;
3 use ieee.numeric_std.all;
5 entity func is
6   port (a, b : in std_logic_vector(7 downto 0);
7         o, p : out std_logic);
8 end func;
10 architecture behav of func is
11 begin
12   o <= "or"(a);
13   p <= "and"(b);
14 end behav;