blob: 0344f41cd4babc26435f5557cca3cd86cc5268d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
entity ent is
end ent;
architecture ent of ent is
type my_record is record
field_a : bit_vector; -- Parametrized on instantiation
field_b : bit_vector(31 downto 0); -- Width set by generic
end record;
signal bar : my_record(field_a(7 downto 0));
signal baz : my_record(field_a(7 downto 0));
begin
end ent;
|