.MODEL with a Language Makes Procedure Names PUBLIC

ID: Q61502


The information in this article applies to:
  • Microsoft Macro Assembler for MS-DOS and OS/2, versions 5.1, 6.0, 6.0a, 6.0b


SUMMARY

When you use the .MODEL directive including a language, the Microsoft Macro Assembler version 5.1 and later automatically make all procedure names PUBLIC. This is a feature of the assembler. This information can be found on Page 34 in the "High-Level-Language Support" section of the "Microsoft Macro Assembler" version 5.1 update manual.

There is no option that will make the procedures PRIVATE.


MORE INFORMATION

The following is an example using the C language specifier with the MODEL directive. Note that myadd will be PUBLIC.

Sample Code:


; Assemble options needed: none

         .MODEL MEDIUM, C

         .CODE
myadd    PROC arg1:WORD, arg2:WORD

         MOV   ax, arg1
         ADD   ax, arg2

         RET

myadd    ENDP
         END 

Additional query words: 5.10 6.00 6.00a 6.00b

Keywords :
Version : MS-DOS:5.1,6.0,6.0a,6.0b
Platform : MS-DOS
Issue type :


Last Reviewed: January 11, 2000
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.