summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-10-04 12:41:38 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-10-04 12:41:38 (GMT)
commitb39b6867afbadd38476328201c07527ad17af60d (patch)
tree157beaaef421ee64ce6640a7d9a7458a2e84fab1 /src/arch/x86/instruction.h
parent83d626cb125a83f3a8b47f6b42920996aa85bd8a (diff)
Supported a few extra instructions (inc/dec rm8/16/32).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@123 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
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) */