DOCERR: New Command-Line Option for MASM 5.1: /LA

Last reviewed: October 21, 1994
Article ID: Q32832
The information in this article applies to:
  • Microsoft Macro Assembler for MS-DOS and OS/2, version 5.1

SUMMARY

Version 5.10 of the Microsoft Macro Assembler (MASM) includes a new command-line option, /LA, which adds all code generated by the assembler to the listing file.

This option was omitted from the Microsoft Macro Assembler 5.1 Reference, but is given as an option by the command masm /help.

MORE INFORMATION

The command-line option /LA displays the results of the simplified segment directives and code generated by the high-level language support features. The following is a sample source file with simplified segment directives and a fragment of the listing file created by using /LA:

Sample Code

; Assemble options needed: /LA

   .model small
   .data
   .code
   end

Listing file fragment

   .model small
   assume cs:@code,ds:@data,ss:@data
   .data
   _DATA segment 'DATA'
   .code
   @CurSeg ends
   _TEXT segment  'CODE'
   end
   @CurSeg ends


Additional reference words: 5.10
KBCategory: kbref kbdocerr
KBSubCategory: MLIss


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.

Last reviewed: October 21, 1994
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.