Forum Discussion
Altera_Forum
Honored Contributor
13 years agoHi,
what do you mean by gating? I was thinking about smth like:process (clk_125_in, synchronized)
begin
if rising_edge(clk_125_in) then
if synchronized = '1' then
clock_recovery_counter <= (others => '0');
else
-- counting logic
end if;
end if;
end process;regards