Forum Discussion
Altera_Forum
Honored Contributor
15 years ago --- Quote Start --- Dont use the keys as clocks. You're asking for trouble. Clock the process with the system clock. You can make a falling edge detector by registering the key states, then you can do: if key(0) = '0' and key_old(0) = '1' then Clocking the process will also get you away from the incomplete sensitivity list you have at the moment. --- Quote End --- Thanks a lot for the advice, exactly what I was looking for. I implemented your method and it works great. Thanks.