Forum Discussion
Altera_Forum
Honored Contributor
14 years agoEmbedded multiplier delay
Do embedded multipliers (by '*' VHDL operator) in Cyclone II device have delay only through "combinational logic" or do they require some 250MHz clock cycles (in Cyclone II Device Handbook I've read ...
Altera_Forum
Honored Contributor
14 years agoDepends on. For an output register, write:
if rising_egge(clk) then
c <= a * b;
end if; Or input- and output register if rising_egge(clk) then
as <= a;
bs <= b;
c <= as * bs;
end if;