Forum Discussion
Altera_Forum
Honored Contributor
14 years agoIIRC, if Quartus runs out of multipliers, it should start making ALM versions for you. But if you want to select which multipler will use logic, in VHDL you can use attributes:
signal a, b : unsigned(8 downto 0);
signal res : unsigned(17 downto 0);
attribute multstyle : string;
attribute multstyle of res : signal is "logic";
res <= a * b;