summaryrefslogtreecommitdiff
path: root/src/arch/immediate.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-05-17 22:59:55 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-05-17 22:59:55 (GMT)
commit4d0ff0c23862c242d533d9b2d34e8812ef99ad61 (patch)
tree3b8504b8d3946a8bc9a702b819138ab1e5501be6 /src/arch/immediate.h
parent96cb6971ee3ca529958b8cb1e8e55a6eb4e60eae (diff)
Used only the new format of processor/instructions/operands for x86.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@64 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/immediate.h')
-rw-r--r--src/arch/immediate.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/immediate.h b/src/arch/immediate.h
index 3fdab0d..1b77290 100644
--- a/src/arch/immediate.h
+++ b/src/arch/immediate.h
@@ -53,6 +53,12 @@ GType g_imm_operand_get_type(void);
/* Crée un opérande réprésentant une valeur numérique. */
GArchOperand *g_imm_operand_new_from_data(MemoryDataSize, const bin_t *, off_t *, off_t, SourceEndian);
+/* Crée un opérande réprésentant une valeur numérique. */
+GArchOperand *g_imm_operand_new_from_value(AsmOperandSize, ...);
+
+/* Indique le signe d'une valeur immédiate. */
+bool g_imm_operand_is_negative(const GImmOperand *);
+
#endif /* _ARCH_IMMEDIATE_H */