DOCUMENT:Q35882 06-MAY-2001 [masm] TITLE :FIX: A5114: Operand Size Does Not Match Segment Word Size PRODUCT :Microsoft Macro Assembler PROD/VER::5.0,5.1,5.1a OPER/SYS: KEYWORDS: ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Macro Assembler (MASM), versions 5.0, 5.1, 5.1a ------------------------------------------------------------------------------- SYMPTOMS ======== The Microsoft Macro Assembler (MASM) versions 5.0, 5.1, and 5.1a may generate the warning: A5114: Operand size does not match segment word size when using 32-bit operands in USE16 segments. The warning is only generated on push and pop instructions using an operand with the size other than the size of the segment. For example, using DWORD push in a USE16 segment or using a WORD push in a USE32 segment. The warning is not generated for any other use of 32-bit operands. CAUSE ===== The warning message may have been added to aid the programmer trying to convert code from 16-bit segments to 32-bit segments. The warning message should only occur in 32-bit segments when 16-bit push/pop operands are given, and not in the converse situation. STATUS ====== Microsoft has confirmed this to be a problem in MASM versions 5.0, 5.1, 5.1a. This problem was corrected in MASM version 6.0. MORE INFORMATION ================ Sample Code ----------- ; Assemble options needed: /W2 .386 _TEXT16 SEGMENT WORD PUBLIC USE16 'CODE' ASSUME cs:_TEXT16 start: push eax pop eax mov ax, 4C00h int 21h _TEXT16 ENDS _TEXT32 SEGMENT WORD PUBLIC USE32 'CODE' ASSUME cs:_TEXT32 push ax pop ax mov ax, 4C00h int 21h _TEXT32 ENDS END start Additional query words: 5.00 5.10 5.10a ====================================================================== Keywords : Technology : kbMASMsearch kbAudDeveloper kbMASM510 kbMASM500 kbMASM510a Version : :5.0,5.1,5.1a Solution Type : kbfix ============================================================================= 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.