The information in this article applies to:
SUMMARYThe 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 will be generated by MASM 5.1 and 5.1a. The error 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.
Sample Code
Additional query words: kbinf 5.10 5.10a 6.00 s_quickasm
Keywords : |
Last Reviewed: January 4, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |