arshad_mir
Newbie level 4
positive edge detector flilp flop
Hi,
I want to do some activity on both rising and falling edge of signal (say tick_ip) and do some other activity when there is no rising or falling edge
if (tick_ip ' event and tick_ip = '1')then
next_clockout<= '1';
else
next_clockout<= '0';
end if;
if (tick_ip ' event and tick_ip = '0')then
next_clockout_new<= '1';
else
next_clockout_new<= '0';
end if;
But the compiler is unable to synthesize it. Can anybody help me out
Hi,
I want to do some activity on both rising and falling edge of signal (say tick_ip) and do some other activity when there is no rising or falling edge
if (tick_ip ' event and tick_ip = '1')then
next_clockout<= '1';
else
next_clockout<= '0';
end if;
if (tick_ip ' event and tick_ip = '0')then
next_clockout_new<= '1';
else
next_clockout_new<= '0';
end if;
But the compiler is unable to synthesize it. Can anybody help me out