summaryrefslogtreecommitdiff
path: root/src/arch/archbase.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/archbase.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/archbase.h')
-rw-r--r--src/arch/archbase.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/archbase.h b/src/arch/archbase.h
index 02e4ae8..2a0c80e 100644
--- a/src/arch/archbase.h
+++ b/src/arch/archbase.h
@@ -60,5 +60,16 @@ typedef enum _MemoryDataSize
#define MDS_64_BITS MDS_64_BITS_UNSIGNED
+/* Différentes formes de représentation humaine */
+typedef enum _AsmSyntax
+{
+ ASX_INTEL, /* Syntaxe Intel */
+ ASX_ATT, /* Syntaxte AT&T */
+
+ ASX_COUNT
+
+} AsmSyntax;
+
+
#endif /* _ARCH_ARCHBASE_H */