Forum Discussion
Altera_Forum
Honored Contributor
17 years agoI guess, the conflict is from concurrent assignment in another process, that isn't shown in the posting, also the array definition is unknown. If you have concurrent assignments to registers, they have to reside in one process to allow the compiler to resolve the access.
B.T.W., I wonder which Quartus version your are using, mine has no capital letter ERROR messages. The initialisation could be achieved more comfortable (and better readable) bygra_Tablica(0) <= (OTHERS =>(OTHERS => '0'));
--or probably
gra_Tablica <= (OTHERS =>(OTHERS =>(OTHERS => '0')));