-
Notifications
You must be signed in to change notification settings - Fork 0
/
Emulador.c
324 lines (261 loc) · 8.41 KB
/
Emulador.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Tipos
typedef unsigned char byte; // 8 bits
typedef unsigned int palavra; // 32 bits
typedef unsigned long int microinstrucao; // 64 bits, no caso de acordo com a aquitetura cada microinstrução usa apenas 36bits de espaço
// Registradores
palavra MAR = 0, MDR = 0, PC = 0; // Acesso da Memoria
byte MBR = 0; // Acesso da Memoria
palavra SP = 0, LV = 0, TOS = 0, // Operação da ULA
OPC = 0, CPP = 0, H = 0; // Operação da ULA
microinstrucao MIR; // Contem a Microinstrução Atual
palavra MPC = 0; // Contem o endereco para a proxima Microinstrução
// Barramentos
palavra Barramento_B, Barramento_C;
// Flip-Flops
byte N, Z;
// Auxiladores para Decodificar Microinstrução
byte MIR_B, MIR_Operacao, MIR_Deslocador, MIR_MEM, MIR_pulo;
palavra MIR_C;
// Armazenamento de Controle
microinstrucao Armazenamento[512];
// Memoria Principal
byte Memoria[100000000];
// Prototipo das Funções
void carregar_microprogram_de_controle();
void carregar_programa(const char *programa);
void exibir_processos();
void decodificar_microinstrucao();
void atribuir_barramento_B();
void realizar_operacao_ALU();
void atribuir_barramento_C();
void operar_memoria();
void pular();
void binario(void* valor, int tipo);
// Laço Principal
int main(int argc, const char *argv[]){
carregar_microprogram_de_controle();
carregar_programa(argv[1]);
while(1){
exibir_processos();
MIR = Armazenamento[MPC];
decodificar_microinstrucao();
atribuir_barramento_B();
realizar_operacao_ALU();
atribuir_barramento_C();
operar_memoria();
pular();
}
return 0;
}
// Implementação das Funções
void carregar_microprogram_de_controle(){
FILE* MicroPrograma;
MicroPrograma = fopen("microprog.rom", "rb");
if(MicroPrograma != NULL){
fread(Armazenamento, sizeof(microinstrucao), 512, MicroPrograma);
fclose(MicroPrograma);
}
}
void carregar_programa(const char* prog){
FILE* Programa;
palavra tamanho;
byte tamanho_temp[4];
Programa = fopen(prog, "rb");
if(Programa != NULL){
fread(tamanho_temp, sizeof(byte), 4, Programa); // Lendo o tamanho em bytes do Programa
memcpy(&tamanho, tamanho_temp, 4);
fread(Memoria, sizeof(byte), 20, Programa); // Lendo os 20 bytes de Inicialização
fread(&Memoria[0x0401], sizeof(byte), tamanho - 20, Programa); // Lendo o Programa
}
}
void decodificar_microinstrucao(){
MIR_B = (MIR) & 0b1111;
MIR_MEM = (MIR >> 4) & 0b111;
MIR_C = (MIR >> 7) & 0b111111111;
MIR_Operacao = (MIR >> 16) & 0b111111;
MIR_Deslocador = (MIR >> 22) & 0b11;
MIR_pulo = (MIR >> 24) & 0b111;
MPC = (MIR >> 27) & 0b111111111;
}
void atribuir_barramento_B(){
switch(MIR_B){
case 0: Barramento_B = MDR; break;
case 1: Barramento_B = PC; break;
//O caso 2 carrega o MBR com sinal fazendo a extensão de sinal, ou seja, copia-se o bit mais significativo do MBR para as 24 posições mais significativas do barramento B.
case 2: Barramento_B = MBR;
if(MBR & (0b10000000))
Barramento_B = Barramento_B | (0b111111111111111111111111 << 8);
break;
case 3: Barramento_B = MBR; break;
case 4: Barramento_B = SP; break;
case 5: Barramento_B = LV; break;
case 6: Barramento_B = CPP; break;
case 7: Barramento_B = TOS; break;
case 8: Barramento_B = OPC; break;
default: Barramento_B = -1; break;
}
}
void realizar_operacao_ALU(){
switch(MIR_Operacao){
//Cada operação da ULA é representado pela sequencia dos bits de operação. Cada operação útil foi convertida para inteiro para facilitar a escrita do switch
case 12: Barramento_C = H & Barramento_B; break;
case 17: Barramento_C = 1; break;
case 18: Barramento_C = -1; break;
case 20: Barramento_C = Barramento_B; break;
case 24: Barramento_C = H; break;
case 26: Barramento_C = ~H; break;
case 28: Barramento_C = H | Barramento_B; break;
case 44: Barramento_C = ~Barramento_B; break;
case 53: Barramento_C = Barramento_B + 1; break;
case 54: Barramento_C = Barramento_B - 1; break;
case 57: Barramento_C = H + 1; break;
case 59: Barramento_C = -H; break;
case 60: Barramento_C = H + Barramento_B; break;
case 61: Barramento_C = H + Barramento_B + 1; break;
case 63: Barramento_C = Barramento_B - H; break;
default: break;
}
if(Barramento_C){
N = 0;
Z = 1;
} else{
N = 1;
Z = 0;
}
switch(MIR_Deslocador){
case 1: Barramento_C = Barramento_C << 8; break;
case 2: Barramento_C = Barramento_C >> 1; break;
}
}
void atribuir_barramento_C(){
if(MIR_C & 0b000000001) MAR = Barramento_C;
if(MIR_C & 0b000000010) MDR = Barramento_C;
if(MIR_C & 0b000000100) PC = Barramento_C;
if(MIR_C & 0b000001000) SP = Barramento_C;
if(MIR_C & 0b000010000) LV = Barramento_C;
if(MIR_C & 0b000100000) CPP = Barramento_C;
if(MIR_C & 0b001000000) TOS = Barramento_C;
if(MIR_C & 0b010000000) OPC = Barramento_C;
if(MIR_C & 0b100000000) H = Barramento_C;
}
void operar_memoria(){
// Multiplicação por 4 é necessaria, pois as portas MAR e MDR leem palavras consecutivas na memoria
if(MIR_MEM & 0b001) MBR = Memoria[PC];
if(MIR_MEM & 0b010) memcpy(&MDR, &Memoria[MAR*4], 4);
if(MIR_MEM & 0b100) memcpy(&Memoria[MAR*4], &MDR, 4);
}
void pular(){
if(MIR_pulo & 0b001) MPC = MPC | (N << 8);
if(MIR_pulo & 0b010) MPC = MPC | (Z << 8);
if(MIR_pulo & 0b100) MPC = MPC | (MBR);
}
void exibir_processos(){
if(LV && SP){
printf("\t\t PILHA DE OPERANDOS\n");
printf("========================================\n");
printf(" END");
printf("\t BINARIO DO VALOR");
printf(" \t\tVALOR\n");
for(int i = SP ; i >= LV ; i--){
palavra valor;
memcpy(&valor, &Memoria[i*4],4);
if(i == SP) printf("SP ->");
else if(i == LV) printf("LV ->");
else printf(" ");
printf("%X ",i);
binario(&valor, 1); printf(" ");
printf("%d\n", valor);
}
printf("========================================\n");
}
if(PC >= 0x0401) {
printf("\n\t\t\tArea do Programa\n");
printf("========================================\n");
printf("\t\tBinario");
printf("\t HEX");
printf(" END DE BYTE\n");
for(int i = PC - 2; i <= PC + 3 ; i++){
if(i == PC) printf("Em execução >> ");
else printf("\t\t");
binario(&Memoria[i], 2);
printf(" 0x%02X ", Memoria[i]);
printf("\t%X\n", i);
}
printf("========================================\n\n");
}
printf("\t\tREGISTRADORES\n");
printf("\tBINARIO");
printf("\t\t\t\tHEX\n");
printf("MAR: "); binario(&MAR, 3); printf("\t%x\n", MAR);
printf("MDR: "); binario(&MDR, 3); printf("\t%x\n", MDR);
printf("PC: "); binario(&PC, 3); printf("\t%x\n", PC);
printf("MBR: \t\t"); binario(&MBR, 2); printf("\t\t%x\n", MBR);
printf("SP: "); binario(&SP,3); printf("\t%x\n", SP);
printf("LV: "); binario(&LV,3); printf("\t%x\n", LV);
printf("CPP: "); binario(&CPP,3); printf("\t%x\n", CPP);
printf("TOS: "); binario(&TOS,3); printf("\t%x\n", TOS);
printf("OPC: "); binario(&OPC, 3); printf("\t%x\n", OPC);
printf("H: "); binario(&H, 3); printf("\t%x\n", H);
printf("MPC: \t\t"); binario(&MPC, 5); printf("\t%x\n", MPC);
printf("MIR: "); binario(&MIR, 4); printf("\n");
getchar();
}
//FUNÇÃO RESPONSAVEL POR PRINTAR OS VALORES EM BINARIO
//TIPO 1: Imprime o binário de 4 bytes seguidos
//TIPO 2: Imprime o binário de 1 byte
//TIPO 3: Imprime o binario de uma palavra
//TIPO 4: Imprime o binário de uma microinstrução
//TIPO 5: Imprime o binário dos 9 bits do MPC
void binario(void* valor, int tipo){
switch(tipo){
case 1: {
printf(" ");
byte aux;
byte* valorAux = (byte*)valor;
for(int i = 3; i >= 0; i--){
aux = *(valorAux + i);
for(int j = 0; j < 8; j++){
printf("%d", (aux >> 7) & 0b1);
aux = aux << 1;
}
printf(" ");
}
} break;
case 2:{
byte aux;
aux = *((byte*)(valor));
for(int j = 0; j < 8; j++){
printf("%d", (aux >> 7) & 0b1);
aux = aux << 1;
}
} break;
case 3: {
palavra aux;
aux = *((palavra*)(valor));
for(int j = 0; j < 32; j++){
printf("%d", (aux >> 31) & 0b1);
aux = aux << 1;
}
} break;
case 4: {
microinstrucao aux;
aux = *((microinstrucao*)(valor));
for(int j = 0; j < 36; j++){
if ( j == 9 || j == 12 || j == 20 || j == 29 || j == 32) printf(" ");
printf("%ld", (aux >> 35) & 0b1);
aux = aux << 1;
}
} break;
case 5: {
palavra aux;
aux = *((palavra*)(valor)) << 23;
for(int j = 0; j < 9; j++){
printf("%d", (aux >> 31) & 0b1);
aux = aux << 1;
}
} break;
}
}