Forum Discussion
Altera_Forum
Honored Contributor
18 years agoAlt_asmi
Hi, I have a CyCIII connectet to a serial configuration device. I´m able to configure the CYC III with active serial. Now I want to access the Flash with the ALT_ASMI_Parallel_Interface....
Altera_Forum
Honored Contributor
18 years agoThey had me modify the file epcs_asmi.v lines as follows:
original code: initial ncs_reg = 0; // synopsys translate_on always @ ( negedge clkin_wire or posedge end_ophdly) if (end_ophdly == 1'b1) ncs_reg <= 1'b0; else if (wire_ncs_reg_ena == 1'b1) ncs_reg <= 1'b1; modify it to: initial ncs_reg =1; // synopsys translate_on always @ ( negedge clkin_wire or posedge end_ophdly) if (end_ophdly == 1'b1) ncs_reg <= 1'b1; else if (wire_ncs_reg_ena == 1'b1) ncs_reg <= 1'b0; Of course YMMV. But I'd be really surprised if CycII had the same issue, that's a relatively mature product. But then things get broken with every new release so I guess it may not be that hard to beleive.