blob: fe4f4914527e5a3ff465d475caa1cc039b829268 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
entity ent2 is
end entity;
architecture impl of ent2 is
type bitvv is array(natural range <>) of bit_vector;
signal foo: bitvv(2 downto 0)(0 downto 0);
begin
foo <= (
2 downto 1 => foo(1 downto 0),
0 => foo(2)
);
end architecture;
|