summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-12-20 16:36:15 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-12-20 16:36:15 (GMT)
commitda4889b3149805bcea865e0f05d00aeb90d60593 (patch)
treef5a7bcc557b296efc4e3028f815160a59dbabafd /src/arch/x86/instruction.h
parent3d6e959ad3e56681ba39bd8f0a003b8a1aff132c (diff)
Added two extra opcodes: sub (0x2c and 0x2d).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@43 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86/instruction.h')
-rw-r--r--src/arch/x86/instruction.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h
index 0092ba0..d731279 100644
--- a/src/arch/x86/instruction.h
+++ b/src/arch/x86/instruction.h
@@ -43,6 +43,9 @@ typedef enum _X86Opcodes
X86_OP_SUB_R1632_RM1632, /* sub ([0x66] 0x29) */
+ X86_OP_SUB_AL_IMM8, /* sub (0x2c) */
+ X86_OP_SUB_E_AX_IMM1632, /* sub ([0x66] 0x2d) */
+
X86_OP_XOR_RM8_R8, /* xor (0x30) */
X86_OP_XOR_RM1632_R1632, /* xor ([0x66] 0x31) */
X86_OP_XOR_R8_RM8, /* xor (0x32) */