KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q49705: Labeling Variables with Multiple Names in MASM 5.00, 5.10

Article: Q49705
Product(s): See article
Version(s): 5.00 5.10 | 5.00 5.10
Operating System(s): MS-DOS | OS/2
Keyword(s): ENDUSER | | mspl13_masm
Last Modified: 29-MAR-1990

You can multiply define a memory location by using the LABEL
directive. The following information comes from Pages 136-137 of the
"Microsoft Macro Assembler 5.0 for the MS-DOS Operating System:
Programmer's Guide":

   name LABEL type

   The name is the symbol assigned to the variable, and type is the
   variable size. The type can be any one of the following type
   specifiers:  BYTE, WORD, DWORD, FWORD, QWORD, or TBYTE. It can also
   be the name of a previously defined structure.

The following is an example of declaring two names for the same
variable:

rainbow LABEL WORD
wizard  DW ?

In this case, rainbow and wizard point to the same word in memory.

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.

Copyright Microsoft Corporation 1986-2002.