summaryrefslogtreecommitdiff
path: root/src/arch/processor.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-05-31 20:58:20 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-05-31 20:58:20 (GMT)
commit8724afdc73e0ddad86f46de1a3fbe0254575a76e (patch)
treede666b66e154c6c6453807d3fa4272efb6877a91 /src/arch/processor.h
parent0b7d7f26c745ff0f52e9e483a0980351368ca824 (diff)
Supported a new architecture (MIPS).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@67 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/processor.h')
-rw-r--r--src/arch/processor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/processor.h b/src/arch/processor.h
index c37811f..5726197 100644
--- a/src/arch/processor.h
+++ b/src/arch/processor.h
@@ -84,8 +84,9 @@ 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_MIPS, /* Mips 32 ou 64 bits */
+ APT_386, /* Intel 80386 */
APT_COUNT