summaryrefslogtreecommitdiff
path: root/include/archi.h
diff options
context:
space:
mode:
authorbiouman <>2001-04-15 02:12:11 +0000
committerbiouman <>2001-04-15 02:12:11 +0000
commit62480cd55b67e10128b9a49821d94c3c5117830f (patch)
tree6139c8a867012d60f766d38085455f2cb1c156ad /include/archi.h
parent0aca28afe35e25329bd8d680b532ccf78d4e4557 (diff)
mergeage de la branche simulateur avec la branche asm
Diffstat (limited to 'include/archi.h')
-rw-r--r--include/archi.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/archi.h b/include/archi.h
new file mode 100644
index 0000000..2520343
--- /dev/null
+++ b/include/archi.h
@@ -0,0 +1,21 @@
+#ifndef __ARCHI_H__
+#define __ARCHI_H__
+
+#define TAILLE_MEMOIRE 1024 /* Nombre maximum de mots que peut contenir la mémoire principale */
+#define NB_REGISTRES_PHYSIQUES 64 /* Nombre réel de registres */
+#define NB_REGISTRES_UTILISABLES 32 /* Nombre de registres que le processeur a à sa disposition */
+#define REG_RG 32 /* Numero du registre Rg */
+#define REG_RD 33 /* Numero du registre Rd */
+#define REG_PC 34 /* Numero du registre PC */
+#define REG_FLAG 35 /* Numero du registre de flags */
+#define REG_PUSHPOP 36 /* Numero du registre de Push-Pop */
+#define ADD_PP (TAILLE_MEMOIRE-1) /* Emplacement de la pile */
+
+typedef unsigned long int Uint32; /* type d'un mot mémoire (32 bits) */
+
+Uint32 memoire_principale[TAILLE_MEMOIRE];
+Uint32 registre[NB_REGISTRES_PHYSIQUES]; /* Registres classiques */
+Uint32 Err_Mem; /* en cas d'erreur l/e en mémoire principale */
+Uint32 Err_Reg; /* en cas d'erreur l/e dans un registre */
+
+#endif