-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
54 lines (42 loc) · 1.46 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <stdio.h>
#include "memory.h"
#include "cpu.h"
char* welcome();
int main (){
Memory m;
Cpu c;
cpu_reset(&c);
azzera_memory(&m);
set_memory(&m, 0, 1007); /* (Legge A) */
set_memory(&m, 1, 1008); /* (Legge B) */
set_memory(&m, 2, 2007); /* (Carica A nell'accumulatore) */
set_memory(&m, 3, 3008); /* (Somma B all'accumulatore) */
set_memory(&m, 4, 2109); /* (Memorizza il valore dell'accumulatore */
set_memory(&m, 5, 1109); /* (Stampa C) */
set_memory(&m, 6, 4300); /* (Halt) */
set_memory(&m, 7, 0); /* (Variabile A) */
set_memory(&m, 8, 0); /* (Variabile B) */
set_memory(&m, 9, 0); /* (Risultato C) */
printf("%s",welcome());
/* il ciclo termina quando arriva l'istruzione di HALT */
while (c.operationCode!=HALT && c.instructionCounter<MEMORY_SIZE) {
printf("instructionCounter: %d\n", c.instructionCounter);
fetch(&m, &c);
c.instructionCounter++; /* e' importante che l'incremento avvenga PRIMA dell'execute */
execute(&m, &c);
}
/* un'unica stampa alla fine */
cpu_dump(&c);
memory_dump(&m);
return 0;
}
char* welcome ()
{
return "*** Welcome to Simpletron! ***\n"
"*** Please enter your program one istruction ***\n"
"*** (or data word) at a time. I will type the ***\n"
"*** location number and a question mark (?). ***\n"
"*** You the type the word for that location. ***\n"
"*** Type the sentinel -99999 to stop entering ***\n"
"*** your program. ***\n";
}