Altera_Forum
Honored Contributor
9 years agoInterrupt detection
Is it right to do so?
if (rising_edge(CLK)) then
busy1 <= BUSY;
busy2 <= busy1;
if (busy1 = '1' and busy2 = '0') then
int <= '1';
else
int <= '0...