Forum Discussion
Altera_Forum
Honored Contributor
16 years agoA clock enable should be active for one clock cycle, e.g.:
process(word_count)
begin
if word_count = x"ff" then
word_clk <= '1';
else
word_clk <= '0';
end if;
end process; and if reset = '0' then
--
elsif clk20'event and clk20 = '1' then
if word_clk = '1' then
DN0 <= CN2;
--
end if;
end if;