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
/
issue1628
/
test2.vhdl
blob
93f2d094ac4e636cc32d1cee98828f0bedffefe9
1
library ieee;
2
use ieee.std_logic_1164.all;
3
use ieee.numeric_std_unsigned.all;
4
5
entity test2 is
6
port (
7
a : out std_logic_vector(3 downto 0));
8
end entity test2;
9
10
architecture synthesis of test2 is
11
begin
12
a <= to_stdlogicvector(10, 4);
13
end architecture synthesis;
14