How to Declare Externals in MASM

ID: Q39523


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


SUMMARY

The following are the rules for declaring externals in MASM:

  1. NEAR code labels must be declared in the code segment from which they are accessed.


  2. Although FAR code labels can be declared anywhere in the source code, it is recommended they be declared outside of any segments. You may declare them at the top of your program after the .MODEL directive.


  3. Any external data in the DGROUP data segment, must be declared in the segment in which it is defined. You may need to create a dummy data segment for the external declaration.


  4. Data items declared in .FARDATA segment, that need to be referenced as externals, should be declared out of any segments. Otherwise, fixup-overflow errors may occur during linking. Note: This conflicts with the rules indicated on Page 162 of "Microsoft Macro Assembler Programmer's Guide" for Versions 5.x.


Additional query words: kbinf 5.00 5.10 6.00 6.00a 6.00b

Keywords :
Version : :5.0,5.1,6.0,6.0a,6.0b
Platform :
Issue type :


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