blob: 7418f5d7248f58f49dfe02a04af0fd15d00161a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
entity aggr1 is
end;
architecture test of aggr1 is
constant tpd : time := 1 ns ;
signal A1, A0 : bit ;
function f return bit_vector is
begin
return "010";
end f;
begin
(A1, A0) <= f after tpd; -- to_slv(i, 2) after tpd ;
end;
|