summaryrefslogtreecommitdiff
path: root/disasm.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2012-02-25 22:33:46 -0800
committerH. Peter Anvin <hpa@zytor.com>2012-02-25 22:33:46 -0800
commit574784d177320e44878266a0858bddfd548b6c87 (patch)
tree0ca0b1d384ff02ed3bffbc912aee964b568fa347 /disasm.c
parente9d46c48e4a5db7fe3370337d67e64607f95eed4 (diff)
downloadnasm-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/disasm.c b/disasm.c
index b6e55bc..46cec8a 100644
--- a/disasm.c
+++ b/disasm.c
@@ -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;