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