verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / oper01 / match01.vhdl
blob7b4148fef0e5b0c8eff5001b588e278087809bfd
1 library ieee;
2 use ieee.std_logic_1164.all;
3 use ieee.numeric_std.all;
5 entity match01 is
6   port (v : std_ulogic_vector(11 downto 0);
7         r : out boolean);
8 end match01;
10 architecture behav of match01 is
11 begin
12   r <= std_match(v, "1111----0000");
13 end behav;