Quartus synthesis of unconstraint array in a record being part of a generic package.
Hi guys, I have little example code: A generic package: library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
package test_pkg is
generic(
N : positive := 20
);
...