KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q68072: .MODEL Directive Language Parameter Doesn’t Preserve Case

Article: Q68072
Product(s): Microsoft Macro Assembler
Version(s): 5.1,5.1a
Operating System(s): 
Keyword(s): 
Last Modified: 06-MAY-2001

-------------------------------------------------------------------------------
The information in this article applies to:

- Microsoft Macro Assembler (MASM), versions 5.1, 5.1a 
-------------------------------------------------------------------------------

SUMMARY
=======

The .MODEL directive can be followed by a language parameter that determines
naming, calling, and returning conventions that are used by the specified
language. The example below demonstrates the syntax.

Although the language type determines the naming convention, it does not
determine the case of any names used. For example if the statement ".MODEL
SMALL, C" is used, case sensitivity of names is not preserved, even though C
preserves case by default. However, an underscore is added in front of any
names. Similarly, if the statement ".MODEL SMALL, PASCAL" is used in a program,
all names are not forced to uppercase (the default for Pascal).

To ensure proper case sensitivity, use the command line option /MX (preserves
case in public and external names), /MU (converts names to uppercase), or /ML
(preserves case in names).

Sample Code
-----------

     .model small,c ; <--- Language specifier
     .code

     myproc proc
            ret
     end

Additional query words: 5.10 5.10a

======================================================================
Keywords          :  
Technology        : kbMASMsearch kbAudDeveloper kbMASM510 kbMASM510a
Version           : :5.1,5.1a

=============================================================================

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.