OFFSET Always Returns the END of a Segment Name

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

SUMMARY

With the release of the Microsoft Macro Assembler (MASM) version 6.0, the OFFSET operator applied to a segment name now returns the end of the segment relative to the start of the segment.

This is a change from MASM versions 5.x where "OFFSET segname" will return the beginning of the segment if it is declared class 'CODE'. If the segment is declared of some other class, "OFFSET segname" will return either the end of the segment relative to the beginning of a segment if full segment definitions are used, or the end of the segment relative to the start of the group the segment was contained in if simplified directives are used.

MORE INFORMATION

As part of defining the BNF for MASM 6.0, an attempt was made to remove any ambiguities in the language. This is one of those changes. In MASM 6.0, "OFFSET segname" will always return the end of the segment unless an explicit group or segment override is provided.

For example,

_DATA segment para PUBLIC 'data'

      db    dup 100 ( )
_DATA ends

STACK segment para STACK 'stack'

      db    dup 100 (?)
STACK ends

DGROUP group _DATA, STACK

TEXT segment para 'CODE'

      ORG   100

      mov   sp, OFFSET STACK          ; mov's 100 into sp
      mov   sp, OFFSET DGROUP:STACK   ; mov's 200 into sp

      mov   ax, OFFSET TEXT           ; mov's size of TEXT into AX
      mov   ax, OFFSET TEXT:0         ; mov's start of TEXT into AX

For more information on the OFFSET operator, see the online Help.


Additional reference words: kbinf 6.00 6.00a 6.00b
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.