summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-09-09 22:52:57 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-09-09 22:52:57 (GMT)
commit15387adcbd3e27fe581754c0ee56edc64272d58e (patch)
tree45c655c89c7da57fff822569c4bc3dc655032eb6 /src/arch/x86/instruction.h
parentb77dcf34b9b2308978e1c6333b34cde9f0e27a8c (diff)
Supported the 'moffs' type of operand.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@28 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86/instruction.h')
-rw-r--r--src/arch/x86/instruction.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h
index 38315d9..af4f7cf 100644
--- a/src/arch/x86/instruction.h
+++ b/src/arch/x86/instruction.h
@@ -97,7 +97,10 @@ typedef enum _X86Opcodes
X86_OP_NOP, /* nop (0x90) */
- X86_OP_TEST_AL, /* test ([0x66] 0xa8) */
+ X86_OP_MOV_MOFFS_TO_AL, /* mov (0xa0) */
+ X86_OP_MOV_MOFFS_TO_E_AX, /* mov ([0x66] 0xa1) */
+
+ X86_OP_TEST_AL, /* test (0xa8) */
X86_OP_TEST_E_AX, /* test ([0x66] 0xa9) */
X86_OP_MOV_E_AX, /* mov ([0x66] 0xb8) */