summaryrefslogtreecommitdiff
path: root/src/arch/processor.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/processor.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/processor.h')
-rw-r--r--src/arch/processor.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/arch/processor.h b/src/arch/processor.h
index 0c6d852..c37811f 100644
--- a/src/arch/processor.h
+++ b/src/arch/processor.h
@@ -47,17 +47,6 @@ typedef enum _AdressMode
-/* Définition générique d'une architecture */
-typedef struct _asm_processor asm_processor;
-
-
-
-asm_processor *create_processor(void);
-
-
-
-
-
#include <glib-object.h>
@@ -95,6 +84,7 @@ GArchInstruction *g_arch_processor_decode_instruction(const GArchProcessor *, co
/* Type de processeurs disponibles */
typedef enum _ArchProcessorType
{
+ APT_386, /* Intel 80386 */
APT_JVM, /* Java Virtual Machine */
APT_COUNT