Forum Discussion
RichardT_altera
Super Contributor
8 months agoI will need your design (Project > Archive Project) to investigate why the asynchronous clear to synchronous clear conversion is not taking place. The report alone does not provide enough information to determine the cause.
Alternatively, you can remove the asynchronous clear/reset by changing your code
example, use:
always @(posedge clk)
instead of
always @(posedge clk or negedge rst_n)
You may check AN917, 1.4.1. Reset Coding Techniques, for further details.
Regards,
Richard Tan