Forum Discussion

FabianL's avatar
FabianL
Icon for Occasional Contributor rankOccasional Contributor
4 months ago
Solved

Qsys: EMIF IP Core: usr_reset associated Clock

Hello, I am a bit confused by the Usage of the emif_usr_reset_n signal of the Intel EMIF IP Core. I have added a EMIF IP Core to our Platform Designer project. Based on the Documentation (4.1.1.14...
  • AdzimZM_Altera's avatar
    3 months ago

    Hi Fabian,


    The reset is coming from these:


    ***

    always_ff @(posedge sync_clk_pri or negedge async_reset_n_pri) begin

    if (~async_reset_n_pri) begin

    reset_sync_pri_sdc_anchor <= '0;

    end else begin

    reset_sync_pri_sdc_anchor <= reset_sync_pri_pre_reg;

    end

    end

    ***


    You can run simulation to check the synchronous reset behavior.


    Regards,

    Adzim