Forum Discussion
Altera_Forum
Honored Contributor
12 years agoInfering DSP block in Arria V
Hello I'm trying to infer DSP blocks in my Arria V design as a replacement for my former ALTMULT_ADD instance in Stratix III. I notice that the input registers are placed outside (i.e. the DSP ...
Altera_Forum
Honored Contributor
12 years agotry this direct coding style:
process(rst,clk)
begin
if rst = '1' then
...
elsif rising_edge(clk) then
A_reg <= A;
B_reg <= B;
prod <= A_reg * B_reg;
sum <= sum + prod;
end if;
end process;
out <= sum;