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