repo.or.cz
/
ghdl-vlg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
verilog: add sv_maps iterators
[ghdl-vlg.git]
/
testsuite
/
synth
/
oper01
/
match01.vhdl
blob
7b4148fef0e5b0c8eff5001b588e278087809bfd
1
library ieee;
2
use ieee.std_logic_1164.all;
3
use ieee.numeric_std.all;
4
5
entity match01 is
6
port (v : std_ulogic_vector(11 downto 0);
7
r : out boolean);
8
end match01;
9
10
architecture behav of match01 is
11
begin
12
r <= std_match(v, "1111----0000");
13
end behav;