DOCUMENT:Q75247 04-MAY-2001 [masm] TITLE :LOCAL Requires Language Specifier on .MODEL PRODUCT :Microsoft Macro Assembler PROD/VER:MS-DOS:5.10,5.10a,6.0 OPER/SYS: KEYWORDS: ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Macro Assembler (MASM), versions 5.10, 5.10a, 6.0 ------------------------------------------------------------------------------- SUMMARY ======= The LOCAL directive used inside a procedure requires a language specifier on the .MODEL directive in the Microsoft Macro Assembler (MASM) versions 5.1 and 5.1a, and in the Microsoft QuickAssembler versions 2.01 and 2.51. If a language is not specified on the PROC line, the warning A4001: Extra characters on line will be generated by MASM 5.1 and 5.1a. The error A2135: feature requires language specifier on .MODEL will be generated by QuickAssembler 2.01 and 2.51. MORE INFORMATION ================ To correct the code, specify a language on the .MODEL statement. To correct the following program, replace the statement ".MODEL small" with ".MODEL small, language" where language is either FORTRAN, PASCAL, Basic, or C. MASM 6.0 does not require a language specifier on the .MODEL statement to use the LOCAL directive. Sample Code ----------- ; Assemble options needed: none .MODEL small .CODE PUBLIC proc1 proc1 PROC LOCAL loc1:WORD proc1 ENDP END Additional query words: kbinf 5.10 5.10a 6.00 s_quickasm ====================================================================== Keywords : Technology : kbMASMsearch kbAudDeveloper kbMASM600 Version : MS-DOS:5.10,5.10a,6.0 ============================================================================= 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 2001.