summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-08-01 21:08:17 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-08-01 21:08:17 (GMT)
commitf0b80c6ab55ede4f8ab8ede757f1f8951512affa (patch)
tree7072841db027d421da1118f8021020a1b682de4f /src/arch/x86/instruction.h
parent3786e818fdf8731dd6f310f0aaac75d431646160 (diff)
Handled the 'leave' and 'ret' opcodes.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@12 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 d88e971..af1c5bc 100644
--- a/src/arch/x86/instruction.h
+++ b/src/arch/x86/instruction.h
@@ -87,6 +87,9 @@ typedef enum _X86Opcodes
X86_OP_MOV_SI, /* mov (0xbe) */
X86_OP_MOV_DI, /* mov (0xbf) */
+ X86_OP_RET, /* ret (0xc3) */
+ X86_OP_LEAVE, /* leave (0xc9) */
+
X86_OP_INT, /* int (0xcd) */
X86_OP_CALL, /* call (0xe8) */