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
/
issue1596
/
ent_working.vhdl
blob
d311b7d764362cfa4bab1ec8e2e55317915757ac
1
library ieee;
2
use ieee.std_logic_1164.all;
3
use work.v;
4
5
-- TOP WORKING ---
6
entity ent_working is end;
7
architecture RTL of ent_working is
8
signal a : std_logic_vector(3 downto 0) := "0101";
9
begin
10
inst_v : entity v
11
port map (input => a);
12
end;