They 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.