-
Notifications
You must be signed in to change notification settings - Fork 0
/
Simulator.cpp
1327 lines (1172 loc) · 34.7 KB
/
Simulator.cpp
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
@progName emuladorChido.cpp
@desc Simulador de la ejecucion de instrucciones en lenguaje pseudo-ensamblador.
@author Humberto Gonzalez, Mariano Alipi, Rodrigo Bilbao.
@date 23 de febrero de 2018
*/
/*
----------COSAS A CONSIDERAR----------
Memoria de 1000 palabras.
Una palabra consiste de seis números:
[ 5 | 4 | 3 | 2 | 1 | 0 ]
Instrucción:
5 y 4 Código de operación
3 Tipo de direccionamiento
2, 1 y 0 Parámetro: dirección/valor
Dato:
5 Signo
4, 3, 2, 1 y 0 Números
Instrucciones:
LDA, STA, CLA, ADD, SUB, NOP, NEG, HLT, JMP (opcional)
Tipos de direccionamiento:
Absoluto (1), indirecto (2), inmediato (3), relativo (4).
---------------LOG---------------
(Si cambian algo pongan qué cambiaron y el día y hora. :))
+ Adición al programa
* Modificación del programa
- Eliminación del programa
02/feb 11:30 + Archivo creado.
15/feb 02:30 Mariano:
+ Agregué todo el código que he estado probando.
15/feb 16:00 Mariano:
* Modifiqué el orden de las opciones del menú.
+ Agregué código en la opción de modificar memoria con ensamblador.
16/feb 14:30 Mariano:
+ Agregué opciones, su funcionamiento y la capacidad de cambiarlas.
20/feb 14:30 Mariano y Humberto:
+ Comentarios de cada función para explicar lo que hacen.
+ Agregamos funciones para cada opción del menú y para refrescar la pantalla.
* Limpieza y orden del menú.
22/feb 18:00 Mariano y Humberto:
+ Agregamos validación al modificar la memoria directamente o con ensamblador.
+ Agregamos la estructura de ejecución de las instrucciones (aún falta implementación).
+ Agregamos funciones para ejecutar cada operación del simulador (aún falta implementación).
23/feb 21:30 Mariano y Humberto:
+ Agregamos todas las funciones de las operaciones.
+ Agregamos la funcion que muestra como se van realizando las microoperaciones.
+ Agregamos la opcion de decidir el tiempo que toma cada microoperacion en ejecutarse.
+ Acabamos todo.
*/
// Identificar y hacer la configuración necesaria según el sistema operativo para la función de esperar.
#ifdef _WIN32
// Library and definitions for Windows (32-bit and 64-bit).
#include <windows.h>
#define WAIT Sleep
#define CONV 1000
#elif __APPLE__
// Library and definitios for Apple devices.
#include <unistd.h>
#define WAIT usleep
#define CONV 1
#elif __linux__
// Library and definitios for Linux systems.
#include <unistd.h>
#define WAIT usleep
#define CONV 1
#elif __unix__
// All Unices not caught above.
// Unix
#include <unistd.h>
#define WAIT usleep
#define CONV 1
#else
#error "Unknown compiler"
#endif
#include <iostream>
#include <locale.h>
#include <iomanip>
#include <stdlib.h>
#include <string>
#include <fstream>
#include <sstream>
#define MEMSIZE 1000
using namespace std;
// Arreglos con los códigos de operación.
// 00 01 02 03 04 05 06 07 08
string codes[] = {"NOP", "CLA", "LDA", "STA", "ADD", "SUB", "NEG", "JMP", "HLT"};
// Arreglo de la memoria del simulador.
string data[MEMSIZE];
// Opciones.
bool showWholeMemory = false, onlyShowErrors = false;
// Valor del PC inicial
int PC = 0, PCprev;
// Otros registros
string MDR, AC, MAR, IR;
// Duración del intervalo de ejecución de las microoperaciones.
int secs = 3;
// Función que obtiene el código de operación según un string.
// Parámetro: el string con la operación (por ejemplo: "LDA").
// Valor de retorno: int del código de operación (por ejemplo: 2).
int getOpCode(string operation) {
for(int i=0; i<9; i++) {
if(codes[i] == operation)
return i;
}
return -1;
}
// Función que obtiene el tipo de direccionamiento según un string.
// Parámetro: el string con una letra que representa el tipo (por ejemplo: "ABS").
// Valor de retorno: int del tipo de direccionamiento (por ejemplo: 1).
int getAddrType(string input) {
if(input == "ABS")
return 1;
if(input == "IND")
return 2;
if(input == "INM")
return 3;
if(input == "REL")
return 4;
return -1;
}
// Función que convierte un string a mayúsculas.
// Parámetros: el string por modificar.
// Valor de retorno: el string en mayúsculas.
string toUpper(string str) {
string result = "";
for(int i = 0; i < str.length(); i++) {
result += toupper(str[i]);
}
return result;
}
// Función que convierte un entero a un string.
// Parámetro: el número entero.
// Valor de retorno: string con el entero convertido.
string toString(int num) {
ostringstream str;
str << num;
return str.str();
}
// Función que vacía la memoria del simulador.
// Parámetros: ninguno.
// Valor de retorno: ninguno.
void emptyMemory() {
for(int i = 0; i < MEMSIZE; i++) {
data[i] = "";
}
}
/*
Función que limpia la pantalla.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void refreshScreen() {
cout << string(80, '\n');
}
/*
Funcion que completa el PC con los ceros requeridos para mostrarlo.
Parametros: PC.
Valor de retorno: string con el PC completo.
*/
string completePC(int iPC) {
string myPC = toString(iPC);
ostringstream complete;
for(int i = 0; i < 3 - myPC.length(); i++) {
complete << 0;
}
complete << myPC;
return complete.str();
}
// Función que convierte de maquinal a ensamblador.
// Parámetros: string con la instrucción en maquinal.
// Valor de retorno: string con la instrucción en esamblador.
string convertAssemb(string inst) {
string opCode = inst.substr(0,2), code;
char addrType = inst[2];
string addr;
string parameter = inst.substr(3);
code = codes[atoi(opCode.c_str())];
switch(addrType) {
case '1':
addr = "ABS";
break;
case '2':
addr = "IND";
break;
case '3':
addr = "INM";
break;
case '4':
addr = "REL";
break;
}
if(code == "NOP" || code == "CLA" || code == "NEG" || code == "HLT")
parameter = "";
return code + " " + addr + " " + parameter;;
}
/*
Funcion que muestra las direcciones de memoria, su contenido y la dirección ejecutándose actualmente.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void showMemoryReg() {
int iSpaces;
for(int i = 0; i < MEMSIZE; i++) {
if (data[i] != "") {
if(data[i][0] != '+' && data[i][0] != '-') {
cout << setw(3) << setfill('0') << i << "\t" << data[i];
iSpaces = 15 - convertAssemb(data[i]).length();
cout << " " << convertAssemb(data[i]);
if(i == PCprev)
cout << setw(iSpaces) << setfill(' ') << "<==";
cout << endl;
} else {
cout << setw(3) << setfill('0') << i << "\t" << data[i];
cout << endl;
}
}
}
cout << endl;
}
/*
Funcion que muestra en pantalla los registros y sus cambios
Parametros: ninguno.
valor de retorno: ninguno.
*/
void displayChanges() {
WAIT(secs * CONV);
refreshScreen();
cout << "\t\tR E G I S T R O S" << endl << endl;
cout << setfill(' ') << setw(5) << "|" << setw(5) << "PC" << setw(4) << "|" << setw(6) << "MAR" << setw(4) << "|" << setw(6) << "MDR" << setw(4) << "|" << setw(5) << "IR" << setw(4) << "|" << endl;
cout << setw(10) << completePC(PC) << " " << setw(9) << MAR << " " << setw(10) << MDR << " " << setw(9) << IR << endl << endl;
cout << setw(11) << "AC" << ": " << setw(8) << AC << endl;
cout << endl;
showMemoryReg();
}
// Función que regresa un string que contiene cómo se mostrará la opción de acuerdo con su estado (activado/desactivado).
// Parámetros: una variable booleana.
// Valor de retorno: un string que contiene cómo se mostrará la opción.
string getBoolX(bool var) {
if(var)
return "[X]";
else
return "[ ]";
}
/*
Funcion que muestra las direcciones de memoria y su contenido.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void showMemory() {
if(showWholeMemory) {
for(int i = 0; i < 10; i++) {
cout << "\t" << setw(2) << setfill('0') << i;
}
cout << endl;
for(int i = 0; i < MEMSIZE; i += 10) {
cout << setw(3) << setfill('0') << i;
for(int j = i; j < i + 10; j++) {
cout << "\t" << data[j];
}
cout << endl;
}
cout << endl << endl;
}
else {
cout << "Se muestran solo las direcciones de memoria no vacias:" << endl << endl;
for(int i = 0; i < MEMSIZE; i++) {
if (data[i] != "") {
if(data[i][0] != '+' && data[i][0] != '-') {
cout << setw(3) << setfill('0') << i << "\t" << data[i] << " " << convertAssemb(data[i]) << endl;
}
else {
cout << setw(3) << setfill('0') << i << "\t" << data[i] << endl;
}
}
}
}
cout << endl;
}
/*
Función que edita el contenido de una dirección de memoria directamente.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void editMemoryDirectly() {
int dir;
string val;
cout << "Introduzca la direccion de memoria por modificar: ";
cin >> dir;
cout << "La dirección " << setw(3) << setfill('0') << dir << " contiene: ";
if(data[dir] == "")
cout << "(vacío)";
else
cout << data[dir] << " (" << convertAssemb(data[dir]) << ")";
cout << endl;
cout << "Introduzca el nuevo valor: ";
cin >> val;
cout << endl;
// Validation process starts here.
// If it's data/value...
if(val[0] == '+' || val[0] == '-') {
data[dir] = val;
} else {
// If it's an instruction...
string opCode, addr, param;
int iOpCode, iAddr;
opCode = val.substr(0, 2);
iOpCode = atoi(opCode.c_str());
// If it's a valid operation code...
if(iOpCode >= 0 && iOpCode < 9) {
addr = val.substr(2, 1);
iAddr = atoi(addr.c_str());
// If it's an instruction which doesn't take parameters, set addressing type to 1 to make it valid.
if(iOpCode == 0 || iOpCode == 1 || iOpCode == 6 || iOpCode == 8)
iAddr = 1;
// If it's a valid addressing type...
if(iAddr >= 1 && iAddr <= 4) {
param = val.substr(3);
// If parameter is three characters long...
if(param.length() == 3) {
// If addressing type is ABS or IND...
if(iAddr == 1 || iAddr == 2) {
if(param[0] == '+' || param[0] == '-') {
cout << " ERROR: El parámetro no puede tener signo para ese tipo de direccionamiento." << endl;
return;
}
}
// Success. Save to memory.
data[dir] = val;
cout << "Dirección de memoria modificada exitosamente.";
} else {
cout << "ERROR: el parámetro debe ser de tres caracteres.";
}
} else {
cout << "ERROR: el tipo de direccionamiento no es válido.";
}
} else {
cout << "ERROR: el código de operación no es válido.";
}
}
cout << endl;
}
/*
Función que edita el contenido de una dirección de memoria con la instrucción dada.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void editMemory() {
int dir;
string line;
cout << "Introduzca la dirección de memoria por modificar: ";
cin >> dir;
cin.ignore();
cout << "La dirección " << setw(3) << setfill('0') << dir << " contiene: ";
if(data[dir] == "")
cout << "(vacío)";
else
cout << data[dir] << " (" << convertAssemb(data[dir]) << ")";
cout << endl;
cout << "Introduzca el nuevo contenido en ensamblador (por ejemplo, LDA ABS 003): ";
getline(cin, line);
line = toUpper(line);
// "Compiling" process starts here.
// ints to store operation code, addressing type and parameter value. They will be merged to form an instruction.
int opCode, addrType;
string segment, param;
// If the line is empty, store as empty string("").
if(line.empty()) {
data[dir] = "";
} else {
istringstream inStream(line);
ostringstream outStream;
// This should contain the operation (e.g. "LDA" or "CLA").
inStream >> segment;
opCode = getOpCode(segment);
// If operation is an instruction which doesn't take parameters...
if(codes[opCode] == "HLT" || codes[opCode] == "NEG" || codes[opCode] == "CLA" || codes[opCode] == "NOP") {
outStream << setw(2) << setfill('0') << opCode;
outStream << "0000";
data[dir] = outStream.str();
cout << data[dir] << endl << endl;
// If operation code is valid...
} else if(opCode != -1) {
// This should contain the addressing type (e.g. "ABS" or "INM").
inStream >> segment;
addrType = getAddrType(segment);
// If the addressing type is valid...
if(addrType != -1) {
// This should contain the parameter value, a three digit number (e.g. "020" or "123").
inStream >> segment;
if(segment.length() == 3) {
// If addressing type is ABS or IND...
if(addrType == 1 || addrType == 2) {
if(segment[0] == '+' || segment[0] == '-') {
cout << "ERROR: El parámetro no puede tener signo para ese tipo de direccionamiento." << endl;
return;
}
}
param = segment;
outStream << setw(2) << setfill('0') << opCode;
outStream << addrType;
outStream << param;
data[dir] = outStream.str();
cout << data[dir] << endl << endl;
} else {
cout << "ERROR: no se encontró un valor de parámetro válido." << endl;
return;
}
} else {
cout << "ERROR: no se encontró un tipo de direccionamiento válido." << endl;
return;
}
// If operation code is invalid but it's a value (values start with the sign and must be six characters long)...
} else if( (line[0] == '+' || line[0] == '-') && line.length() == 6 ) {
data[dir] = line;
cout << data[dir] << endl << endl;
// If operation code is invalid and it's not a value...
} else {
cout << "ERROR: no se encontró una operación o valor/dato válido." << endl;
return;
}
}
cout << endl << "Dirección de memoria modificada exitosamente." << endl;
}
/*
Función que carga la memoria del simulador con los datos de un archivo.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void loadFile() {
ifstream file;
string line, segment, fileName;
bool compileSuccess = true;
cin.ignore();
cout << "Se sobreescribirán las direcciones de memoria empalmadas." << endl << endl;
cout << "Introduzca el nombre del archivo por leer: ";
getline(cin, fileName);
file.open(fileName.c_str());
if(!file.is_open()) {
cout << endl << "No se pudo abrir el archivo. Verifique que el archivo exista y que el nombre sea correcto." << endl;
return;
} else {
cout << endl << "Leyendo archivo..." << endl << endl;
}
// ints to store operation code, addressing type and parameter value. They will be merged to form an instruction.
int opCode, addrType;
string param;
int i = 0;
while(getline(file, line)) {
if(!onlyShowErrors)
cout << "Leyendo línea " << setw(3) << setfill('0') << i << "..." << endl;
line = toUpper(line);
// If the line is empty, store as empty string("").
if(line.empty()) {
if(!onlyShowErrors)
cout << " Línea vacía encontrada." << endl;
data[i] = "";
cout << endl;
} else {
istringstream inStream(line);
ostringstream outStream;
// This should contain the operation (e.g. "LDA" or "CLA").
inStream >> segment;
opCode = getOpCode(segment);
// If operation is an instruction which doesn't take parameters...
if(codes[opCode] == "HLT" || codes[opCode] == "NEG" || codes[opCode] == "CLA" || codes[opCode] == "NOP") {
outStream << setw(2) << setfill('0') << opCode;
outStream << "0000";
data[i] = outStream.str();
if(!onlyShowErrors) {
cout << " Operación que no necesita parámetros encontrada." << endl;
cout << " " << data[i] << endl << endl;
}
// If operation code is valid...
} else if(opCode != -1) {
if(!onlyShowErrors)
cout << " Operación encontrada." << endl;
// This should contain the addressing type (e.g. "ABS" or "INM").
inStream >> segment;
addrType = getAddrType(segment);
if(addrType != -1) {
if(!onlyShowErrors)
cout << " Tipo de direccionamiento encontrado." << endl;
// This should contain the parameter value, a three digit number (e.g. "020" or "123").
inStream >> segment;
if(segment.length() == 3) {
// If addressing type is ABS or IND...
if(addrType == 1 || addrType == 2) {
if(segment[0] == '+' || segment[0] == '-') {
cout << " ERROR: El parámetro no puede tener signo para ese tipo de direccionamiento." << endl;
return;
}
}
param = segment;
outStream << setw(2) << setfill('0') << opCode;
outStream << addrType;
outStream << param;
data[i] = outStream.str();
if(!onlyShowErrors) {
cout << " Valor de parámetro encontrado." << endl;
cout << " " << data[i] << endl << endl;
}
} else {
if(onlyShowErrors)
cout << "Línea " << setw(3) << setfill('0') << i << ": ";
cout << " ERROR: no se encontró un valor de parámetro válido." << endl;
compileSuccess = false;
return;
}
} else {
if(onlyShowErrors)
cout << "Línea " << setw(3) << setfill('0') << i << ": ";
cout << " ERROR: no se encontró un tipo de direccionamiento válido." << endl;
compileSuccess = false;
return;
}
// If operation code is invalid but it's a value (values start with the sign and must be six characters long)...
} else if( (line[0] == '+' || line[0] == '-') && line.length() == 6 ) {
data[i] = line;
if(!onlyShowErrors) {
cout << " Valor/dato encontrado." << endl;
cout << " " << data[i] << endl << endl;
}
// If operation code is invalid and it's not a value...
} else {
if(onlyShowErrors)
cout << "Línea " << setw(3) << setfill('0') << i << ": ";
cout << " ERROR: no se encontró una operación o valor/dato válido." << endl;
compileSuccess = false;
return;
}
}
i++;
}
cout << "Lectura de archivo finalizada." << endl;
if(compileSuccess) {
cout << "Carga exitosa." << endl;
} else {
cout << "No fue posible cargar el contenido del archivo por uno o mas errores.";
}
file.close();
}
/*
Función que vacía la memoria del simulador.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void clearMemory() {
int option;
cout << "¿Está seguro de que desea vaciar la memoria?\n 1 Si\n 2 No\n => ";
cin >> option;
cout << endl;
if(option == 1) {
emptyMemory();
cout << "Memoria vaciada." << endl;
} else {
cout << "No se vació la memoria." << endl;
}
// Reset option value.
option = 3;
}
/*
Función que muestra el submenú de opciones.
Parámetros: ninguno.
Valor de retorno: ninguno.
*/
void showOptions() {
// Opciones sobre cómo mostrar la memoria, velocidad de procesamiento, etcétera.
int option;
do {
cout << "Seleccione la opción que desea cambiar (X = activado):" << endl;
cout << " 1 " << getBoolX(showWholeMemory) << " Mostrar el contenido completo de la memoria" << endl;
cout << " 2 " << getBoolX(onlyShowErrors) << " Mostrar sólo los errores al cargar un archivo en memoria" << endl;
cout << " 3 " << "[" << secs << "] Intervalo en segundos entre la ejecución de microoperaciones" << endl;
cout << " 0 Volver al menú principal" << endl;
cout << " => ";
cin >> option;
cout << endl;
if(option == 1)
showWholeMemory = !showWholeMemory;
else if(option == 2)
onlyShowErrors = !onlyShowErrors;
else if(option == 3) {
cout << endl << "Introduzca la nueva duración del intervalo en segundos: ";
double secsDouble;
cin >> secsDouble;
secs = static_cast<int>(secsDouble);
cout << endl;
}
refreshScreen();
} while(option != 0);
// Reset option value.
option = 6;
}
// Función que completa una palabra al número necesario de caracteres, rellenando con 0.
// Parámetros: un número entero.
// Valor de retorno: string con el AC ajustado.
string completeAC(int iTemp) {
string str = toString(iTemp);
ostringstream complete;
if(str[0] == '-') {
str = str.substr(1);
complete << '-';
} else {
complete << '+';
}
for(int i = 0; i < 5 - str.length(); i++) {
complete << 0;
}
complete << str;
return complete.str();
}
/*
Funcion que realiza la operacion CLA y pone en 0 el acumulador.
Parametros: Ninguno.
Valor de retorno: Ninguno.
*/
void opCLA() {
AC = "+00000";
displayChanges();
}
/*
Funcion que realiza la operacion LDA.
de memoria.
Parametros: el tipo de direccionamiento y el parametro de la instruccion ([IR]2-0).
Valor de retorno: ninguno.
*/
void opLDA(string sDireccionamiento, string sExtra) {
int iDir, iTemp;
string sContenido;
switch (sDireccionamiento[0]) {
// Absoluto
case '1': {
MAR = sExtra;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = data[iDir];
displayChanges();
AC = MDR;
displayChanges();
break;
}
// Indirecto
case '2': {
MAR = sExtra;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = data[iDir];
displayChanges();
MAR = MDR;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = data[iDir];
displayChanges();
AC = MDR;
displayChanges();
break;
}
// Inmediato
case '3': {
sContenido = completeAC(atoi(sExtra.c_str())); // Completa el string con 0 y signo respectivamente
AC = sContenido;
displayChanges();
break;
}
// Relativo
case '4': {
iTemp = atoi(sExtra.c_str());
if (PC + iTemp < 0 || PC + iTemp > 999) {
cout << "OUT OF BOUNDS" << endl;
}
else {
if (PC + iTemp < 100) {
if (PC + iTemp < 10) {
MAR = "00" + toString(PC + iTemp);
}
else {
MAR = "0" + toString(PC + iTemp);
}
}
else {
MAR = toString(PC + iTemp);
}
displayChanges();
MDR = data[PC + iTemp]; // MMRead
displayChanges();
AC = MDR;
displayChanges();
}
break;
}
default: {
cout << "INSTRUCCION NO VALIDA" << endl;
}
}
}
/*
Funcion que realiza la operacion STA.
Parametros: el tipo de direccionamiento y el parametro de la instruccion ([IR]2-0).
Valor de retorno: ninguno.
*/
void opSTA(string sDireccionamiento, string sExtra) {
int iDir, iTemp;
string sContenido;
switch (sDireccionamiento[0]) {
// Absoluto
case '1': {
MAR = sExtra;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = AC;
displayChanges();
data[iDir] = MDR; // MMWrite
displayChanges();
break;
}
// Indirecto
case '2': {
MAR = sExtra;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = data[iDir];
displayChanges();
MAR = MDR;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = AC;
displayChanges();
data[iDir] = MDR; // MMWrite
displayChanges();
break;
}
// Relativo
case '4': {
iTemp = atoi(sExtra.c_str());
if (PC + iTemp < 0 || PC + iTemp > 999) {
cout << "OUT OF BOUNDS" << endl;
}
else {
if (PC + iTemp < 100) {
if (PC + iTemp < 10) {
MAR = "00" + toString(PC + iTemp);
}
else {
MAR = "0" + toString(PC + iTemp);
}
}
else {
MAR = toString(PC + iTemp);
}
displayChanges();
MDR = AC;
displayChanges();
data[PC + iTemp] = MDR; // MMWrite
displayChanges();
}
break;
}
default: {
cout << "INSTRUCCION NO VALIDA" << endl;
}
}
}
/*
Funcion que realiza la operacion ADD.
Parametros: el tipo de direccionamiento y el parametro de la instruccion ([IR]2-0).
Valor de retorno: ninguno.
*/
void opADD(string sDireccionamiento, string sExtra) {
int iDir, iTemp, iTemp2;
string sContenido;
switch (sDireccionamiento[0]) {
// Absoluto
case '1': {
MAR = sExtra;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = data[iDir]; // MMRead
displayChanges();
iTemp = atoi(MDR.c_str());
iTemp2 = atoi(AC.c_str());
if (iTemp + iTemp2 > 99999 || iTemp + iTemp2 < -99999) {
cout << "OVERFLOW" << endl;
}
else {
AC = completeAC(iTemp + iTemp2);
displayChanges();
}
break;
}
// Indirecto
case '2': {
MAR = sExtra;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = data[iDir]; // MMRead
displayChanges();
MAR = MDR;
displayChanges();
iDir = atoi(MAR.c_str());
MDR = data[iDir]; // MMRead
displayChanges();
iTemp = atoi(MDR.c_str());
iTemp2 = atoi(AC.c_str());
if (iTemp + iTemp2 > 99999 || iTemp + iTemp2 < -99999) {
cout << "OVERFLOW" << endl;
}
else {
AC = completeAC(iTemp + iTemp2);
displayChanges();
}
break;
}
// Inmediato
case '3': {
iTemp = atoi(sExtra.c_str());
iTemp2 = atoi(AC.c_str());
if (iTemp + iTemp2 > 99999 || iTemp + iTemp2 < -99999) {
cout << "OVERFLOW" << endl;
}
else {
AC = completeAC(iTemp + iTemp2);
displayChanges();
}
break;
}
// Relativo
case '4': {
iTemp = atoi(sExtra.c_str());
if (PC + iTemp < 0 || PC + iTemp > 999) {
cout << "OUT OF BOUNDS" << endl;
}
else {
if (PC + iTemp < 100) {
if (PC + iTemp < 10) {
MAR = "00" + toString(PC + iTemp);
}
else {
MAR = "0" + toString(PC + iTemp);
}
}
else {
MAR = toString(PC + iTemp);
}
displayChanges();
MDR = data[PC + iTemp]; // MMRead
displayChanges();
iTemp = atoi(MDR.c_str());
iTemp2 = atoi(AC.c_str());
AC = completeAC(iTemp + iTemp2);
displayChanges();
}
break;
}
default: {
cout << "INSTRUCCION NO VALIDA" << endl;
}
}
}
/*
Funcion que realiza la operacion SUB.
Parametros: el tipo de direccionamiento y el parametro de la instruccion ([IR]2-0).
Valor de retorno: ninguno.
*/
void opSUB(string sDireccionamiento, string sExtra) {