Forum Discussion
Altera_Forum
Honored Contributor
11 years agoThanks Tricky!
I tried the same with a higher version of Quartus II and got the same error. A colleague of mine suggested defining the 2D-Matrix based on 1-D array, and it actually worked.
type GVec is array (0 to 1) of GVal;
type GMat is array (0 to 1) of GVec;
In the top-level entity:
fGab <= GMTest(0)(0);