Forum Discussion
Altera_Forum
Honored Contributor
17 years ago --- Quote Start --- an asynchronus assignment acting in parallel to a clock synchronous assignment within the same process --- Quote End --- I think this IS the problem.. Here is the relevant part of the code
process(Reset,Clock,RS232InInt,PLLValid )
.
.
.
.
.
.
elsif(PLLValid'Event and PLLValid='1') then
I_PLLOutput<=CONV_INTEGER(PLL);
S_PLLValid<='1';
elsif(S_PLLValid='1') then
S_PLLValid<='0'; I tried to put the signals menioned in the error in the sensitivity list but that did not work. How do I change the code ? Thanks !