-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathout
More file actions
executable file
·958 lines (958 loc) · 36.1 KB
/
out
File metadata and controls
executable file
·958 lines (958 loc) · 36.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
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
#! /usr/bin/vvp
:ivl_version "10.1 (stable)";
:ivl_delay_selection "TYPICAL";
:vpi_time_precision - 12;
:vpi_module "system";
:vpi_module "vhdl_sys";
:vpi_module "v2005_math";
:vpi_module "va_math";
S_0x56039d181170 .scope module, "CPU" "CPU" 2 2;
.timescale -9 -12;
v0x56039d1b0db0_0 .var "clk", 0 0;
S_0x56039d1794f0 .scope module, "uut" "Combined" 2 7, 3 2 0, S_0x56039d181170;
.timescale -9 -12;
.port_info 0 /INPUT 1 "clk"
v0x56039d1b02f0_0 .net "alu_op", 1 0, v0x56039d1af950_0; 1 drivers
v0x56039d1b03d0_0 .net "alu_src", 0 0, v0x56039d1afa80_0; 1 drivers
v0x56039d1b04e0_0 .net "beq", 0 0, v0x56039d1afb40_0; 1 drivers
v0x56039d1b05d0_0 .net "bne", 0 0, v0x56039d1afc40_0; 1 drivers
v0x56039d1b06c0_0 .net "clk", 0 0, v0x56039d1b0db0_0; 1 drivers
v0x56039d1b07b0_0 .net "jump", 0 0, v0x56039d1afd10_0; 1 drivers
v0x56039d1b08a0_0 .net "mem_read", 0 0, v0x56039d1afe00_0; 1 drivers
v0x56039d1b0940_0 .net "mem_to_reg", 0 0, v0x56039d1afef0_0; 1 drivers
v0x56039d1b0a30_0 .net "mem_write", 0 0, v0x56039d1aff90_0; 1 drivers
v0x56039d1b0b60_0 .net "opcode", 3 0, L_0x56039d1b4b50; 1 drivers
v0x56039d1b0c00_0 .net "reg_dst", 0 0, v0x56039d1b0120_0; 1 drivers
v0x56039d1b0cf0_0 .net "reg_write", 0 0, v0x56039d1b01f0_0; 1 drivers
S_0x56039d164600 .scope module, "DU" "Datapath_Unit" 3 9, 4 2 0, S_0x56039d1794f0;
.timescale -9 -12;
.port_info 0 /INPUT 1 "clk"
.port_info 1 /INPUT 1 "jump"
.port_info 2 /INPUT 1 "beq"
.port_info 3 /INPUT 1 "mem_read"
.port_info 4 /INPUT 1 "mem_write"
.port_info 5 /INPUT 1 "alu_src"
.port_info 6 /INPUT 1 "reg_dst"
.port_info 7 /INPUT 1 "mem_to_reg"
.port_info 8 /INPUT 1 "reg_write"
.port_info 9 /INPUT 1 "bne"
.port_info 10 /INPUT 2 "alu_op"
.port_info 11 /OUTPUT 4 "opcode"
L_0x7f4aa0f660f0 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x56039d1b1520 .functor XNOR 1, v0x56039d1b0120_0, L_0x7f4aa0f660f0, C4<0>, C4<0>;
L_0x7f4aa0f661c8 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x56039d1b2780 .functor XNOR 1, v0x56039d1afa80_0, L_0x7f4aa0f661c8, C4<0>, C4<0>;
L_0x56039d1b25d0 .functor AND 1, v0x56039d1afb40_0, L_0x56039d1b2c10, C4<1>, C4<1>;
L_0x56039d1b35b0 .functor NOT 1, L_0x56039d1b2c10, C4<0>, C4<0>, C4<0>;
L_0x56039d1b3620 .functor AND 1, v0x56039d1afc40_0, L_0x56039d1b35b0, C4<1>, C4<1>;
L_0x7f4aa0f66378 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x56039d1b3690 .functor XNOR 1, L_0x56039d1b25d0, L_0x7f4aa0f66378, C4<0>, C4<0>;
L_0x7f4aa0f663c0 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x56039d1b38c0 .functor XNOR 1, L_0x56039d1b3620, L_0x7f4aa0f663c0, C4<0>, C4<0>;
L_0x7f4aa0f66408 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x56039d1b3ed0 .functor XNOR 1, v0x56039d1afd10_0, L_0x7f4aa0f66408, C4<0>, C4<0>;
L_0x7f4aa0f66528 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x56039d1b4870 .functor XNOR 1, v0x56039d1afef0_0, L_0x7f4aa0f66528, C4<0>, C4<0>;
v0x56039d1ac140_0 .net "ALU_Control", 2 0, v0x56039d1a8960_0; 1 drivers
v0x56039d1ac220_0 .net "ALU_out", 7 0, v0x56039d1a9400_0; 1 drivers
v0x56039d1ac330_0 .net "PC_2beq", 7 0, L_0x56039d1b3280; 1 drivers
v0x56039d1ac3f0_0 .net "PC_2bne", 7 0, L_0x56039d1b39d0; 1 drivers
v0x56039d1ac4d0_0 .net "PC_beq", 7 0, L_0x56039d1b3010; 1 drivers
v0x56039d1ac600_0 .net "PC_bne", 7 0, L_0x56039d1b3410; 1 drivers
v0x56039d1ac6e0_0 .net "PC_j", 7 0, L_0x56039d1b3cc0; 1 drivers
L_0x7f4aa0f66018 .functor BUFT 1, C4<00000001>, C4<0>, C4<0>, C4<0>;
v0x56039d1ac7c0_0 .net/2u *"_s0", 7 0, L_0x7f4aa0f66018; 1 drivers
v0x56039d1ac8a0_0 .net/2u *"_s10", 0 0, L_0x7f4aa0f660f0; 1 drivers
v0x56039d1ac980_0 .net *"_s12", 0 0, L_0x56039d1b1520; 1 drivers
v0x56039d1aca40_0 .net *"_s15", 2 0, L_0x56039d1b15e0; 1 drivers
v0x56039d1acb20_0 .net *"_s17", 2 0, L_0x56039d1b1710; 1 drivers
v0x56039d1acc00_0 .net *"_s25", 0 0, L_0x56039d1b2140; 1 drivers
v0x56039d1acce0_0 .net *"_s26", 1 0, L_0x56039d1b22f0; 1 drivers
v0x56039d1acdc0_0 .net *"_s29", 5 0, L_0x56039d1b2440; 1 drivers
v0x56039d1acea0_0 .net/2u *"_s34", 0 0, L_0x7f4aa0f661c8; 1 drivers
v0x56039d1acf80_0 .net *"_s36", 0 0, L_0x56039d1b2780; 1 drivers
v0x56039d1ad040_0 .net *"_s41", 6 0, L_0x56039d1b2da0; 1 drivers
L_0x7f4aa0f662e8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x56039d1ad120_0 .net/2u *"_s42", 0 0, L_0x7f4aa0f662e8; 1 drivers
v0x56039d1ad200_0 .net *"_s44", 7 0, L_0x56039d1b2e40; 1 drivers
v0x56039d1ad2e0_0 .net *"_s49", 6 0, L_0x56039d1b3150; 1 drivers
v0x56039d1ad3c0_0 .net *"_s5", 3 0, L_0x56039d1b1340; 1 drivers
L_0x7f4aa0f66330 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x56039d1ad4a0_0 .net/2u *"_s50", 0 0, L_0x7f4aa0f66330; 1 drivers
v0x56039d1ad580_0 .net *"_s52", 7 0, L_0x56039d1b3320; 1 drivers
v0x56039d1ad660_0 .net *"_s58", 0 0, L_0x56039d1b35b0; 1 drivers
L_0x7f4aa0f660a8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x56039d1ad740_0 .net/2u *"_s6", 0 0, L_0x7f4aa0f660a8; 1 drivers
v0x56039d1ad820_0 .net/2u *"_s62", 0 0, L_0x7f4aa0f66378; 1 drivers
v0x56039d1ad900_0 .net *"_s64", 0 0, L_0x56039d1b3690; 1 drivers
v0x56039d1ad9c0_0 .net/2u *"_s68", 0 0, L_0x7f4aa0f663c0; 1 drivers
v0x56039d1adaa0_0 .net *"_s70", 0 0, L_0x56039d1b38c0; 1 drivers
v0x56039d1adb60_0 .net *"_s75", 2 0, L_0x56039d1b3c20; 1 drivers
v0x56039d1adc40_0 .net/2u *"_s78", 0 0, L_0x7f4aa0f66408; 1 drivers
v0x56039d1add20_0 .net *"_s80", 0 0, L_0x56039d1b3ed0; 1 drivers
v0x56039d1adde0_0 .net/2u *"_s84", 0 0, L_0x7f4aa0f66528; 1 drivers
v0x56039d1adec0_0 .net *"_s86", 0 0, L_0x56039d1b4870; 1 drivers
v0x56039d1adf80_0 .net "alu_op", 1 0, v0x56039d1af950_0; alias, 1 drivers
v0x56039d1ae040_0 .net "alu_src", 0 0, v0x56039d1afa80_0; alias, 1 drivers
v0x56039d1ae0e0_0 .net "beq", 0 0, v0x56039d1afb40_0; alias, 1 drivers
v0x56039d1ae1a0_0 .net "beq_control", 0 0, L_0x56039d1b25d0; 1 drivers
v0x56039d1ae260_0 .net "bne", 0 0, v0x56039d1afc40_0; alias, 1 drivers
v0x56039d1ae320_0 .net "bne_control", 0 0, L_0x56039d1b3620; 1 drivers
v0x56039d1ae3e0_0 .net "clk", 0 0, v0x56039d1b0db0_0; alias, 1 drivers
v0x56039d1ae480_0 .net "ext_im", 7 0, L_0x56039d1b24e0; 1 drivers
v0x56039d1ae560_0 .net "instr", 15 0, L_0x56039d1400b0; 1 drivers
v0x56039d1ae620_0 .net "jump", 0 0, v0x56039d1afd10_0; alias, 1 drivers
v0x56039d1ae6c0_0 .net "jump_shift", 4 0, L_0x56039d1b13e0; 1 drivers
v0x56039d1ae7a0_0 .net "mem_read", 0 0, v0x56039d1afe00_0; alias, 1 drivers
v0x56039d1ae840_0 .net "mem_read_data", 7 0, L_0x56039d1b4690; 1 drivers
v0x56039d1ae910_0 .net "mem_to_reg", 0 0, v0x56039d1afef0_0; alias, 1 drivers
v0x56039d1ae9b0_0 .net "mem_write", 0 0, v0x56039d1aff90_0; alias, 1 drivers
v0x56039d1aea80_0 .net "opcode", 3 0, L_0x56039d1b4b50; alias, 1 drivers
v0x56039d1aeb40_0 .net "pc2", 7 0, L_0x56039d1b0ee0; 1 drivers
v0x56039d1aec20_0 .var "pc_current", 7 0;
v0x56039d1aed10_0 .net "pc_next", 7 0, L_0x56039d1b3fe0; 1 drivers
v0x56039d1aedd0_0 .net "read_data2", 7 0, L_0x56039d1b2840; 1 drivers
v0x56039d1aeec0_0 .net "reg_dst", 0 0, v0x56039d1b0120_0; alias, 1 drivers
v0x56039d1aef60_0 .net "reg_read_addr_1", 2 0, L_0x56039d1b1980; 1 drivers
v0x56039d1af050_0 .net "reg_read_addr_2", 2 0, L_0x56039d1b1a70; 1 drivers
v0x56039d1af120_0 .net "reg_read_data_1", 7 0, L_0x56039d1b1de0; 1 drivers
v0x56039d1af210_0 .net "reg_read_data_2", 7 0, L_0x56039d1b2080; 1 drivers
v0x56039d1af320_0 .net "reg_write", 0 0, v0x56039d1b01f0_0; alias, 1 drivers
v0x56039d1af3c0_0 .net "reg_write_data", 7 0, L_0x56039d1b4930; 1 drivers
v0x56039d1af460_0 .net "reg_write_dest", 2 0, L_0x56039d1b17b0; 1 drivers
v0x56039d1af530_0 .net "zero_flag", 0 0, L_0x56039d1b2c10; 1 drivers
L_0x56039d1b0ee0 .arith/sum 8, v0x56039d1aec20_0, L_0x7f4aa0f66018;
L_0x56039d1b1340 .part L_0x56039d1400b0, 0, 4;
L_0x56039d1b13e0 .concat [ 1 4 0 0], L_0x7f4aa0f660a8, L_0x56039d1b1340;
L_0x56039d1b15e0 .part L_0x56039d1400b0, 3, 3;
L_0x56039d1b1710 .part L_0x56039d1400b0, 6, 3;
L_0x56039d1b17b0 .functor MUXZ 3, L_0x56039d1b1710, L_0x56039d1b15e0, L_0x56039d1b1520, C4<>;
L_0x56039d1b1980 .part L_0x56039d1400b0, 9, 3;
L_0x56039d1b1a70 .part L_0x56039d1400b0, 6, 3;
L_0x56039d1b2140 .part L_0x56039d1400b0, 5, 1;
L_0x56039d1b22f0 .concat [ 1 1 0 0], L_0x56039d1b2140, L_0x56039d1b2140;
L_0x56039d1b2440 .part L_0x56039d1400b0, 0, 6;
L_0x56039d1b24e0 .concat [ 6 2 0 0], L_0x56039d1b2440, L_0x56039d1b22f0;
L_0x56039d1b26e0 .part L_0x56039d1400b0, 12, 4;
L_0x56039d1b2840 .functor MUXZ 8, L_0x56039d1b2080, L_0x56039d1b24e0, L_0x56039d1b2780, C4<>;
L_0x56039d1b2da0 .part L_0x56039d1b24e0, 0, 7;
L_0x56039d1b2e40 .concat [ 1 7 0 0], L_0x7f4aa0f662e8, L_0x56039d1b2da0;
L_0x56039d1b3010 .arith/sum 8, L_0x56039d1b0ee0, L_0x56039d1b2e40;
L_0x56039d1b3150 .part L_0x56039d1b24e0, 0, 7;
L_0x56039d1b3320 .concat [ 1 7 0 0], L_0x7f4aa0f66330, L_0x56039d1b3150;
L_0x56039d1b3410 .arith/sum 8, L_0x56039d1b0ee0, L_0x56039d1b3320;
L_0x56039d1b3280 .functor MUXZ 8, L_0x56039d1b0ee0, L_0x56039d1b3010, L_0x56039d1b3690, C4<>;
L_0x56039d1b39d0 .functor MUXZ 8, L_0x56039d1b3280, L_0x56039d1b3410, L_0x56039d1b38c0, C4<>;
L_0x56039d1b3c20 .part L_0x56039d1b0ee0, 5, 3;
L_0x56039d1b3cc0 .concat [ 5 3 0 0], L_0x56039d1b13e0, L_0x56039d1b3c20;
L_0x56039d1b3fe0 .functor MUXZ 8, L_0x56039d1b39d0, L_0x56039d1b3cc0, L_0x56039d1b3ed0, C4<>;
L_0x56039d1b4930 .functor MUXZ 8, v0x56039d1a9400_0, L_0x56039d1b4690, L_0x56039d1b4870, C4<>;
L_0x56039d1b4b50 .part L_0x56039d1400b0, 12, 4;
S_0x56039d177f90 .scope module, "ALU_Control_unit" "alu_control" 4 59, 5 2 0, S_0x56039d164600;
.timescale -9 -12;
.port_info 0 /OUTPUT 3 "ALU_Cnt"
.port_info 1 /INPUT 2 "ALUOp"
.port_info 2 /INPUT 4 "Opcode"
v0x56039d181ec0_0 .net "ALUControlIn", 5 0, L_0x56039d1b2640; 1 drivers
v0x56039d168e20_0 .net "ALUOp", 1 0, v0x56039d1af950_0; alias, 1 drivers
v0x56039d1a8960_0 .var "ALU_Cnt", 2 0;
v0x56039d1a8a20_0 .net "Opcode", 3 0, L_0x56039d1b26e0; 1 drivers
E_0x56039d11ee20 .event edge, v0x56039d181ec0_0;
L_0x56039d1b2640 .concat [ 4 2 0 0], L_0x56039d1b26e0, v0x56039d1af950_0;
S_0x56039d1a8b80 .scope module, "alu_unit" "ALU" 4 63, 6 1 0, S_0x56039d164600;
.timescale -9 -12;
.port_info 0 /INPUT 8 "a"
.port_info 1 /INPUT 8 "b"
.port_info 2 /INPUT 3 "alu_control"
.port_info 3 /OUTPUT 8 "result"
.port_info 4 /OUTPUT 1 "zero"
L_0x7f4aa0f66210 .functor BUFT 1, C4<00000000>, C4<0>, C4<0>, C4<0>;
v0x56039d1a8df0_0 .net/2u *"_s0", 7 0, L_0x7f4aa0f66210; 1 drivers
v0x56039d1a8ef0_0 .net *"_s2", 0 0, L_0x56039d1b2a90; 1 drivers
L_0x7f4aa0f66258 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
v0x56039d1a8fb0_0 .net/2u *"_s4", 0 0, L_0x7f4aa0f66258; 1 drivers
L_0x7f4aa0f662a0 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x56039d1a9070_0 .net/2u *"_s6", 0 0, L_0x7f4aa0f662a0; 1 drivers
v0x56039d1a9150_0 .net "a", 7 0, L_0x56039d1b1de0; alias, 1 drivers
v0x56039d1a9280_0 .net "alu_control", 2 0, v0x56039d1a8960_0; alias, 1 drivers
v0x56039d1a9340_0 .net "b", 7 0, L_0x56039d1b2840; alias, 1 drivers
v0x56039d1a9400_0 .var "result", 7 0;
v0x56039d1a94e0_0 .net "zero", 0 0, L_0x56039d1b2c10; alias, 1 drivers
E_0x56039d11ea40 .event edge, v0x56039d1a8960_0, v0x56039d1a9150_0, v0x56039d1a9340_0;
L_0x56039d1b2a90 .cmp/eq 8, v0x56039d1a9400_0, L_0x7f4aa0f66210;
L_0x56039d1b2c10 .functor MUXZ 1, L_0x7f4aa0f662a0, L_0x7f4aa0f66258, L_0x56039d1b2a90, C4<>;
S_0x56039d1a9640 .scope module, "dm" "Data_Memory" 4 80, 7 1 0, S_0x56039d164600;
.timescale -9 -12;
.port_info 0 /INPUT 1 "clk"
.port_info 1 /INPUT 8 "mem_access_addr"
.port_info 2 /INPUT 8 "mem_write_data"
.port_info 3 /INPUT 1 "mem_write_en"
.port_info 4 /INPUT 1 "mem_read"
.port_info 5 /OUTPUT 8 "mem_read_data"
L_0x7f4aa0f66450 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
L_0x56039d1b42a0 .functor XNOR 1, v0x56039d1afe00_0, L_0x7f4aa0f66450, C4<0>, C4<0>;
L_0x7f4aa0f66498 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x56039d1a9880_0 .net *"_s11", 1 0, L_0x7f4aa0f66498; 1 drivers
L_0x7f4aa0f664e0 .functor BUFT 1, C4<00000000>, C4<0>, C4<0>, C4<0>;
v0x56039d1a9980_0 .net/2u *"_s12", 7 0, L_0x7f4aa0f664e0; 1 drivers
v0x56039d1a9a60_0 .net/2u *"_s2", 0 0, L_0x7f4aa0f66450; 1 drivers
v0x56039d1a9b20_0 .net *"_s4", 0 0, L_0x56039d1b42a0; 1 drivers
v0x56039d1a9be0_0 .net *"_s6", 7 0, L_0x56039d1b43a0; 1 drivers
v0x56039d1a9d10_0 .net *"_s8", 4 0, L_0x56039d1b4440; 1 drivers
v0x56039d1a9df0_0 .net "clk", 0 0, v0x56039d1b0db0_0; alias, 1 drivers
v0x56039d1a9eb0_0 .var/i "f", 31 0;
v0x56039d1a9f90_0 .net "mem_access_addr", 7 0, v0x56039d1a9400_0; alias, 1 drivers
v0x56039d1aa050_0 .net "mem_read", 0 0, v0x56039d1afe00_0; alias, 1 drivers
v0x56039d1aa0f0_0 .net "mem_read_data", 7 0, L_0x56039d1b4690; alias, 1 drivers
v0x56039d1aa1d0_0 .net "mem_write_data", 7 0, L_0x56039d1b2080; alias, 1 drivers
v0x56039d1aa2b0_0 .net "mem_write_en", 0 0, v0x56039d1aff90_0; alias, 1 drivers
v0x56039d1aa370 .array "memory", 0 7, 7 0;
v0x56039d1aa430_0 .net "ram_addr", 2 0, L_0x56039d1b4170; 1 drivers
E_0x56039d11f440 .event posedge, v0x56039d1a9df0_0;
L_0x56039d1b4170 .part v0x56039d1a9400_0, 0, 3;
L_0x56039d1b43a0 .array/port v0x56039d1aa370, L_0x56039d1b4440;
L_0x56039d1b4440 .concat [ 3 2 0 0], L_0x56039d1b4170, L_0x7f4aa0f66498;
L_0x56039d1b4690 .functor MUXZ 8, L_0x7f4aa0f664e0, L_0x56039d1b43a0, L_0x56039d1b42a0, C4<>;
S_0x56039d1aa5d0 .scope module, "im" "Instruction_Memory" 4 35, 8 2 0, S_0x56039d164600;
.timescale -9 -12;
.port_info 0 /INPUT 8 "pc"
.port_info 1 /OUTPUT 16 "instruction"
L_0x56039d1400b0 .functor BUFZ 16, L_0x56039d1b1070, C4<0000000000000000>, C4<0000000000000000>, C4<0000000000000000>;
v0x56039d1aa770_0 .net *"_s2", 15 0, L_0x56039d1b1070; 1 drivers
v0x56039d1aa870_0 .net *"_s4", 5 0, L_0x56039d1b1110; 1 drivers
L_0x7f4aa0f66060 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x56039d1aa950_0 .net *"_s7", 1 0, L_0x7f4aa0f66060; 1 drivers
v0x56039d1aaa40_0 .net "instruction", 15 0, L_0x56039d1400b0; alias, 1 drivers
v0x56039d1aab20 .array "memory", 0 15, 15 0;
v0x56039d1aac30_0 .net "pc", 7 0, v0x56039d1aec20_0; 1 drivers
v0x56039d1aad10_0 .net "rom_addr", 3 0, L_0x56039d1b0fd0; 1 drivers
L_0x56039d1b0fd0 .part v0x56039d1aec20_0, 1, 4;
L_0x56039d1b1070 .array/port v0x56039d1aab20, L_0x56039d1b1110;
L_0x56039d1b1110 .concat [ 4 2 0 0], L_0x56039d1b0fd0, L_0x7f4aa0f66060;
S_0x56039d1aae50 .scope module, "reg_file" "GPRs" 4 45, 9 2 0, S_0x56039d164600;
.timescale -9 -12;
.port_info 0 /INPUT 1 "clk"
.port_info 1 /INPUT 1 "reg_write_en"
.port_info 2 /INPUT 3 "reg_write_dest"
.port_info 3 /INPUT 8 "reg_write_data"
.port_info 4 /INPUT 3 "reg_read_addr_1"
.port_info 5 /OUTPUT 8 "reg_read_data_1"
.port_info 6 /INPUT 3 "reg_read_addr_2"
.port_info 7 /OUTPUT 8 "reg_read_data_2"
L_0x56039d1b1de0 .functor BUFZ 8, L_0x56039d1b1bb0, C4<00000000>, C4<00000000>, C4<00000000>;
L_0x56039d1b2080 .functor BUFZ 8, L_0x56039d1b1ea0, C4<00000000>, C4<00000000>, C4<00000000>;
v0x56039d1ab190_0 .net *"_s0", 7 0, L_0x56039d1b1bb0; 1 drivers
v0x56039d1ab270_0 .net *"_s10", 4 0, L_0x56039d1b1f40; 1 drivers
L_0x7f4aa0f66180 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x56039d1ab350_0 .net *"_s13", 1 0, L_0x7f4aa0f66180; 1 drivers
v0x56039d1ab410_0 .net *"_s2", 4 0, L_0x56039d1b1c50; 1 drivers
L_0x7f4aa0f66138 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x56039d1ab4f0_0 .net *"_s5", 1 0, L_0x7f4aa0f66138; 1 drivers
v0x56039d1ab620_0 .net *"_s8", 7 0, L_0x56039d1b1ea0; 1 drivers
v0x56039d1ab700_0 .net "clk", 0 0, v0x56039d1b0db0_0; alias, 1 drivers
v0x56039d1ab7a0_0 .var/i "f", 31 0;
v0x56039d1ab860_0 .var/i "i", 31 0;
v0x56039d1ab9d0 .array "reg_array", 0 7, 7 0;
v0x56039d1aba90_0 .net "reg_read_addr_1", 2 0, L_0x56039d1b1980; alias, 1 drivers
v0x56039d1abb70_0 .net "reg_read_addr_2", 2 0, L_0x56039d1b1a70; alias, 1 drivers
v0x56039d1abc50_0 .net "reg_read_data_1", 7 0, L_0x56039d1b1de0; alias, 1 drivers
v0x56039d1abd10_0 .net "reg_read_data_2", 7 0, L_0x56039d1b2080; alias, 1 drivers
v0x56039d1abde0_0 .net "reg_write_data", 7 0, L_0x56039d1b4930; alias, 1 drivers
v0x56039d1abea0_0 .net "reg_write_dest", 2 0, L_0x56039d1b17b0; alias, 1 drivers
v0x56039d1abf80_0 .net "reg_write_en", 0 0, v0x56039d1b01f0_0; alias, 1 drivers
L_0x56039d1b1bb0 .array/port v0x56039d1ab9d0, L_0x56039d1b1c50;
L_0x56039d1b1c50 .concat [ 3 2 0 0], L_0x56039d1b1980, L_0x7f4aa0f66138;
L_0x56039d1b1ea0 .array/port v0x56039d1ab9d0, L_0x56039d1b1f40;
L_0x56039d1b1f40 .concat [ 3 2 0 0], L_0x56039d1b1a70, L_0x7f4aa0f66180;
S_0x56039d1af740 .scope module, "control" "Control_Unit" 3 25, 10 2 0, S_0x56039d1794f0;
.timescale -9 -12;
.port_info 0 /INPUT 4 "opcode"
.port_info 1 /OUTPUT 2 "alu_op"
.port_info 2 /OUTPUT 1 "jump"
.port_info 3 /OUTPUT 1 "beq"
.port_info 4 /OUTPUT 1 "bne"
.port_info 5 /OUTPUT 1 "mem_read"
.port_info 6 /OUTPUT 1 "mem_write"
.port_info 7 /OUTPUT 1 "alu_src"
.port_info 8 /OUTPUT 1 "reg_dst"
.port_info 9 /OUTPUT 1 "mem_to_reg"
.port_info 10 /OUTPUT 1 "reg_write"
v0x56039d1af950_0 .var "alu_op", 1 0;
v0x56039d1afa80_0 .var "alu_src", 0 0;
v0x56039d1afb40_0 .var "beq", 0 0;
v0x56039d1afc40_0 .var "bne", 0 0;
v0x56039d1afd10_0 .var "jump", 0 0;
v0x56039d1afe00_0 .var "mem_read", 0 0;
v0x56039d1afef0_0 .var "mem_to_reg", 0 0;
v0x56039d1aff90_0 .var "mem_write", 0 0;
v0x56039d1b0080_0 .net "opcode", 3 0, L_0x56039d1b4b50; alias, 1 drivers
v0x56039d1b0120_0 .var "reg_dst", 0 0;
v0x56039d1b01f0_0 .var "reg_write", 0 0;
E_0x56039d18c160 .event edge, v0x56039d1aea80_0;
.scope S_0x56039d1aa5d0;
T_0 ;
%vpi_call 8 11 "$readmemb", "./test.prog", v0x56039d1aab20, 32'sb00000000000000000000000000000000, 32'sb00000000000000000000000000000010 {0 0 0};
%end;
.thread T_0;
.scope S_0x56039d1aae50;
T_1 ;
%pushi/vec4 0, 0, 32;
%store/vec4 v0x56039d1ab860_0, 0, 32;
T_1.0 ;
%load/vec4 v0x56039d1ab860_0;
%cmpi/s 8, 0, 32;
%jmp/0xz T_1.1, 5;
%pushi/vec4 0, 0, 8;
%ix/getv/s 3, v0x56039d1ab860_0;
%ix/load 4, 0, 0; Constant delay
%assign/vec4/a/d v0x56039d1ab9d0, 0, 4;
%load/vec4 v0x56039d1ab860_0;
%addi 1, 0, 32;
%store/vec4 v0x56039d1ab860_0, 0, 32;
%jmp T_1.0;
T_1.1 ;
%end;
.thread T_1;
.scope S_0x56039d1aae50;
T_2 ;
%wait E_0x56039d11f440;
%load/vec4 v0x56039d1abf80_0;
%flag_set/vec4 8;
%jmp/0xz T_2.0, 8;
%load/vec4 v0x56039d1abde0_0;
%load/vec4 v0x56039d1abea0_0;
%pad/u 5;
%ix/vec4 3;
%ix/load 4, 0, 0; Constant delay
%assign/vec4/a/d v0x56039d1ab9d0, 0, 4;
T_2.0 ;
%jmp T_2;
.thread T_2;
.scope S_0x56039d1aae50;
T_3 ;
%vpi_func 9 30 "$fopen" 32, "result.dat" {0 0 0};
%store/vec4 v0x56039d1ab7a0_0, 0, 32;
%vpi_call 9 32 "$fdisplay", v0x56039d1ab7a0_0, "time = %d\012", $time, "\011reg[0] = %b\012", &A<v0x56039d1ab9d0, 0>, "\011reg[1] = %b\012", &A<v0x56039d1ab9d0, 1>, "\011reg[2] = %b\012", &A<v0x56039d1ab9d0, 2>, "\011reg[3] = %b\012", &A<v0x56039d1ab9d0, 3>, "\011reg[4] = %b\012", &A<v0x56039d1ab9d0, 4>, "\011reg[5] = %b\012", &A<v0x56039d1ab9d0, 5>, "\011reg[6] = %b\012", &A<v0x56039d1ab9d0, 6>, "\011reg[7] = %b\012", &A<v0x56039d1ab9d0, 7> {0 0 0};
%delay 160000, 0;
%vpi_call 9 42 "$fdisplay", v0x56039d1ab7a0_0, "time = %d\012", $time, "\011reg[0] = %b\012", &A<v0x56039d1ab9d0, 0>, "\011reg[1] = %b\012", &A<v0x56039d1ab9d0, 1>, "\011reg[2] = %b\012", &A<v0x56039d1ab9d0, 2>, "\011reg[3] = %b\012", &A<v0x56039d1ab9d0, 3>, "\011reg[4] = %b\012", &A<v0x56039d1ab9d0, 4>, "\011reg[5] = %b\012", &A<v0x56039d1ab9d0, 5>, "\011reg[6] = %b\012", &A<v0x56039d1ab9d0, 6>, "\011reg[7] = %b\012", &A<v0x56039d1ab9d0, 7> {0 0 0};
%vpi_call 9 51 "$fclose", v0x56039d1ab7a0_0 {0 0 0};
%end;
.thread T_3;
.scope S_0x56039d177f90;
T_4 ;
%wait E_0x56039d11ee20;
%load/vec4 v0x56039d181ec0_0;
%dup/vec4;
%pushi/vec4 47, 15, 6;
%cmp/x;
%jmp/1 T_4.0, 4;
%dup/vec4;
%pushi/vec4 31, 15, 6;
%cmp/x;
%jmp/1 T_4.1, 4;
%dup/vec4;
%pushi/vec4 2, 0, 6;
%cmp/x;
%jmp/1 T_4.2, 4;
%dup/vec4;
%pushi/vec4 3, 0, 6;
%cmp/x;
%jmp/1 T_4.3, 4;
%dup/vec4;
%pushi/vec4 4, 0, 6;
%cmp/x;
%jmp/1 T_4.4, 4;
%dup/vec4;
%pushi/vec4 5, 0, 6;
%cmp/x;
%jmp/1 T_4.5, 4;
%dup/vec4;
%pushi/vec4 6, 0, 6;
%cmp/x;
%jmp/1 T_4.6, 4;
%dup/vec4;
%pushi/vec4 7, 0, 6;
%cmp/x;
%jmp/1 T_4.7, 4;
%dup/vec4;
%pushi/vec4 8, 0, 6;
%cmp/x;
%jmp/1 T_4.8, 4;
%dup/vec4;
%pushi/vec4 9, 0, 6;
%cmp/x;
%jmp/1 T_4.9, 4;
%pushi/vec4 0, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.0 ;
%pushi/vec4 0, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.1 ;
%pushi/vec4 1, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.2 ;
%pushi/vec4 0, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.3 ;
%pushi/vec4 1, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.4 ;
%pushi/vec4 2, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.5 ;
%pushi/vec4 3, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.6 ;
%pushi/vec4 4, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.7 ;
%pushi/vec4 5, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.8 ;
%pushi/vec4 6, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.9 ;
%pushi/vec4 7, 0, 3;
%store/vec4 v0x56039d1a8960_0, 0, 3;
%jmp T_4.11;
T_4.11 ;
%pop/vec4 1;
%jmp T_4;
.thread T_4, $push;
.scope S_0x56039d1a8b80;
T_5 ;
%wait E_0x56039d11ea40;
%load/vec4 v0x56039d1a9280_0;
%dup/vec4;
%pushi/vec4 0, 0, 3;
%cmp/u;
%jmp/1 T_5.0, 6;
%dup/vec4;
%pushi/vec4 1, 0, 3;
%cmp/u;
%jmp/1 T_5.1, 6;
%dup/vec4;
%pushi/vec4 2, 0, 3;
%cmp/u;
%jmp/1 T_5.2, 6;
%dup/vec4;
%pushi/vec4 3, 0, 3;
%cmp/u;
%jmp/1 T_5.3, 6;
%dup/vec4;
%pushi/vec4 4, 0, 3;
%cmp/u;
%jmp/1 T_5.4, 6;
%dup/vec4;
%pushi/vec4 5, 0, 3;
%cmp/u;
%jmp/1 T_5.5, 6;
%dup/vec4;
%pushi/vec4 6, 0, 3;
%cmp/u;
%jmp/1 T_5.6, 6;
%dup/vec4;
%pushi/vec4 7, 0, 3;
%cmp/u;
%jmp/1 T_5.7, 6;
%load/vec4 v0x56039d1a9150_0;
%load/vec4 v0x56039d1a9340_0;
%add;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.0 ;
%load/vec4 v0x56039d1a9150_0;
%load/vec4 v0x56039d1a9340_0;
%add;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.1 ;
%load/vec4 v0x56039d1a9150_0;
%load/vec4 v0x56039d1a9340_0;
%sub;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.2 ;
%load/vec4 v0x56039d1a9150_0;
%inv;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.3 ;
%load/vec4 v0x56039d1a9150_0;
%ix/getv 4, v0x56039d1a9340_0;
%shiftl 4;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.4 ;
%load/vec4 v0x56039d1a9150_0;
%ix/getv 4, v0x56039d1a9340_0;
%shiftr 4;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.5 ;
%load/vec4 v0x56039d1a9150_0;
%load/vec4 v0x56039d1a9340_0;
%and;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.6 ;
%load/vec4 v0x56039d1a9150_0;
%load/vec4 v0x56039d1a9340_0;
%or;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.7 ;
%load/vec4 v0x56039d1a9150_0;
%load/vec4 v0x56039d1a9340_0;
%xor;
%store/vec4 v0x56039d1a9400_0, 0, 8;
%jmp T_5.9;
T_5.9 ;
%pop/vec4 1;
%jmp T_5;
.thread T_5, $push;
.scope S_0x56039d1a9640;
T_6 ;
%vpi_call 7 19 "$readmemb", "./test.data", v0x56039d1aa370, 32'sb00000000000000000000000000000000, 32'sb00000000000000000000000000000111 {0 0 0};
%vpi_func 7 21 "$fopen" 32, "memory.dat" {0 0 0};
%store/vec4 v0x56039d1a9eb0_0, 0, 32;
%vpi_call 7 23 "$fdisplay", v0x56039d1a9eb0_0, "time = %d\012", $time, "\011memory[0] = %b\012", &A<v0x56039d1aa370, 0>, "\011memory[1] = %b\012", &A<v0x56039d1aa370, 1>, "\011memory[2] = %b\012", &A<v0x56039d1aa370, 2>, "\011memory[3] = %b\012", &A<v0x56039d1aa370, 3>, "\011memory[4] = %b\012", &A<v0x56039d1aa370, 4>, "\011memory[5] = %b\012", &A<v0x56039d1aa370, 5>, "\011memory[6] = %b\012", &A<v0x56039d1aa370, 6>, "\011memory[7] = %b\012", &A<v0x56039d1aa370, 7> {0 0 0};
%delay 50000, 0;
%vpi_call 7 33 "$fdisplay", v0x56039d1a9eb0_0, "time = %d\012", $time, "\011memory[0] = %b\012", &A<v0x56039d1aa370, 0>, "\011memory[1] = %b\012", &A<v0x56039d1aa370, 1>, "\011memory[2] = %b\012", &A<v0x56039d1aa370, 2>, "\011memory[3] = %b\012", &A<v0x56039d1aa370, 3>, "\011memory[4] = %b\012", &A<v0x56039d1aa370, 4>, "\011memory[5] = %b\012", &A<v0x56039d1aa370, 5>, "\011memory[6] = %b\012", &A<v0x56039d1aa370, 6>, "\011memory[7] = %b\012", &A<v0x56039d1aa370, 7> {0 0 0};
%vpi_call 7 42 "$fclose", v0x56039d1a9eb0_0 {0 0 0};
%end;
.thread T_6;
.scope S_0x56039d1a9640;
T_7 ;
%wait E_0x56039d11f440;
%load/vec4 v0x56039d1aa2b0_0;
%flag_set/vec4 8;
%jmp/0xz T_7.0, 8;
%load/vec4 v0x56039d1aa1d0_0;
%load/vec4 v0x56039d1aa430_0;
%pad/u 5;
%ix/vec4 3;
%ix/load 4, 0, 0; Constant delay
%assign/vec4/a/d v0x56039d1aa370, 0, 4;
T_7.0 ;
%jmp T_7;
.thread T_7;
.scope S_0x56039d164600;
T_8 ;
%pushi/vec4 0, 0, 8;
%assign/vec4 v0x56039d1aec20_0, 0;
%end;
.thread T_8;
.scope S_0x56039d164600;
T_9 ;
%wait E_0x56039d11f440;
%load/vec4 v0x56039d1aed10_0;
%assign/vec4 v0x56039d1aec20_0, 0;
%jmp T_9;
.thread T_9;
.scope S_0x56039d1af740;
T_10 ;
%wait E_0x56039d18c160;
%load/vec4 v0x56039d1b0080_0;
%dup/vec4;
%pushi/vec4 0, 0, 4;
%cmp/u;
%jmp/1 T_10.0, 6;
%dup/vec4;
%pushi/vec4 1, 0, 4;
%cmp/u;
%jmp/1 T_10.1, 6;
%dup/vec4;
%pushi/vec4 2, 0, 4;
%cmp/u;
%jmp/1 T_10.2, 6;
%dup/vec4;
%pushi/vec4 3, 0, 4;
%cmp/u;
%jmp/1 T_10.3, 6;
%dup/vec4;
%pushi/vec4 4, 0, 4;
%cmp/u;
%jmp/1 T_10.4, 6;
%dup/vec4;
%pushi/vec4 5, 0, 4;
%cmp/u;
%jmp/1 T_10.5, 6;
%dup/vec4;
%pushi/vec4 6, 0, 4;
%cmp/u;
%jmp/1 T_10.6, 6;
%dup/vec4;
%pushi/vec4 7, 0, 4;
%cmp/u;
%jmp/1 T_10.7, 6;
%dup/vec4;
%pushi/vec4 8, 0, 4;
%cmp/u;
%jmp/1 T_10.8, 6;
%dup/vec4;
%pushi/vec4 9, 0, 4;
%cmp/u;
%jmp/1 T_10.9, 6;
%dup/vec4;
%pushi/vec4 11, 0, 4;
%cmp/u;
%jmp/1 T_10.10, 6;
%dup/vec4;
%pushi/vec4 12, 0, 4;
%cmp/u;
%jmp/1 T_10.11, 6;
%dup/vec4;
%pushi/vec4 13, 0, 4;
%cmp/u;
%jmp/1 T_10.12, 6;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.0 ;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 2, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.1 ;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 2, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.2 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.3 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.4 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.5 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.6 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.7 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.8 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.9 ;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.10 ;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 1, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.11 ;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 1, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.12 ;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b0120_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afa80_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afef0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1b01f0_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afe00_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1aff90_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afb40_0, 0, 1;
%pushi/vec4 0, 0, 1;
%store/vec4 v0x56039d1afc40_0, 0, 1;
%pushi/vec4 0, 0, 2;
%store/vec4 v0x56039d1af950_0, 0, 2;
%pushi/vec4 1, 0, 1;
%store/vec4 v0x56039d1afd10_0, 0, 1;
%jmp T_10.14;
T_10.14 ;
%pop/vec4 1;
%jmp T_10;
.thread T_10, $push;
.scope S_0x56039d181170;
T_11 ;
%pushi/vec4 0, 0, 1;
%assign/vec4 v0x56039d1b0db0_0, 0;
%delay 160000, 0;
%vpi_call 2 15 "$finish" {0 0 0};
%end;
.thread T_11;
.scope S_0x56039d181170;
T_12 ;
%delay 5000, 0;
%load/vec4 v0x56039d1b0db0_0;
%inv;
%store/vec4 v0x56039d1b0db0_0, 0, 1;
%jmp T_12;
.thread T_12;
# The file index is used to find the file name in the following table.
:file_names 11;
"N/A";
"<interactive>";
"testbench.v";
"combined.v";
"datapath_unit.v";
"alu_control.v";
"alu.v";
"data_memory.v";
"instruction_memory.v";
"gprs.v";
"control_unit.v";