-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranscript
More file actions
874 lines (874 loc) · 40.1 KB
/
transcript
File metadata and controls
874 lines (874 loc) · 40.1 KB
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
# Compile of cpu.v was successful.
# Compile of Fetch.v was successful.
# Compile of Decode.v was successful.
# Compile of Execute.v was successful.
# Compile of Memory.v was successful.
# Compile of Writeback.v was successful.
# 6 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# 5 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# 5 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v failed with 1 errors.
# 7 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
vsim work.cpu_tb
# vsim work.cpu_tb
# Start time: 16:45:59 on Feb 28,2025
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# ** Warning: (vsim-3008) [CNNODP] - Component name (instr) is not on a downward path.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb File: C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v Line: 157
# ** Error: (vsim-3043) Unresolved reference to 'instr' in DUT.fetch0.instr.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb File: C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v Line: 157
# ** Error: (vsim-3063) Port 'pc_out' not found in the connected module (3rd connection).
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT File: C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v Line: 29
# ** Warning: (vsim-3015) [PCDPC] - Port size (1) does not match connection size (16) for port 'instruction'. The port definition is at: C:/Users/Jay/Documents/School/ece552_spring/phase1/fetch.v(6).
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/fetch0 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 18
# ** Warning: (vsim-3015) [PCDPC] - Port size (16) does not match connection size (1) for port 'data_out'. The port definition is at: C:/Users/Jay/Documents/School/ece552_spring/phase1/memory.v(31).
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/fetch0/instruction_memory File: C:/Users/Jay/Documents/School/ece552_spring/phase1/fetch.v Line: 16
# Error loading design
# End time: 16:45:59 on Feb 28,2025, Elapsed time: 0:00:00
# Errors: 2, Warnings: 33
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
vsim work.cpu_tb
# vsim work.cpu_tb
# Start time: 16:58:03 on Feb 28,2025
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# ** Error: (vsim-3063) Port 'pc_out' not found in the connected module (3rd connection).
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT File: C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v Line: 29
# Error loading design
# End time: 16:58:03 on Feb 28,2025, Elapsed time: 0:00:00
# Errors: 1, Warnings: 2
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
vsim work.cpu_tb
# vsim work.cpu_tb
# Start time: 17:04:25 on Feb 28,2025
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# WARNING: No extended dataflow license exists
add wave -position insertpoint \
sim:/cpu_tb/PC \
sim:/cpu_tb/Inst \
sim:/cpu_tb/RegWrite \
sim:/cpu_tb/WriteRegister \
sim:/cpu_tb/WriteData \
sim:/cpu_tb/MemWrite \
sim:/cpu_tb/MemRead \
sim:/cpu_tb/MemAddress \
sim:/cpu_tb/MemData \
sim:/cpu_tb/Halt \
sim:/cpu_tb/inst_count \
sim:/cpu_tb/cycle_count \
sim:/cpu_tb/trace_file \
sim:/cpu_tb/sim_log_file \
sim:/cpu_tb/clk \
sim:/cpu_tb/rst_n
run -all
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
############# Autofindloop Analysis ###############
############# Loop found at time 250 ps ###############
# Signal: /cpu_tb/PC @ sub-iteration 0 at Value St0 (C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v:4)
# Signal: /cpu_tb/PC @ sub-iteration 0 at Value St0 (C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v:4)
# Signal: /cpu_tb/PC @ sub-iteration 0 at Value St1 (C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v:4)
# Active process: /cpu_tb/DUT/fetch0/instruction_memory/#ASSIGN#46 @ sub-iteration 1
# Source: C:/Users/Jay/Documents/School/ece552_spring/phase1/fetch.v:16
# Active process: /cpu_tb/DUT/fetch0/#ASSIGN#26 @ sub-iteration 1
# Source: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v:20
# Signal: /cpu_tb/DUT/pc_inc_2 @ sub-iteration 2 at Value St1 (C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v:15)
# Active process: /cpu_tb/DUT/#ASSIGN#18 @ sub-iteration 3
# Source: C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v:29
# Signal: /cpu_tb/PC @ sub-iteration 4 at Value St1 (C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v:4)
# Active process: /cpu_tb/DUT/fetch0/instruction_memory/#ASSIGN#46 @ sub-iteration 5
# Source: C:/Users/Jay/Documents/School/ece552_spring/phase1/fetch.v:16
################# END OF LOOP #################
# ** Error (suppressible): (vsim-3601) Iteration limit 5000 reached at time 250 ps.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# ** Error (suppressible): (vsim-3601) Iteration limit 5000 reached at time 201 ps.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v failed with 1 errors.
# Compile of fetch.v was successful.
# 7 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/ff[0] File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 20
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v failed with 1 errors.
# Compile of fetch.v was successful.
# 7 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
vsim work.cpu_tb
# vsim work.cpu_tb
# Start time: 17:04:25 on Feb 28,2025
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.dff
# Loading work.fetch
# Loading work.memory1c
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff0 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 20
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff1 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 28
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff2 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 36
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff3 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 44
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff4 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 52
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff5 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 60
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff6 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 68
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff7 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 76
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff8 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 84
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff9 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 92
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff10 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 100
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff11 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 108
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff12 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 116
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff13 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 124
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff14 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 132
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff15 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 140
# Error loading design
# End time: 17:49:13 on Feb 28,2025, Elapsed time: 0:44:48
# Errors: 17, Warnings: 3
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
vsim work.cpu_tb
# vsim work.cpu_tb
# Start time: 17:50:41 on Feb 28,2025
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.dff
# Loading work.fetch
# Loading work.memory1c
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff0 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 20
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff1 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 28
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff2 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 36
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff3 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 44
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff4 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 52
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff5 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 60
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff6 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 68
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff7 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 76
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff8 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 84
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff9 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 92
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff10 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 100
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff11 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 108
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff12 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 116
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff13 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 124
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff14 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 132
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'q'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/pc_ff15 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 140
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'pc_inc_2'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/fetch0 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 149
# ** Error (suppressible): (vsim-3053) Illegal output or inout port connection for port 'instr'.
# Time: 0 ps Iteration: 0 Instance: /cpu_tb/DUT/fetch0 File: C:/Users/Jay/Documents/School/ece552_spring/phase1/cpu.v Line: 149
# Error loading design
# End time: 17:50:42 on Feb 28,2025, Elapsed time: 0:00:01
# Errors: 18, Warnings: 2
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v failed with 2 errors.
# Compile of fetch.v was successful.
# 7 compiles, 1 failed with 2 errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v failed with 2 errors.
# Compile of fetch.v was successful.
# 7 compiles, 1 failed with 2 errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v failed with 1 errors.
# 7 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v failed with 2 errors.
# 7 compiles, 1 failed with 2 errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v failed with 1 errors.
# 7 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v failed with 1 errors.
# 7 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v failed with 1 errors.
# 7 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
vsim work.cpu_tb
# vsim work.cpu_tb
# Start time: 18:16:47 on Feb 28,2025
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
add wave -position insertpoint \
sim:/cpu_tb/PC \
sim:/cpu_tb/Inst \
sim:/cpu_tb/RegWrite \
sim:/cpu_tb/WriteRegister \
sim:/cpu_tb/WriteData \
sim:/cpu_tb/MemWrite \
sim:/cpu_tb/MemRead \
sim:/cpu_tb/MemAddress \
sim:/cpu_tb/MemData \
sim:/cpu_tb/Halt \
sim:/cpu_tb/inst_count \
sim:/cpu_tb/cycle_count \
sim:/cpu_tb/trace_file \
sim:/cpu_tb/sim_log_file \
sim:/cpu_tb/clk \
sim:/cpu_tb/rst_n
run -all
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
add wave -position insertpoint \
sim:/cpu_tb/DUT/fetch0/pc \
sim:/cpu_tb/DUT/fetch0/pc_inc_2 \
sim:/cpu_tb/DUT/fetch0/instr \
sim:/cpu_tb/DUT/fetch0/pc_add
restart
# Closing VCD file "dump.vcd"
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
restart
# Closing VCD file "dump.vcd"
# ** Note: (vsim-12125) Error and warning message counts have been reset to '0' because of 'restart'.
# Loading work.cpu_tb
# Loading work.cpu
# Loading work.fetch
# Loading work.memory1c
# Loading work.dff
run -all
# GetModuleFileName: The specified module could not be found.
#
#
# Hello world...simulation starting
# See verilogsim.log and verilogsim.trace for output
# hmm....more than 100000 cycles of simulation...error?
#
# ** Note: $finish : C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v(71)
# Time: 10 us Iteration: 1 Instance: /cpu_tb
# 1
# Break in Module cpu_tb at C:/Users/Jay/Documents/School/ece552_spring/phase1/project-phase1-testbench.v line 71
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# 7 compiles, 0 failed with no errors.
view -new wave
# -new not supported on PE
add wave -position insertpoint \
sim:/cpu_tb/DUT/clk \
sim:/cpu_tb/DUT/rst_n \
sim:/cpu_tb/DUT/hlt \
sim:/cpu_tb/DUT/pc_out \
sim:/cpu_tb/DUT/pc_inc_2 \
sim:/cpu_tb/DUT/instr
add wave -position insertpoint \
sim:/cpu_tb/PC \
sim:/cpu_tb/Inst \
sim:/cpu_tb/RegWrite \
sim:/cpu_tb/WriteRegister \
sim:/cpu_tb/WriteData \
sim:/cpu_tb/MemWrite \
sim:/cpu_tb/MemRead \
sim:/cpu_tb/MemAddress \
sim:/cpu_tb/MemData \
sim:/cpu_tb/Halt \
sim:/cpu_tb/inst_count \
sim:/cpu_tb/cycle_count \
sim:/cpu_tb/trace_file \
sim:/cpu_tb/sim_log_file \
sim:/cpu_tb/clk \
sim:/cpu_tb/rst_n
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# 8 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# 9 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v failed with 2 errors.
# Compile of memoryaccess.v failed with 2 errors.
# 9 compiles, 2 failed with 4 errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v failed with 2 errors.
# 9 compiles, 1 failed with 2 errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# 9 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# 9 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# 10 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# 10 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# Compile of execute.v failed with 1 errors.
# 11 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# Compile of execute.v failed with 1 errors.
# 11 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# Compile of execute.v failed with 2 errors.
# 11 compiles, 1 failed with 2 errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# Compile of execute.v failed with 1 errors.
# 11 compiles, 1 failed with 1 error.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# Compile of execute.v was successful.
# 11 compiles, 0 failed with no errors.
# Compile of project-phase1-testbench.v was successful.
# Compile of adder4bit+tb.v was successful.
# Compile of D-Flip-Flop.v was successful.
# Compile of sample_adder_testbench.v was successful.
# Compile of memory.v was successful.
# Compile of cpu.v was successful.
# Compile of fetch.v was successful.
# Compile of writeback.v was successful.
# Compile of memoryaccess.v was successful.
# Compile of decoder.v was successful.
# Compile of execute.v was successful.
# 11 compiles, 0 failed with no errors.