summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-10-11 13:40:13 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-10-11 13:40:13 (GMT)
commit4145d0d7051f12b1a59d5728d6d2609e598e01f6 (patch)
tree2b31b17f9567cf5de1a50f9bf73a1cb6106c7709 /src/arch/x86/instruction.h
parentba83d7ea7338945c817bc28aa94a41947f2472a1 (diff)
Supported new opcodes and new kind of operands (m(8|16|32)).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@130 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86/instruction.h')
-rw-r--r--src/arch/x86/instruction.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h
index de5f124..0db591f 100644
--- a/src/arch/x86/instruction.h
+++ b/src/arch/x86/instruction.h
@@ -62,6 +62,7 @@ typedef enum _X86Opcodes
XOP_MOVZX_R1632_RM8, /* movzx ([0x66] 0x0f 0xb6) */
XOP_MOVSX_R1632_RM8, /* movsx ([0x66] 0x0f 0xbe) */
+ XOP_MOVSX_R1632_RM1632, /* movsx ([0x66] 0x0f 0xbf) */
XOP_ADC_RM8_R8, /* adc (0x10) */
@@ -208,9 +209,14 @@ typedef enum _X86Opcodes
XOP_MOV_MOFFS1632_E_AX, /* mov ([0x66] 0xa3) */
+
+ XOP_MOVS_M1632_M1632, /* movs ([0x66] 0xa5) */
+
XOP_TEST_AL_IMM8, /* test (0xa8) */
XOP_TEST_E_AX_IMM1632, /* test ([0x66] 0xa9) */
+ XOP_STOS_M1632_E_AX, /* stos ([0x66] 0xab) */
+
XOP_SCAS_AL_M8, /* scas (0xae) */