[fast486]: code formatting + add a comment about the instruction 0xF1.
[reactos.git] / reactos / lib / fast486 / fpu.c
index 73484ee..6a16fdf 100644 (file)
@@ -125,7 +125,7 @@ Fast486FpuAdd(PFAST486_STATE State,
     /* Find the largest exponent */
     TempResult.Exponent = max(FirstOperand->Exponent, SecondOperand->Exponent);
 
-    /* Adjust the first operand to it */
+    /* Adjust the first operand to it... */
     if (FirstAdjusted.Exponent < TempResult.Exponent)
     {
         FirstAdjusted.Mantissa >>= (TempResult.Exponent - FirstAdjusted.Exponent);