diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 22:33:46 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 22:33:46 -0800 |
commit | 574784d177320e44878266a0858bddfd548b6c87 (patch) | |
tree | 0ca0b1d384ff02ed3bffbc912aee964b568fa347 /disasm.c | |
parent | e9d46c48e4a5db7fe3370337d67e64607f95eed4 (diff) | |
download | nasm-574784d177320e44878266a0858bddfd548b6c87.tar.gz nasm-574784d177320e44878266a0858bddfd548b6c87.tar.bz2 nasm-574784d177320e44878266a0858bddfd548b6c87.zip |
HLE: Move byte codes back to \271-\273
Since we are back to three bytecodes, move them back to the \271-\273
slot to free up the \264 complete quad.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'disasm.c')
-rw-r--r-- | disasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -703,19 +703,19 @@ static int matches(const struct itemplate *t, uint8_t *data, break; } - case 0265: + case 0271: if (prefix->rep == 0xF3) drep = P_XRELEASE; break; - case 0266: + case 0272: if (prefix->rep == 0xF2) drep = P_XACQUIRE; else if (prefix->rep == 0xF3) drep = P_XRELEASE; break; - case 0267: + case 0273: if (prefix->lock == 0xF0) { if (prefix->rep == 0xF2) drep = P_XACQUIRE; |