Altera_Forum
Honored Contributor
12 years agoVHDL-2008 support for unconstrained arrays in records
Quartus II does not support unconstrained arrays in records, which would be useful to define a complex-valued data type for signed values, eg.,
-- A complex-valued signed number
type complex_signed_t is record
re : signed;
im : signed;
end record;
or for fixed-point values (using the sfixed VHDL package). The attached example shows that this feature is supported by Modelsim (including Modelsim-ASE). I filed a Service Request with Altera to ask for this feature, and the response (today) was --- Quote Start --- Our software engineering plan to add this feature support in 14.1 --- Quote End --- I figured that since this feature might be interesting to others, I'd post this to the forum. I have no idea when 14.1 will be released :) Cheers, Dave