summaryrefslogtreecommitdiff
path: root/src/arch/operand.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-08-01 00:56:47 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-08-01 00:56:47 (GMT)
commit290f48b2c2008a3479cd1585eb04b89c5744f034 (patch)
treec9d1eae9a08884de9ee8fe31cbd7756f8e1ca298 /src/arch/operand.h
parent73af1bd66e5d1a2e30d56151532710f2b28d12df (diff)
Deleted the 'AsmOperandSize' definition and set the x86 minimal instruction size.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@176 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/operand.h')
-rw-r--r--src/arch/operand.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/arch/operand.h b/src/arch/operand.h
index c84c7fb..6d0dc48 100644
--- a/src/arch/operand.h
+++ b/src/arch/operand.h
@@ -25,40 +25,6 @@
#define _ARCH_OPERAND_H
-#include <stdbool.h>
-
-
-#include "archbase.h"
-
-
-
-
-/* Taille des données intégrées */
-typedef enum _AsmOperandSize
-{
- AOS_UNDEFINED, /* Taille non définie */
-
- AOS_8_BITS_UNSIGNED, /* Opérande sur 8 bits n.-s. */
- AOS_16_BITS_UNSIGNED, /* Opérande sur 16 bits n.-s. */
- AOS_32_BITS_UNSIGNED, /* Opérande sur 32 bits n.-s. */
- AOS_64_BITS_UNSIGNED, /* Opérande sur 64 bits n.-s. */
-
- AOS_8_BITS_SIGNED, /* Opérande sur 8 bits signés */
- AOS_16_BITS_SIGNED, /* Opérande sur 16 bits signés */
- AOS_32_BITS_SIGNED, /* Opérande sur 32 bits signés */
- AOS_64_BITS_SIGNED /* Opérande sur 64 bits signés */
-
-} AsmOperandSize;
-
-
-#define AOS_8_BITS AOS_8_BITS_UNSIGNED
-#define AOS_16_BITS AOS_16_BITS_UNSIGNED
-#define AOS_32_BITS AOS_32_BITS_UNSIGNED
-#define AOS_64_BITS AOS_64_BITS_UNSIGNED
-
-
-
-
#include <glib-object.h>