Forum Discussion
Altera_Forum
Honored Contributor
15 years agoAll of my resets are handled asynchronously; i.e.
always @(posedge clock or negedge reset_n) begin if (!reset_n) ... else ... end Now, granted that reset_n is not an input pin. It is generated from a counter -- basically after the FPGA is programmed, the reset_n is held low for a number of clocks before it is release. Do you still see issues with the reset_n as implemented here?