FIX: MASM 6.0 May Initialize Every 256th Data Symbol

Last reviewed: September 11, 1997
Article ID: Q73684
6.00 | 6.00 MS-DOS | OS/2 kbtool kbfixlist kbbuglist

The information in this article applies to:

  • Microsoft Macro Assembler for MS-DOS, version 6.0
  • Microsoft Macro Assembler for OS/2, version 6.0

SYMPTOMS

The Microsoft Macro Assembler (MASM) version 6.0 may incorrectly initialize data that is intended to be uninitialized. The problem will occur with every 256th data symbol in a module that is defined using the "dup" operator.

RESOLUTION

To work around the problem, either avoid using the dup operator when declaring a variable or limit the number of occurrences to less than 256 per module.

STATUS

Microsoft has confirmed this to be a problem in MASM version 6.0. This problem was corrected in MASM version 6.0a.

MORE INFORMATION

Uninitialized data is created by specifying the ? (question mark) symbol as a value at declaration time. It is primarily used to indicate that the initial value of a data symbol is unimportant. It can also be used to indicate that a symbol is actually defined in a separate compilation module and merely serves as a place holder for this module.

If a segment contains only uninitialized data, the linker can reduce the size of the resultant .EXE file by modifying the minalloc field in the header by the corresponding amount. The loader will then allocate the space at run-time and fix the addresses as required. Because the assembler incorrectly initializes some data, the segment will not be completely uninitialized; therefore, LINK copies the segment in its entirety into the .EXE file and the resulting disk file is larger than necessary.

Sample Code

; Assemble options needed: none

mymac    MACRO
         LOCAL   ldat
ldat     DD      1      dup (?)
         ENDM

data     SEGMENT

REPEAT   512
         mymac
         ENDM

data     ENDS
END


Additional reference words: 6.00 buglist6.00 fixlist6.00a
KBCategory: kbtool kbfixlist kbbuglist
KBSubCategory: MLIss
Solution Type : kbfix


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: September 11, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.