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
/
issue1536
/
ent2.vhdl
blob
fabf756e81c1675eee9c2543f1c9ba84021b34ea
1
library ieee;
2
use ieee.std_logic_1164.all;
3
4
entity ent2 is
5
port (
6
i: in bit_vector(3 downto 0);
7
o: out std_ulogic_vector(3 downto 0)
8
);
9
end entity;
10
11
architecture arch of ent2 is
12
begin
13
o <= to_stdulogicvector(i);
14
end architecture;