Real-Number Data in IEEE Format

Last reviewed: January 23, 1995
Article ID: Q30601
The information in this article applies to:
  • Microsoft Macro Assembler for MS-DOS, versions 5.1 and 6.0
  • Microsoft Macro Assembler for OS/2, version 6.0

SUMMARY

By default, the Microsoft Macro Assembler Versions 5.1 (MASM) and later assemble real-number data in IEEE format. The previous versions of the assemblers used the Microsoft binary format by default.

MORE INFORMATION

The following is the IEEE format for encoding 4- and 8-byte real numbers:

   Short Real Number
     31      23      15      7       0
    _________________________________
   |_|_______|_______|_______|_______|
   ^ ^       ^                       ^
   | |       |                       |
   | Exponent|                       |
   |         |Mantissa ------------->|
   |Sign


The parts of the real numbers are described below:

  1. Sign (0 for positive or 1 for negative) is in the upper bit of the first byte.

  2. Exponent is in the next bits in sequence (8 bits for a short real number or 11 bits for a long real number).

  3. All except the first-set bit of Mantissa are in the remaining bits of the variable (13 bits for short real numbers, and 52 bits for long real numbers). Because the first significant bit is known to be set, it does not need to be stored.


Additional reference words: kbinf 5.10 6.00
KBCategory: kbtool
KBSubCategory: MLIss


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 23, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.