Skip to content

Commit ecf1d78

Browse files
author
Colin Robertson
authored
Merge pull request #3649 from tjs137/patch-1
Correct & complete REP* keywords in Prefix table
2 parents 255b779 + f03f5f0 commit ecf1d78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/assembler/masm/instruction-format.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ The **`VEX2`**, **`VEX3`**, **`VEX`**, and **`EVEX`** options are available in V
2626
| Keyword | Usage |
2727
|--|--|
2828
| **`REP`** | Repeat the string operation by the count in (E)CX. |
29-
| **`REPE`** | Repeat the string operation while the comparison is equal, limited by the count in (E)CX. |
30-
| **`REPE`** | Repeat the string operation while the comparison is not-equal, limited by the count in (E)CX. |
29+
| **`REPE`**<br>**`REPZ`** | Repeat the string operation while the comparison is equal, limited by the count in (E)CX. |
30+
| **`REPNE`**<br>**`REPNZ`** | Repeat the string operation while the comparison is not-equal, limited by the count in (E)CX. |
3131
| **`LOCK`** | Perform the operation atomically on a memory operand. |
3232
| **`XACQUIRE`** | Begin an HLE transaction, most often used with **`LOCK`** prefix. |
3333
| **`XRELEASE`** | Complete an HLE transaction, most often used with **`LOCK`** prefix. |

0 commit comments

Comments
 (0)