Forum Discussion
Altera_Forum
Honored Contributor
13 years agoYou will have to do an edge detector inside your clocked process. For example if you create a signal second_edge_delayed that is the value of second_edge on the previous cycle, then detecting a rising edge on second_edge becomes
if(second_edge_delayed='0' and second_edge='1') then