New Keywords Near16, Near32, Far16 and Far32 in MASM

Last reviewed: January 23, 1995
Article ID: Q119517
The information in this article applies to:
  • Microsoft Macro Assembler for MS-DOS, version 6.10
  • Microsoft Macro Assembler for Windows NT, version 6.11

SUMMARY

In MASM 6.1 there are four new distance specifiers: near16, near32, far16, and far32.

A near pointer consists of an offset. A near16 pointer is a near pointer that consists of a 16 bit offset. A near32 pointer is a near pointer consisting of a 32 bit offset. A far pointer is a pointer that consists of both a segment and an offset. A far16 pointer is a far pointer that consists of a segment and a 16 bit offset. A far32 pointer is a far pointer consisting of a segment and a 32 bit offset. Segments are always 16 bits. Note: near32 and far32 pointers are only available on 386 and successive processors.

MORE INFORMATION

The properties of the new distance specifiers are summarized by the following table:

  pointer    size in bits        contain            example
  -------    ------------    -----------------    -----------
  near16       16 bits           offset_16            IP
  near32       32 bits           offset_32            EIP
  far16        32 bits       segment:offset_16       CS:IP
  far32        48 bits       segment:offset_32       CS:EIP


Additional reference words: kbinf 6.10
KBCategory: kbprg
KBSubCategory: MASMLngIss


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.