diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2024-05-05 23:40:51 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2024-05-05 23:40:51 +0100 |
commit | 2796e6dabeed57d31069a6c56683cf3e66ab88b3 (patch) | |
tree | 95e86775a4eeca52523788b49e03a7ef9e2da569 | |
parent | 579ec0dced9a72c331591a479705a459cf715b64 (diff) |
Fix miscategorised jmp instruction
Woops! Thanks Uncrafted for reporting this.
-rw-r--r-- | src/x86.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - * Copyright © 2023 Michael Smith <mikesmiffy128@gmail.com> + * Copyright © 2024 Michael Smith <mikesmiffy128@gmail.com> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -124,7 +124,6 @@ X(X86_INT3, 0xCC) \ X(X86_INTO, 0xCE) \ X(X86_XLAT, 0xD7) \ - X(X86_JMPI8, 0xEB) \ X(X86_CMC, 0xF5) \ X(X86_CLC, 0xF8) \ X(X86_STC, 0xF9) \ @@ -177,7 +176,8 @@ X(X86_LOOPNZ, 0xE0) /* AKA LOOPNE */ \ X(X86_LOOPZ, 0xE1) /* AKA LOOPE */ \ X(X86_LOOP, 0xE2) \ - X(X86_JCXZ, 0xE3) + X(X86_JCXZ, 0xE3) \ + X(X86_JMPI8, 0xEB) /* Single-byte opcodes with a word-sized immediate operand */ #define X86_OPS_1BYTE_IW(X) \ |