Commented out fdiv early termination - broke fsqrt test

This commit is contained in:
David Harris 2022-12-23 00:58:55 -08:00
parent 04dd3e5144
commit 98ecd9c77d

View File

@ -116,7 +116,7 @@ module fdivsqrtfsm(
if (SpecialCaseE) state <= #1 DONE;
else state <= #1 BUSY;
end else if (state == BUSY) begin
if (step == 1 | WZeroM) state <= #1 DONE; // finished steps or terminate early on zero residual
if (step == 1 /*| WZeroM */) state <= #1 DONE; // finished steps or terminate early on zero residual
step <= step - 1;
end else if (state == DONE) begin
if (StallM) state <= #1 DONE;