PRB: Error A2068 Using REP Prefix with CMPS Instructions

Last reviewed: January 9, 1995
Article ID: Q120155
The information in this article applies to:
  • Microsoft Macro Assembler (MASM) for MS-DOS, versions 6.0, 6.0a, 6.0b, 6.1, and 6.1a
  • Microsoft Macro Assembler for Windows NT, version 6.11

SYMPTOMS

Assembling a line of code that uses the REP instruction prefix with one of the string-compare instructions, such as

   REP CMPSB

produces the following error message:

   error A2068: instruction prefix not allowed

The same line of code assembles without error under MASM version 5.1.

CAUSE

With MASM version 5.1, as well as when using MASM version 6.x with OPTION M510, the REP CMPSB instruction is encoded as a REPE CMPSB.

NOTE: The difference between these instructions is that the REP instruction repeats CX times regardless of the zero flag (ZF); however, the REPE and REPNE instructions check the ZF flag as they repeat. Because there is virtually no encoding for REP CMPSB, MASM versions 6.0 and 6.1 generate an error message.

RESOLUTION

Assemble using the OPTION M510 directive, or use the REPE instruction prefix.

MORE INFORMATION

The following are legal forms of the string-compare instruction:

   CMPSB  ; compare string byte
   CMPSW  ; compare string word
   CMPSD  ; compare string doubleword


Additional reference words: 6.00 6.00a 6.00b 6.10 6.10a
KBCategory: kbprg kbprb
KBSubCategory: MASMLngIss


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: January 9, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.