-
Notifications
You must be signed in to change notification settings - Fork 5
/
output.txt
1435 lines (1435 loc) · 48.7 KB
/
output.txt
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
python3 ./Phase\ I/ASM2MC.py fib.asm
python3 ./Phase\ II/runScript.py fib.mc
Loaded program in Memory!
Processing Instruction at 0x0
Clock=1 IR=0x600513 PC=0x0
Register x10 updated to : 0x6
Processing Instruction at 0x4
Clock=2 IR=0x193 PC=0x4
Register x3 updated to : 0x0
Processing Instruction at 0x8
Clock=3 IR=0x100213 PC=0x8
Register x4 updated to : 0x1
Processing Instruction at 0xc
Clock=4 IR=0x100f93 PC=0xc
Register x31 updated to : 0x1
Processing Instruction at 0x10
Clock=5 IR=0x8000ef PC=0x10
Register x1 updated to : 0x14
Processing Instruction at 0x18
Clock=6 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffec
Processing Instruction at 0x1c
Clock=7 IR=0x112023 PC=0x1c
Memory at 0x7fffffec updated to : 0x14
Memory at 0x7fffffed updated to : 0x0
Memory at 0x7fffffee updated to : 0x0
Memory at 0x7fffffef updated to : 0x0
Processing Instruction at 0x20
Clock=8 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffe8
Processing Instruction at 0x24
Clock=9 IR=0xa12023 PC=0x24
Memory at 0x7fffffe8 updated to : 0x6
Memory at 0x7fffffe9 updated to : 0x0
Memory at 0x7fffffea updated to : 0x0
Memory at 0x7fffffeb updated to : 0x0
Processing Instruction at 0x28
Clock=10 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=11 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=12 IR=-0xafaed PC=0x30
Register x10 updated to : 0x5
Processing Instruction at 0x34
Clock=13 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=14 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffe4
Processing Instruction at 0x1c
Clock=15 IR=0x112023 PC=0x1c
Memory at 0x7fffffe4 updated to : 0x38
Memory at 0x7fffffe5 updated to : 0x0
Memory at 0x7fffffe6 updated to : 0x0
Memory at 0x7fffffe7 updated to : 0x0
Processing Instruction at 0x20
Clock=16 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffe0
Processing Instruction at 0x24
Clock=17 IR=0xa12023 PC=0x24
Memory at 0x7fffffe0 updated to : 0x5
Memory at 0x7fffffe1 updated to : 0x0
Memory at 0x7fffffe2 updated to : 0x0
Memory at 0x7fffffe3 updated to : 0x0
Processing Instruction at 0x28
Clock=18 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=19 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=20 IR=-0xafaed PC=0x30
Register x10 updated to : 0x4
Processing Instruction at 0x34
Clock=21 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=22 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffdc
Processing Instruction at 0x1c
Clock=23 IR=0x112023 PC=0x1c
Memory at 0x7fffffdc updated to : 0x38
Memory at 0x7fffffdd updated to : 0x0
Memory at 0x7fffffde updated to : 0x0
Memory at 0x7fffffdf updated to : 0x0
Processing Instruction at 0x20
Clock=24 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffd8
Processing Instruction at 0x24
Clock=25 IR=0xa12023 PC=0x24
Memory at 0x7fffffd8 updated to : 0x4
Memory at 0x7fffffd9 updated to : 0x0
Memory at 0x7fffffda updated to : 0x0
Memory at 0x7fffffdb updated to : 0x0
Processing Instruction at 0x28
Clock=26 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=27 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=28 IR=-0xafaed PC=0x30
Register x10 updated to : 0x3
Processing Instruction at 0x34
Clock=29 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=30 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffd4
Processing Instruction at 0x1c
Clock=31 IR=0x112023 PC=0x1c
Memory at 0x7fffffd4 updated to : 0x38
Memory at 0x7fffffd5 updated to : 0x0
Memory at 0x7fffffd6 updated to : 0x0
Memory at 0x7fffffd7 updated to : 0x0
Processing Instruction at 0x20
Clock=32 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x24
Clock=33 IR=0xa12023 PC=0x24
Memory at 0x7fffffd0 updated to : 0x3
Memory at 0x7fffffd1 updated to : 0x0
Memory at 0x7fffffd2 updated to : 0x0
Memory at 0x7fffffd3 updated to : 0x0
Processing Instruction at 0x28
Clock=34 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=35 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=36 IR=-0xafaed PC=0x30
Register x10 updated to : 0x2
Processing Instruction at 0x34
Clock=37 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=38 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x1c
Clock=39 IR=0x112023 PC=0x1c
Memory at 0x7fffffcc updated to : 0x38
Memory at 0x7fffffcd updated to : 0x0
Memory at 0x7fffffce updated to : 0x0
Memory at 0x7fffffcf updated to : 0x0
Processing Instruction at 0x20
Clock=40 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x24
Clock=41 IR=0xa12023 PC=0x24
Memory at 0x7fffffc8 updated to : 0x2
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x28
Clock=42 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=43 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=44 IR=-0xafaed PC=0x30
Register x10 updated to : 0x1
Processing Instruction at 0x34
Clock=45 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=46 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x1c
Clock=47 IR=0x112023 PC=0x1c
Memory at 0x7fffffc4 updated to : 0x38
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x20
Clock=48 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc0
Processing Instruction at 0x24
Clock=49 IR=0xa12023 PC=0x24
Memory at 0x7fffffc0 updated to : 0x1
Memory at 0x7fffffc1 updated to : 0x0
Memory at 0x7fffffc2 updated to : 0x0
Memory at 0x7fffffc3 updated to : 0x0
Processing Instruction at 0x28
Clock=50 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=51 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x5c
Clock=52 IR=0x4005b3 PC=0x5c
Register x11 updated to : 0x1
Processing Instruction at 0x60
Clock=53 IR=0xa63 PC=0x60
Processing Instruction at 0x74
Clock=54 IR=0x12503 PC=0x74
Register x10 updated to : 0x1
Processing Instruction at 0x78
Clock=55 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=56 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x80
Clock=57 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=58 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x3c
Clock=59 IR=0xb12023 PC=0x3c
Memory at 0x7fffffc4 updated to : 0x1
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x40
Clock=60 IR=-0xafaed PC=0x40
Register x10 updated to : 0x0
Processing Instruction at 0x44
Clock=61 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=62 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc0
Processing Instruction at 0x1c
Clock=63 IR=0x112023 PC=0x1c
Memory at 0x7fffffc0 updated to : 0x48
Memory at 0x7fffffc1 updated to : 0x0
Memory at 0x7fffffc2 updated to : 0x0
Memory at 0x7fffffc3 updated to : 0x0
Processing Instruction at 0x20
Clock=64 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffbc
Processing Instruction at 0x24
Clock=65 IR=0xa12023 PC=0x24
Memory at 0x7fffffbc updated to : 0x0
Memory at 0x7fffffbd updated to : 0x0
Memory at 0x7fffffbe updated to : 0x0
Memory at 0x7fffffbf updated to : 0x0
Processing Instruction at 0x28
Clock=66 IR=0x2050663 PC=0x28
Processing Instruction at 0x54
Clock=67 IR=0x3005b3 PC=0x54
Register x11 updated to : 0x0
Processing Instruction at 0x58
Clock=68 IR=0xe63 PC=0x58
Processing Instruction at 0x74
Clock=69 IR=0x12503 PC=0x74
Register x10 updated to : 0x0
Processing Instruction at 0x78
Clock=70 IR=0x412083 PC=0x78
Register x1 updated to : 0x48
Processing Instruction at 0x7c
Clock=71 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x80
Clock=72 IR=0x8067 PC=0x80
Processing Instruction at 0x48
Clock=73 IR=-0x3efeed PC=0x48
Register x2 updated to : 0x7fffffc0
Processing Instruction at 0x4c
Clock=74 IR=0xb12023 PC=0x4c
Memory at 0x7fffffc0 updated to : 0x0
Memory at 0x7fffffc1 updated to : 0x0
Memory at 0x7fffffc2 updated to : 0x0
Memory at 0x7fffffc3 updated to : 0x0
Processing Instruction at 0x50
Clock=75 IR=0xa63 PC=0x50
Processing Instruction at 0x64
Clock=76 IR=0x12e03 PC=0x64
Register x28 updated to : 0x0
Processing Instruction at 0x68
Clock=77 IR=0x412e83 PC=0x68
Register x29 updated to : 0x1
Processing Instruction at 0x6c
Clock=78 IR=0x810113 PC=0x6c
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x70
Clock=79 IR=0x1de05b3 PC=0x70
Register x11 updated to : 0x1
Processing Instruction at 0x74
Clock=80 IR=0x12503 PC=0x74
Register x10 updated to : 0x2
Processing Instruction at 0x78
Clock=81 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=82 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x80
Clock=83 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=84 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x3c
Clock=85 IR=0xb12023 PC=0x3c
Memory at 0x7fffffcc updated to : 0x1
Memory at 0x7fffffcd updated to : 0x0
Memory at 0x7fffffce updated to : 0x0
Memory at 0x7fffffcf updated to : 0x0
Processing Instruction at 0x40
Clock=86 IR=-0xafaed PC=0x40
Register x10 updated to : 0x1
Processing Instruction at 0x44
Clock=87 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=88 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x1c
Clock=89 IR=0x112023 PC=0x1c
Memory at 0x7fffffc8 updated to : 0x48
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x20
Clock=90 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x24
Clock=91 IR=0xa12023 PC=0x24
Memory at 0x7fffffc4 updated to : 0x1
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x28
Clock=92 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=93 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x5c
Clock=94 IR=0x4005b3 PC=0x5c
Register x11 updated to : 0x1
Processing Instruction at 0x60
Clock=95 IR=0xa63 PC=0x60
Processing Instruction at 0x74
Clock=96 IR=0x12503 PC=0x74
Register x10 updated to : 0x1
Processing Instruction at 0x78
Clock=97 IR=0x412083 PC=0x78
Register x1 updated to : 0x48
Processing Instruction at 0x7c
Clock=98 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x80
Clock=99 IR=0x8067 PC=0x80
Processing Instruction at 0x48
Clock=100 IR=-0x3efeed PC=0x48
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x4c
Clock=101 IR=0xb12023 PC=0x4c
Memory at 0x7fffffc8 updated to : 0x1
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x50
Clock=102 IR=0xa63 PC=0x50
Processing Instruction at 0x64
Clock=103 IR=0x12e03 PC=0x64
Register x28 updated to : 0x1
Processing Instruction at 0x68
Clock=104 IR=0x412e83 PC=0x68
Register x29 updated to : 0x1
Processing Instruction at 0x6c
Clock=105 IR=0x810113 PC=0x6c
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x70
Clock=106 IR=0x1de05b3 PC=0x70
Register x11 updated to : 0x2
Processing Instruction at 0x74
Clock=107 IR=0x12503 PC=0x74
Register x10 updated to : 0x3
Processing Instruction at 0x78
Clock=108 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=109 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffd8
Processing Instruction at 0x80
Clock=110 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=111 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffd4
Processing Instruction at 0x3c
Clock=112 IR=0xb12023 PC=0x3c
Memory at 0x7fffffd4 updated to : 0x2
Memory at 0x7fffffd5 updated to : 0x0
Memory at 0x7fffffd6 updated to : 0x0
Memory at 0x7fffffd7 updated to : 0x0
Processing Instruction at 0x40
Clock=113 IR=-0xafaed PC=0x40
Register x10 updated to : 0x2
Processing Instruction at 0x44
Clock=114 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=115 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x1c
Clock=116 IR=0x112023 PC=0x1c
Memory at 0x7fffffd0 updated to : 0x48
Memory at 0x7fffffd1 updated to : 0x0
Memory at 0x7fffffd2 updated to : 0x0
Memory at 0x7fffffd3 updated to : 0x0
Processing Instruction at 0x20
Clock=117 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x24
Clock=118 IR=0xa12023 PC=0x24
Memory at 0x7fffffcc updated to : 0x2
Memory at 0x7fffffcd updated to : 0x0
Memory at 0x7fffffce updated to : 0x0
Memory at 0x7fffffcf updated to : 0x0
Processing Instruction at 0x28
Clock=119 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=120 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=121 IR=-0xafaed PC=0x30
Register x10 updated to : 0x1
Processing Instruction at 0x34
Clock=122 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=123 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x1c
Clock=124 IR=0x112023 PC=0x1c
Memory at 0x7fffffc8 updated to : 0x38
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x20
Clock=125 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x24
Clock=126 IR=0xa12023 PC=0x24
Memory at 0x7fffffc4 updated to : 0x1
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x28
Clock=127 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=128 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x5c
Clock=129 IR=0x4005b3 PC=0x5c
Register x11 updated to : 0x1
Processing Instruction at 0x60
Clock=130 IR=0xa63 PC=0x60
Processing Instruction at 0x74
Clock=131 IR=0x12503 PC=0x74
Register x10 updated to : 0x1
Processing Instruction at 0x78
Clock=132 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=133 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x80
Clock=134 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=135 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x3c
Clock=136 IR=0xb12023 PC=0x3c
Memory at 0x7fffffc8 updated to : 0x1
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x40
Clock=137 IR=-0xafaed PC=0x40
Register x10 updated to : 0x0
Processing Instruction at 0x44
Clock=138 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=139 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x1c
Clock=140 IR=0x112023 PC=0x1c
Memory at 0x7fffffc4 updated to : 0x48
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x20
Clock=141 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc0
Processing Instruction at 0x24
Clock=142 IR=0xa12023 PC=0x24
Memory at 0x7fffffc0 updated to : 0x0
Memory at 0x7fffffc1 updated to : 0x0
Memory at 0x7fffffc2 updated to : 0x0
Memory at 0x7fffffc3 updated to : 0x0
Processing Instruction at 0x28
Clock=143 IR=0x2050663 PC=0x28
Processing Instruction at 0x54
Clock=144 IR=0x3005b3 PC=0x54
Register x11 updated to : 0x0
Processing Instruction at 0x58
Clock=145 IR=0xe63 PC=0x58
Processing Instruction at 0x74
Clock=146 IR=0x12503 PC=0x74
Register x10 updated to : 0x0
Processing Instruction at 0x78
Clock=147 IR=0x412083 PC=0x78
Register x1 updated to : 0x48
Processing Instruction at 0x7c
Clock=148 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x80
Clock=149 IR=0x8067 PC=0x80
Processing Instruction at 0x48
Clock=150 IR=-0x3efeed PC=0x48
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x4c
Clock=151 IR=0xb12023 PC=0x4c
Memory at 0x7fffffc4 updated to : 0x0
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x50
Clock=152 IR=0xa63 PC=0x50
Processing Instruction at 0x64
Clock=153 IR=0x12e03 PC=0x64
Register x28 updated to : 0x0
Processing Instruction at 0x68
Clock=154 IR=0x412e83 PC=0x68
Register x29 updated to : 0x1
Processing Instruction at 0x6c
Clock=155 IR=0x810113 PC=0x6c
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x70
Clock=156 IR=0x1de05b3 PC=0x70
Register x11 updated to : 0x1
Processing Instruction at 0x74
Clock=157 IR=0x12503 PC=0x74
Register x10 updated to : 0x2
Processing Instruction at 0x78
Clock=158 IR=0x412083 PC=0x78
Register x1 updated to : 0x48
Processing Instruction at 0x7c
Clock=159 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffd4
Processing Instruction at 0x80
Clock=160 IR=0x8067 PC=0x80
Processing Instruction at 0x48
Clock=161 IR=-0x3efeed PC=0x48
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x4c
Clock=162 IR=0xb12023 PC=0x4c
Memory at 0x7fffffd0 updated to : 0x1
Memory at 0x7fffffd1 updated to : 0x0
Memory at 0x7fffffd2 updated to : 0x0
Memory at 0x7fffffd3 updated to : 0x0
Processing Instruction at 0x50
Clock=163 IR=0xa63 PC=0x50
Processing Instruction at 0x64
Clock=164 IR=0x12e03 PC=0x64
Register x28 updated to : 0x1
Processing Instruction at 0x68
Clock=165 IR=0x412e83 PC=0x68
Register x29 updated to : 0x2
Processing Instruction at 0x6c
Clock=166 IR=0x810113 PC=0x6c
Register x2 updated to : 0x7fffffd8
Processing Instruction at 0x70
Clock=167 IR=0x1de05b3 PC=0x70
Register x11 updated to : 0x3
Processing Instruction at 0x74
Clock=168 IR=0x12503 PC=0x74
Register x10 updated to : 0x4
Processing Instruction at 0x78
Clock=169 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=170 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffe0
Processing Instruction at 0x80
Clock=171 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=172 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffdc
Processing Instruction at 0x3c
Clock=173 IR=0xb12023 PC=0x3c
Memory at 0x7fffffdc updated to : 0x3
Memory at 0x7fffffdd updated to : 0x0
Memory at 0x7fffffde updated to : 0x0
Memory at 0x7fffffdf updated to : 0x0
Processing Instruction at 0x40
Clock=174 IR=-0xafaed PC=0x40
Register x10 updated to : 0x3
Processing Instruction at 0x44
Clock=175 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=176 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffd8
Processing Instruction at 0x1c
Clock=177 IR=0x112023 PC=0x1c
Memory at 0x7fffffd8 updated to : 0x48
Memory at 0x7fffffd9 updated to : 0x0
Memory at 0x7fffffda updated to : 0x0
Memory at 0x7fffffdb updated to : 0x0
Processing Instruction at 0x20
Clock=178 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffd4
Processing Instruction at 0x24
Clock=179 IR=0xa12023 PC=0x24
Memory at 0x7fffffd4 updated to : 0x3
Memory at 0x7fffffd5 updated to : 0x0
Memory at 0x7fffffd6 updated to : 0x0
Memory at 0x7fffffd7 updated to : 0x0
Processing Instruction at 0x28
Clock=180 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=181 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=182 IR=-0xafaed PC=0x30
Register x10 updated to : 0x2
Processing Instruction at 0x34
Clock=183 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=184 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x1c
Clock=185 IR=0x112023 PC=0x1c
Memory at 0x7fffffd0 updated to : 0x38
Memory at 0x7fffffd1 updated to : 0x0
Memory at 0x7fffffd2 updated to : 0x0
Memory at 0x7fffffd3 updated to : 0x0
Processing Instruction at 0x20
Clock=186 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x24
Clock=187 IR=0xa12023 PC=0x24
Memory at 0x7fffffcc updated to : 0x2
Memory at 0x7fffffcd updated to : 0x0
Memory at 0x7fffffce updated to : 0x0
Memory at 0x7fffffcf updated to : 0x0
Processing Instruction at 0x28
Clock=188 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=189 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=190 IR=-0xafaed PC=0x30
Register x10 updated to : 0x1
Processing Instruction at 0x34
Clock=191 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=192 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x1c
Clock=193 IR=0x112023 PC=0x1c
Memory at 0x7fffffc8 updated to : 0x38
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x20
Clock=194 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x24
Clock=195 IR=0xa12023 PC=0x24
Memory at 0x7fffffc4 updated to : 0x1
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x28
Clock=196 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=197 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x5c
Clock=198 IR=0x4005b3 PC=0x5c
Register x11 updated to : 0x1
Processing Instruction at 0x60
Clock=199 IR=0xa63 PC=0x60
Processing Instruction at 0x74
Clock=200 IR=0x12503 PC=0x74
Register x10 updated to : 0x1
Processing Instruction at 0x78
Clock=201 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=202 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x80
Clock=203 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=204 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x3c
Clock=205 IR=0xb12023 PC=0x3c
Memory at 0x7fffffc8 updated to : 0x1
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x40
Clock=206 IR=-0xafaed PC=0x40
Register x10 updated to : 0x0
Processing Instruction at 0x44
Clock=207 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=208 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x1c
Clock=209 IR=0x112023 PC=0x1c
Memory at 0x7fffffc4 updated to : 0x48
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x20
Clock=210 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc0
Processing Instruction at 0x24
Clock=211 IR=0xa12023 PC=0x24
Memory at 0x7fffffc0 updated to : 0x0
Memory at 0x7fffffc1 updated to : 0x0
Memory at 0x7fffffc2 updated to : 0x0
Memory at 0x7fffffc3 updated to : 0x0
Processing Instruction at 0x28
Clock=212 IR=0x2050663 PC=0x28
Processing Instruction at 0x54
Clock=213 IR=0x3005b3 PC=0x54
Register x11 updated to : 0x0
Processing Instruction at 0x58
Clock=214 IR=0xe63 PC=0x58
Processing Instruction at 0x74
Clock=215 IR=0x12503 PC=0x74
Register x10 updated to : 0x0
Processing Instruction at 0x78
Clock=216 IR=0x412083 PC=0x78
Register x1 updated to : 0x48
Processing Instruction at 0x7c
Clock=217 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x80
Clock=218 IR=0x8067 PC=0x80
Processing Instruction at 0x48
Clock=219 IR=-0x3efeed PC=0x48
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x4c
Clock=220 IR=0xb12023 PC=0x4c
Memory at 0x7fffffc4 updated to : 0x0
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0
Processing Instruction at 0x50
Clock=221 IR=0xa63 PC=0x50
Processing Instruction at 0x64
Clock=222 IR=0x12e03 PC=0x64
Register x28 updated to : 0x0
Processing Instruction at 0x68
Clock=223 IR=0x412e83 PC=0x68
Register x29 updated to : 0x1
Processing Instruction at 0x6c
Clock=224 IR=0x810113 PC=0x6c
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x70
Clock=225 IR=0x1de05b3 PC=0x70
Register x11 updated to : 0x1
Processing Instruction at 0x74
Clock=226 IR=0x12503 PC=0x74
Register x10 updated to : 0x2
Processing Instruction at 0x78
Clock=227 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=228 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffd4
Processing Instruction at 0x80
Clock=229 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=230 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x3c
Clock=231 IR=0xb12023 PC=0x3c
Memory at 0x7fffffd0 updated to : 0x1
Memory at 0x7fffffd1 updated to : 0x0
Memory at 0x7fffffd2 updated to : 0x0
Memory at 0x7fffffd3 updated to : 0x0
Processing Instruction at 0x40
Clock=232 IR=-0xafaed PC=0x40
Register x10 updated to : 0x1
Processing Instruction at 0x44
Clock=233 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=234 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x1c
Clock=235 IR=0x112023 PC=0x1c
Memory at 0x7fffffcc updated to : 0x48
Memory at 0x7fffffcd updated to : 0x0
Memory at 0x7fffffce updated to : 0x0
Memory at 0x7fffffcf updated to : 0x0
Processing Instruction at 0x20
Clock=236 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x24
Clock=237 IR=0xa12023 PC=0x24
Memory at 0x7fffffc8 updated to : 0x1
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x28
Clock=238 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=239 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x5c
Clock=240 IR=0x4005b3 PC=0x5c
Register x11 updated to : 0x1
Processing Instruction at 0x60
Clock=241 IR=0xa63 PC=0x60
Processing Instruction at 0x74
Clock=242 IR=0x12503 PC=0x74
Register x10 updated to : 0x1
Processing Instruction at 0x78
Clock=243 IR=0x412083 PC=0x78
Register x1 updated to : 0x48
Processing Instruction at 0x7c
Clock=244 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x80
Clock=245 IR=0x8067 PC=0x80
Processing Instruction at 0x48
Clock=246 IR=-0x3efeed PC=0x48
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x4c
Clock=247 IR=0xb12023 PC=0x4c
Memory at 0x7fffffcc updated to : 0x1
Memory at 0x7fffffcd updated to : 0x0
Memory at 0x7fffffce updated to : 0x0
Memory at 0x7fffffcf updated to : 0x0
Processing Instruction at 0x50
Clock=248 IR=0xa63 PC=0x50
Processing Instruction at 0x64
Clock=249 IR=0x12e03 PC=0x64
Register x28 updated to : 0x1
Processing Instruction at 0x68
Clock=250 IR=0x412e83 PC=0x68
Register x29 updated to : 0x1
Processing Instruction at 0x6c
Clock=251 IR=0x810113 PC=0x6c
Register x2 updated to : 0x7fffffd4
Processing Instruction at 0x70
Clock=252 IR=0x1de05b3 PC=0x70
Register x11 updated to : 0x2
Processing Instruction at 0x74
Clock=253 IR=0x12503 PC=0x74
Register x10 updated to : 0x3
Processing Instruction at 0x78
Clock=254 IR=0x412083 PC=0x78
Register x1 updated to : 0x48
Processing Instruction at 0x7c
Clock=255 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffdc
Processing Instruction at 0x80
Clock=256 IR=0x8067 PC=0x80
Processing Instruction at 0x48
Clock=257 IR=-0x3efeed PC=0x48
Register x2 updated to : 0x7fffffd8
Processing Instruction at 0x4c
Clock=258 IR=0xb12023 PC=0x4c
Memory at 0x7fffffd8 updated to : 0x2
Memory at 0x7fffffd9 updated to : 0x0
Memory at 0x7fffffda updated to : 0x0
Memory at 0x7fffffdb updated to : 0x0
Processing Instruction at 0x50
Clock=259 IR=0xa63 PC=0x50
Processing Instruction at 0x64
Clock=260 IR=0x12e03 PC=0x64
Register x28 updated to : 0x2
Processing Instruction at 0x68
Clock=261 IR=0x412e83 PC=0x68
Register x29 updated to : 0x3
Processing Instruction at 0x6c
Clock=262 IR=0x810113 PC=0x6c
Register x2 updated to : 0x7fffffe0
Processing Instruction at 0x70
Clock=263 IR=0x1de05b3 PC=0x70
Register x11 updated to : 0x5
Processing Instruction at 0x74
Clock=264 IR=0x12503 PC=0x74
Register x10 updated to : 0x5
Processing Instruction at 0x78
Clock=265 IR=0x412083 PC=0x78
Register x1 updated to : 0x38
Processing Instruction at 0x7c
Clock=266 IR=0x810113 PC=0x7c
Register x2 updated to : 0x7fffffe8
Processing Instruction at 0x80
Clock=267 IR=0x8067 PC=0x80
Processing Instruction at 0x38
Clock=268 IR=-0x3efeed PC=0x38
Register x2 updated to : 0x7fffffe4
Processing Instruction at 0x3c
Clock=269 IR=0xb12023 PC=0x3c
Memory at 0x7fffffe4 updated to : 0x5
Memory at 0x7fffffe5 updated to : 0x0
Memory at 0x7fffffe6 updated to : 0x0
Memory at 0x7fffffe7 updated to : 0x0
Processing Instruction at 0x40
Clock=270 IR=-0xafaed PC=0x40
Register x10 updated to : 0x4
Processing Instruction at 0x44
Clock=271 IR=-0x2a00f11 PC=0x44
Register x1 updated to : 0x48
Processing Instruction at 0x18
Clock=272 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffe0
Processing Instruction at 0x1c
Clock=273 IR=0x112023 PC=0x1c
Memory at 0x7fffffe0 updated to : 0x48
Memory at 0x7fffffe1 updated to : 0x0
Memory at 0x7fffffe2 updated to : 0x0
Memory at 0x7fffffe3 updated to : 0x0
Processing Instruction at 0x20
Clock=274 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffdc
Processing Instruction at 0x24
Clock=275 IR=0xa12023 PC=0x24
Memory at 0x7fffffdc updated to : 0x4
Memory at 0x7fffffdd updated to : 0x0
Memory at 0x7fffffde updated to : 0x0
Memory at 0x7fffffdf updated to : 0x0
Processing Instruction at 0x28
Clock=276 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=277 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=278 IR=-0xafaed PC=0x30
Register x10 updated to : 0x3
Processing Instruction at 0x34
Clock=279 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=280 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffd8
Processing Instruction at 0x1c
Clock=281 IR=0x112023 PC=0x1c
Memory at 0x7fffffd8 updated to : 0x38
Memory at 0x7fffffd9 updated to : 0x0
Memory at 0x7fffffda updated to : 0x0
Memory at 0x7fffffdb updated to : 0x0
Processing Instruction at 0x20
Clock=282 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffd4
Processing Instruction at 0x24
Clock=283 IR=0xa12023 PC=0x24
Memory at 0x7fffffd4 updated to : 0x3
Memory at 0x7fffffd5 updated to : 0x0
Memory at 0x7fffffd6 updated to : 0x0
Memory at 0x7fffffd7 updated to : 0x0
Processing Instruction at 0x28
Clock=284 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=285 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=286 IR=-0xafaed PC=0x30
Register x10 updated to : 0x2
Processing Instruction at 0x34
Clock=287 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=288 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffd0
Processing Instruction at 0x1c
Clock=289 IR=0x112023 PC=0x1c
Memory at 0x7fffffd0 updated to : 0x38
Memory at 0x7fffffd1 updated to : 0x0
Memory at 0x7fffffd2 updated to : 0x0
Memory at 0x7fffffd3 updated to : 0x0
Processing Instruction at 0x20
Clock=290 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffcc
Processing Instruction at 0x24
Clock=291 IR=0xa12023 PC=0x24
Memory at 0x7fffffcc updated to : 0x2
Memory at 0x7fffffcd updated to : 0x0
Memory at 0x7fffffce updated to : 0x0
Memory at 0x7fffffcf updated to : 0x0
Processing Instruction at 0x28
Clock=292 IR=0x2050663 PC=0x28
Processing Instruction at 0x2c
Clock=293 IR=0x3f50863 PC=0x2c
Processing Instruction at 0x30
Clock=294 IR=-0xafaed PC=0x30
Register x10 updated to : 0x1
Processing Instruction at 0x34
Clock=295 IR=-0x1a00f11 PC=0x34
Register x1 updated to : 0x38
Processing Instruction at 0x18
Clock=296 IR=-0x3efeed PC=0x18
Register x2 updated to : 0x7fffffc8
Processing Instruction at 0x1c
Clock=297 IR=0x112023 PC=0x1c
Memory at 0x7fffffc8 updated to : 0x38
Memory at 0x7fffffc9 updated to : 0x0
Memory at 0x7fffffca updated to : 0x0
Memory at 0x7fffffcb updated to : 0x0
Processing Instruction at 0x20
Clock=298 IR=-0x3efeed PC=0x20
Register x2 updated to : 0x7fffffc4
Processing Instruction at 0x24
Clock=299 IR=0xa12023 PC=0x24
Memory at 0x7fffffc4 updated to : 0x1
Memory at 0x7fffffc5 updated to : 0x0
Memory at 0x7fffffc6 updated to : 0x0
Memory at 0x7fffffc7 updated to : 0x0