removed unnecessary mdue gating

This commit is contained in:
Cedar Turek 2022-12-30 17:53:06 -08:00
parent ba90d868db
commit ae447e42df

View File

@ -87,7 +87,7 @@ module fdivsqrtpreproc (
end end
// Quotient is negative // Quotient is negative
assign NegQuotE = (AsE ^ BsE) & MDUE; assign NegQuotE = AsE ^ BsE;
// Force integer inputs to be postiive // Force integer inputs to be postiive
mux2 #(`XLEN) posamux(AE, -AE, AsE, PosA); mux2 #(`XLEN) posamux(AE, -AE, AsE, PosA);