DOCUMENT:Q32832 04-MAY-2001 [masm] TITLE :DOCERR: New Command-Line Option for MASM 5.1: /LA PRODUCT :Microsoft Macro Assembler PROD/VER::5.1 OPER/SYS: KEYWORDS: ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Macro Assembler (MASM), 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 query words: 5.10 ====================================================================== Keywords : Technology : kbMASMsearch kbAudDeveloper kbMASM510 Version : :5.1 ============================================================================= 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 2001.