Altera_Forum
Honored Contributor
9 years agoDoes Quartus (13.1) synthesizer supports configurations ?
Hi,
The question is in the title. My impression is that the answer is "no", but i would like to have a confirmation. In file mul.vhd, i have one entity (mul8) and two architectures (rtl1 and rtl2). Whatever i write in the top level file ... * direct architecture selection : M:entity work.mul(rtl1) port map(..); * single line configuration : for M: mul8 use entity work.mul8(rtl1); * distinct, top-level configuration unit : configuration top_conf of top is for arch for T: mul8 use entity work.mul8(rtl1); end for;end for; end configuration; .. the synthesizer systematically uses the last architecture defined in mul.vhd (rtl2 in my case) :( Any help or clue appreciated JS