Forum Discussion
Altera_Forum
Honored Contributor
17 years agoYou can replace "if rising_edge(CLOCK) then" with "if CLOCK'event and CLOCK = '1' then" or you open the std_logic_1164 library and check that the rising_edge function is in there.
You can replace "if rising_edge(CLOCK) then" with "if CLOCK'event and CLOCK = '1' then" or you open the std_logic_1164 library and check that the rising_edge function is in there.