summaryrefslogtreecommitdiff
path: root/src/arch/operand-int.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/operand-int.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/operand-int.h')
-rw-r--r--src/arch/operand-int.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/arch/operand-int.h b/src/arch/operand-int.h
index 92fc9bf..db63a9c 100644
--- a/src/arch/operand-int.h
+++ b/src/arch/operand-int.h
@@ -35,7 +35,11 @@ typedef enum _AsmOperandType
AOT_NONE, /* Type d'opérande inconnu ! */
AOT_IMM, /* Valeur immédiate */
AOT_REG, /* Registre quelconque */
- AOT_MEM /* Accès à la mémoire */
+ AOT_MEM, /* Accès à la mémoire */
+
+ /* X86 */
+
+ AOT_MOFFS /* Emplacement mémoire */
} AsmOperandType;