summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/instruction.h')
-rw-r--r--src/arch/x86/instruction.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h
index d3b68c9..c190136 100644
--- a/src/arch/x86/instruction.h
+++ b/src/arch/x86/instruction.h
@@ -248,6 +248,10 @@ typedef enum _X86Opcodes
XOP_CLD, /* cld (0xfc) */
+ XOP_INC_RM8, /* inc (0xfe 0) */
+ XOP_DEC_RM8, /* dec (0xfe 1) */
+ XOP_INC_RM1632, /* inc ([0x66] 0xff 0) */
+ XOP_DEC_RM1632, /* dec ([0x66] 0xff 1) */
XOP_CALL_RM1632, /* call ([0x66] 0xff 2) */
XOP_JMP_RM1632, /* jmp ([0x66] 0xff 4) */
XOP_PUSH_RM1632, /* push ([0x66] 0xff 6) */