Forum Discussion
Altera_Forum
Honored Contributor
15 years agoDont 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.