FIX: Using a Higher Processor Directive in a Macro Causes A2006

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

The information in this article applies to:

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

SYMPTOMS

When you attempt to use a symbol in your assembly code without defining it first, the Microsoft Macro Assembler (MASM) generates the following error:

      error A2006: undefined symbol : 'identifier'

However, MASM may also incorrectly generate this error when you use a processor directive in a macro if the processor specified is higher than the one currently defined.

RESOLUTION

To work around the problem, declare a processor type of sufficient level to execute the instructions in the macro before calling the macro. The comment in the sample code below demonstrates this by declaring the .286 directive before the macro is called.

STATUS

Microsoft has confirmed this to be a problem in MASM versions 6.0, 6.0a, and 6.0b. This problem was corrected in MASM for MS-DOS version 6.1.

MORE INFORMATION

The sample code below may be used to illustrate this problem. The default processor directive is .8086. When the macro is called, a LEAVE instruction is used that requires the .286 processor. However, with the .286 directive in the macro definition, the following error is generated by the assembler:

   file.asm(14): error A2006: undefined symbol : s
    my_proc(2): Macro Called From
     file.asm(14): Main Line Code

Sample Code

;Assemble options needed: /c

.MODEL small .8086

;.286    ;Uncomment this directive for workaround.

my_proc MACRO s
   .286
   enter s, 0
   .8086
ENDM

.STACK 4096

.CODE start:

   my_proc 5
   mov ax, 4C00h
   int 21h
END start


Additional reference words: 6.00 6.00a 6.00b buglist6.00 buglist6.00a
buglist6.00b fixlist6.10
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.