Forum Discussion
CLa_R
Occasional Contributor
6 years agoIt is possible to make a edge detector in VHDL? I think that It can to resolve the problem.
The Edge detector is a circuit like this:
Can I make it in VHDL?
I try with:
process (myInput)
begin
If (not (not myInput)) xor myInput = '1' then
--Edge detect!
end if;
end process;but this code do not compile/work (Error (10476): VHDL error at Control.vhd(90): type of identifier "MyInput" does not agree with its usage as "boolean" type)