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
/
unary01
/
func.vhdl
blob
e931a0c673d3936fe5f4af3dec2e88f334e7052a
1
library ieee;
2
use ieee.std_logic_1164.all;
3
use ieee.numeric_std.all;
4
5
entity func is
6
port (a, b : in std_logic_vector(7 downto 0);
7
o, p : out std_logic);
8
end func;
9
10
architecture behav of func is
11
begin
12
o <= "or"(a);
13
p <= "and"(b);
14
end behav;