Forum Discussion
Altera_Forum
Honored Contributor
15 years agoYou should stick to the standard process model to be sure it can be synthesized:
process (clock,reset)
begin
if (reset='1') then
-- reset condtions
elsif rising_edge(clock) then
-- clocked actions
end if;
end process;
Don't try to do anything on the falling edge of the clock in the same process.