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
/
issue2084
/
bug.vhdl
blob
847ac0f1ba14c65442b2ff164e968ee24b05dd44
1
library IEEE;
2
use IEEE.std_logic_1164.all;
3
4
entity bug is
5
port (
6
src : in std_ulogic_vector(31 downto 0)
7
);
8
end bug;
9
10
architecture rtl of bug is
11
type array_t is array(0 to 0) of src'subtype;
12
signal s : array_t;
13
begin
14
15
end architecture;