summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/operand.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-05-19 23:30:05 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-05-19 23:30:05 (GMT)
commit6511f2fe4551c2ea231115d6c659c99e15b3a23b (patch)
treeaeb6d8a50480063e8d75a9096c0ab98420830dad /src/arch/dalvik/operand.h
parent8aca52bcbb6b9c710771087dddeadf4adb05dc66 (diff)
Added support for a few more Dalvik instructions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@160 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/dalvik/operand.h')
-rw-r--r--src/arch/dalvik/operand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/dalvik/operand.h b/src/arch/dalvik/operand.h
index 4045c5f..fd26e96 100644
--- a/src/arch/dalvik/operand.h
+++ b/src/arch/dalvik/operand.h
@@ -196,6 +196,9 @@ typedef enum _DalvikOperandType
DALVIK_OPT_21S = DALVIK_OP_LEN(2) | DALVIK_OP_REG(1) | 'S',
+ DALVIK_OPT_22B = DALVIK_OP_LEN(2) | DALVIK_OP_REG(2) | 'B',
+ DALVIK_OPT_22C = DALVIK_OP_LEN(2) | DALVIK_OP_REG(2) | 'C',
+
DALVIK_OPT_35C = DALVIK_OP_LEN(3) | DALVIK_OP_REG(5) | 'C'