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
/
issue1324
/
foo.vhdl
blob
84c7698f6dd79872a7f101dbabd3c6d6a3ca1e2e
1
library ieee;
2
use ieee.std_logic_1164.all;
3
use ieee.numeric_std.all;
4
use work.pkg.all;
5
6
entity foo is
7
port (
8
bus_in : in bus_t(data(7 downto 0));
9
bus_out : out bus_t(data(7 downto 0))
10
);
11
end foo;
12
13
architecture foo of foo is
14
15
begin
16
17
bus_out <= bus_in;
18
19
end foo;