2 use IEEE.std_logic_1164.all;
10 architecture struct of bug is
11 type entry_t is record
15 type table_t is array (natural range<>, natural range<>) of entry_t;
17 function fun return table_t is
18 variable ret : table_t(0 to 7, 0 to 7);
23 constant table : table_t := fun;
24 constant entry : entry_t := table(0, 0);