-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPU.out
executable file
·2552 lines (2552 loc) · 116 KB
/
CPU.out
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
#! /usr/bin/vvp
:ivl_version "10.3 (stable)";
:ivl_delay_selection "TYPICAL";
:vpi_time_precision + 0;
:vpi_module "system";
:vpi_module "vhdl_sys";
:vpi_module "v2005_math";
:vpi_module "va_math";
S_0x55954ab2b000 .scope module, "testbench" "testbench" 2 3;
.timescale 0 0;
P_0x55954aa770b0 .param/l "num_cycles" 0 2 20, +C4<00000000000000000000000011001000>;
v0x55954ab79ce0_0 .var "Clk", 0 0;
v0x55954ab79da0_0 .var "Reset", 0 0;
v0x55954ab79e60_0 .var "Start", 0 0;
v0x55954ab79f00_0 .var "address", 26 0;
v0x55954ab79fa0_0 .var/i "counter", 31 0;
v0x55954ab7a0d0_0 .net "cpu_mem_addr", 31 0, L_0x55954ab97b40; 1 drivers
v0x55954ab7a190_0 .net "cpu_mem_data", 255 0, L_0x55954ab97c70; 1 drivers
v0x55954ab7a250_0 .net "cpu_mem_enable", 0 0, L_0x55954ab97520; 1 drivers
v0x55954ab7a2f0_0 .net "cpu_mem_write", 0 0, L_0x55954ab97d70; 1 drivers
v0x55954ab7a420_0 .var "flag", 0 0;
v0x55954ab7a4e0_0 .var/i "i", 31 0;
v0x55954ab7a5c0_0 .var "index", 3 0;
v0x55954ab7a6a0_0 .var/i "j", 31 0;
v0x55954ab7a780_0 .net "mem_cpu_ack", 0 0, L_0x55954aba0800; 1 drivers
v0x55954ab7a820_0 .net "mem_cpu_data", 255 0, v0x55954ab793b0_0; 1 drivers
v0x55954ab7a8e0_0 .var/i "outfile", 31 0;
v0x55954ab7a9c0_0 .var/i "outfile2", 31 0;
v0x55954ab7abb0_0 .var "tag", 24 0;
S_0x55954aad7bb0 .scope module, "CPU" "CPU" 2 24, 3 1 0, S_0x55954ab2b000;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 1 "rst_i"
.port_info 2 /INPUT 1 "start_i"
.port_info 3 /INPUT 256 "mem_data_i"
.port_info 4 /INPUT 1 "mem_ack_i"
.port_info 5 /OUTPUT 256 "mem_data_o"
.port_info 6 /OUTPUT 32 "mem_addr_o"
.port_info 7 /OUTPUT 1 "mem_enable_o"
.port_info 8 /OUTPUT 1 "mem_write_o"
L_0x55954ab7b0a0 .functor BUFZ 32, v0x55954ab60260_0, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>;
L_0x55954ab8bb30 .functor AND 1, L_0x55954ab7b730, L_0x55954ab8c740, C4<1>, C4<1>;
L_0x55954ab8b980 .functor OR 1, L_0x55954ab90aa0, L_0x55954ab96b40, C4<0>, C4<0>;
v0x55954ab71e60_0 .net "ALUCrtl_3", 2 0, L_0x55954ab955a0; 1 drivers
v0x55954ab71f40_0 .net "ALUOp_2", 1 0, L_0x55954ab8ea60; 1 drivers
v0x55954ab72000_0 .net "ALUOp_3", 1 0, v0x55954ab5e240_0; 1 drivers
v0x55954ab720f0_0 .net "ALUResult_3", 31 0, v0x55954ab068b0_0; 1 drivers
v0x55954ab72200_0 .net "ALUResult_4", 31 0, v0x55954ab59db0_0; 1 drivers
v0x55954ab72310_0 .net "ALUResult_5", 31 0, v0x55954ab61090_0; 1 drivers
v0x55954ab72420_0 .net "ALUSrc_2", 0 0, L_0x55954ab8e6b0; 1 drivers
v0x55954ab72510_0 .net "ALUSrc_3", 0 0, v0x55954ab5e410_0; 1 drivers
v0x55954ab72600_0 .net "Branch", 0 0, L_0x55954ab8c740; 1 drivers
v0x55954ab72750_0 .net "Branch_tmp", 0 0, L_0x55954ab8e1c0; 1 drivers
v0x55954ab727f0_0 .net "Equal", 0 0, L_0x55954ab7b730; 1 drivers
v0x55954ab72890_0 .net "Flush", 0 0, L_0x55954ab8bb30; 1 drivers
v0x55954ab72930_0 .net "ForwardA", 1 0, L_0x55954aba0070; 1 drivers
v0x55954ab729f0_0 .net "ForwardB", 1 0, L_0x55954aba03e0; 1 drivers
v0x55954ab72a90_0 .net "MUX_3", 31 0, L_0x55954ab91df0; 1 drivers
v0x55954ab72b80_0 .net "MemData_4", 31 0, L_0x55954ab96c50; 1 drivers
v0x55954ab72c90_0 .net "MemData_5", 31 0, v0x55954ab61240_0; 1 drivers
v0x55954ab72da0_0 .net "MemRead_2", 0 0, L_0x55954ab8c030; 1 drivers
v0x55954ab72e40_0 .net "MemRead_3", 0 0, v0x55954ab5e5a0_0; 1 drivers
v0x55954ab72ee0_0 .net "MemRead_4", 0 0, v0x55954ab59f40_0; 1 drivers
v0x55954ab72fd0_0 .net "MemRead_tmp", 0 0, L_0x55954ab8f9c0; 1 drivers
v0x55954ab73070_0 .net "MemWrite_2", 0 0, L_0x55954ab8c420; 1 drivers
v0x55954ab73110_0 .net "MemWrite_3", 0 0, v0x55954ab5e730_0; 1 drivers
v0x55954ab73200_0 .net "MemWrite_4", 0 0, v0x55954ab5a110_0; 1 drivers
v0x55954ab732f0_0 .net "MemWrite_tmp", 0 0, L_0x55954ab8f050; 1 drivers
v0x55954ab73390_0 .net "MemtoReg_2", 0 0, L_0x55954ab8d2d0; 1 drivers
v0x55954ab73430_0 .net "MemtoReg_3", 0 0, v0x55954ab5e870_0; 1 drivers
v0x55954ab73520_0 .net "MemtoReg_4", 0 0, v0x55954ab5a290_0; 1 drivers
v0x55954ab73610_0 .net "MemtoReg_5", 0 0, v0x55954ab61410_0; 1 drivers
v0x55954ab73700_0 .net "MemtoReg_tmp", 0 0, L_0x55954ab8fb80; 1 drivers
v0x55954ab737a0_0 .net "Miss_stall", 0 0, L_0x55954ab96b40; 1 drivers
v0x55954ab73840_0 .net "NoOp", 0 0, L_0x55954ab8de10; 1 drivers
v0x55954ab738e0_0 .net "NoOp_tmp", 0 0, L_0x55954ab909e0; 1 drivers
v0x55954ab73b90_0 .net "Op", 6 0, L_0x55954ab7ac90; 1 drivers
v0x55954ab73c30_0 .net "PCWrite", 0 0, L_0x55954ab8b8e0; 1 drivers
v0x55954ab73cd0_0 .net "PCWrite_tmp", 0 0, L_0x55954ab90ba0; 1 drivers
v0x55954ab73d70_0 .net "RDaddr_2", 4 0, L_0x55954ab7b000; 1 drivers
v0x55954ab73e10_0 .net "RDaddr_3", 4 0, v0x55954ab5ea80_0; 1 drivers
v0x55954ab73eb0_0 .net "RDaddr_4", 4 0, v0x55954ab5a4f0_0; 1 drivers
v0x55954ab73f50_0 .net "RDaddr_5", 4 0, L_0x55954ab8ca70; 1 drivers
v0x55954ab74040_0 .net "RDaddr_5_tmp", 4 0, v0x55954ab616b0_0; 1 drivers
v0x55954ab740e0_0 .net "RDdata_5", 31 0, L_0x55954ab8cdb0; 1 drivers
v0x55954ab74180_0 .net "RDdata_5_tmp", 31 0, L_0x55954ab92050; 1 drivers
v0x55954ab74220_0 .net "RS1addr_2", 4 0, L_0x55954ab7ada0; 1 drivers
v0x55954ab742c0_0 .net "RS1addr_3", 4 0, v0x55954ab5ec00_0; 1 drivers
v0x55954ab743b0_0 .net "RS1data_2", 31 0, L_0x55954ab913d0; 1 drivers
v0x55954ab744a0_0 .net "RS1data_31", 31 0, v0x55954ab5ed90_0; 1 drivers
v0x55954ab74590_0 .net "RS1data_32", 31 0, L_0x55954ab92230; 1 drivers
v0x55954ab74680_0 .net "RS2addr_2", 4 0, L_0x55954ab7ae40; 1 drivers
v0x55954ab74720_0 .net "RS2addr_3", 4 0, v0x55954ab5ef60_0; 1 drivers
v0x55954ab74830_0 .net "RS2data_2", 31 0, L_0x55954ab91c90; 1 drivers
v0x55954ab74940_0 .net "RS2data_31", 31 0, v0x55954ab5f0f0_0; 1 drivers
v0x55954ab74a50_0 .net "RS2data_32", 31 0, L_0x55954ab92700; 1 drivers
v0x55954ab74b10_0 .net "RS2data_4", 31 0, v0x55954ab5a6b0_0; 1 drivers
v0x55954ab74c20_0 .net "RegWrite_2", 0 0, L_0x55954ab8bce0; 1 drivers
v0x55954ab74cc0_0 .net "RegWrite_3", 0 0, v0x55954ab5f290_0; 1 drivers
v0x55954ab74db0_0 .net "RegWrite_4", 0 0, v0x55954ab5a850_0; 1 drivers
v0x55954ab74e50_0 .net "RegWrite_5", 0 0, v0x55954ab61830_0; 1 drivers
v0x55954ab74ef0_0 .net "RegWrite_tmp", 0 0, L_0x55954ab90190; 1 drivers
v0x55954ab74f90_0 .net "SE_21", 31 0, L_0x55954ab7b0a0; 1 drivers
v0x55954ab75030_0 .net "SE_22", 31 0, L_0x55954ab94290; 1 drivers
v0x55954ab75120_0 .net "SE_23", 31 0, L_0x55954ab7b5f0; 1 drivers
v0x55954ab751e0_0 .net "SE_3", 31 0, v0x55954ab5f420_0; 1 drivers
v0x55954ab752f0_0 .net "Stall", 0 0, L_0x55954ab90aa0; 1 drivers
L_0x7f8077f25570 .functor BUFT 1, C4<01>, C4<0>, C4<0>, C4<0>;
v0x55954ab75390_0 .net/2u *"_s100", 1 0, L_0x7f8077f25570; 1 drivers
v0x55954ab75840_0 .net *"_s102", 1 0, L_0x55954ab8da40; 1 drivers
L_0x7f8077f255b8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab75900_0 .net *"_s105", 0 0, L_0x7f8077f255b8; 1 drivers
v0x55954ab759e0_0 .net *"_s106", 1 0, L_0x55954ab8dc80; 1 drivers
v0x55954ab75ac0_0 .net *"_s11", 6 0, L_0x55954ab7b130; 1 drivers
v0x55954ab75ba0_0 .net *"_s13", 2 0, L_0x55954ab7b1d0; 1 drivers
v0x55954ab75c80_0 .net *"_s18", 30 0, L_0x55954ab7b500; 1 drivers
L_0x7f8077f25018 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab75d60_0 .net *"_s20", 0 0, L_0x7f8077f25018; 1 drivers
L_0x7f8077f25060 .functor BUFT 1, C4<00000000000000000000000000000001>, C4<0>, C4<0>, C4<0>;
v0x55954ab75e40_0 .net/2u *"_s24", 31 0, L_0x7f8077f25060; 1 drivers
v0x55954ab75f20_0 .net *"_s26", 0 0, L_0x55954ab8b840; 1 drivers
L_0x7f8077f250a8 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
v0x55954ab75fe0_0 .net/2u *"_s28", 0 0, L_0x7f8077f250a8; 1 drivers
L_0x7f8077f250f0 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab760c0_0 .net/2u *"_s34", 31 0, L_0x7f8077f250f0; 1 drivers
v0x55954ab761a0_0 .net *"_s36", 0 0, L_0x55954ab8bbf0; 1 drivers
L_0x7f8077f25138 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab76260_0 .net/2u *"_s38", 0 0, L_0x7f8077f25138; 1 drivers
L_0x7f8077f25180 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab76340_0 .net/2u *"_s42", 31 0, L_0x7f8077f25180; 1 drivers
v0x55954ab76420_0 .net *"_s44", 0 0, L_0x55954ab8bf40; 1 drivers
L_0x7f8077f251c8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab764e0_0 .net/2u *"_s46", 0 0, L_0x7f8077f251c8; 1 drivers
L_0x7f8077f25210 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab765c0_0 .net/2u *"_s50", 31 0, L_0x7f8077f25210; 1 drivers
v0x55954ab766a0_0 .net *"_s52", 0 0, L_0x55954ab8c2a0; 1 drivers
L_0x7f8077f25258 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab76760_0 .net/2u *"_s54", 0 0, L_0x7f8077f25258; 1 drivers
L_0x7f8077f252a0 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab76840_0 .net/2u *"_s58", 31 0, L_0x7f8077f252a0; 1 drivers
v0x55954ab76920_0 .net *"_s60", 0 0, L_0x55954ab8c650; 1 drivers
L_0x7f8077f252e8 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab769e0_0 .net/2u *"_s62", 0 0, L_0x7f8077f252e8; 1 drivers
L_0x7f8077f25330 .functor BUFT 1, C4<00000000000000000000000000000011>, C4<0>, C4<0>, C4<0>;
v0x55954ab76ac0_0 .net/2u *"_s66", 31 0, L_0x7f8077f25330; 1 drivers
v0x55954ab76ba0_0 .net *"_s68", 0 0, L_0x55954ab8c4c0; 1 drivers
L_0x7f8077f25378 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab76c60_0 .net/2u *"_s70", 4 0, L_0x7f8077f25378; 1 drivers
L_0x7f8077f253c0 .functor BUFT 1, C4<00000000000000000000000000000011>, C4<0>, C4<0>, C4<0>;
v0x55954ab76d40_0 .net/2u *"_s74", 31 0, L_0x7f8077f253c0; 1 drivers
v0x55954ab76e20_0 .net *"_s76", 0 0, L_0x55954ab8ccc0; 1 drivers
L_0x7f8077f25408 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab76ee0_0 .net/2u *"_s78", 31 0, L_0x7f8077f25408; 1 drivers
L_0x7f8077f25450 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab76fc0_0 .net/2u *"_s82", 31 0, L_0x7f8077f25450; 1 drivers
v0x55954ab770a0_0 .net *"_s84", 0 0, L_0x55954ab8cfc0; 1 drivers
L_0x7f8077f25498 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab77160_0 .net/2u *"_s86", 0 0, L_0x7f8077f25498; 1 drivers
L_0x7f8077f254e0 .functor BUFT 1, C4<00000000000000000000000000000100>, C4<0>, C4<0>, C4<0>;
v0x55954ab77240_0 .net/2u *"_s90", 31 0, L_0x7f8077f254e0; 1 drivers
L_0x7f8077f25528 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab77320_0 .net/2u *"_s96", 31 0, L_0x7f8077f25528; 1 drivers
v0x55954ab77400_0 .net *"_s98", 0 0, L_0x55954ab8d950; 1 drivers
v0x55954ab774c0_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; 1 drivers
v0x55954ab77560_0 .var "counter", 31 0;
v0x55954ab77640_0 .net "funct_2", 9 0, L_0x55954ab7b3c0; 1 drivers
v0x55954ab77700_0 .net "funct_3", 9 0, v0x55954ab5f690_0; 1 drivers
v0x55954ab777f0_0 .net "instr_1", 31 0, L_0x55954ab90570; 1 drivers
v0x55954ab77900_0 .net "instr_2", 31 0, v0x55954ab60260_0; 1 drivers
v0x55954ab779c0_0 .net "mem_ack_i", 0 0, L_0x55954aba0800; alias, 1 drivers
v0x55954ab77a60_0 .net "mem_addr_o", 31 0, L_0x55954ab97b40; alias, 1 drivers
v0x55954ab77b00_0 .net "mem_data_i", 255 0, v0x55954ab793b0_0; alias, 1 drivers
v0x55954ab77ba0_0 .net "mem_data_o", 255 0, L_0x55954ab97c70; alias, 1 drivers
v0x55954ab77c40_0 .net "mem_enable_o", 0 0, L_0x55954ab97520; alias, 1 drivers
v0x55954ab77ce0_0 .net "mem_write_o", 0 0, L_0x55954ab97d70; alias, 1 drivers
v0x55954ab77d80_0 .net "pc_0", 31 0, L_0x55954ab91f20; 1 drivers
v0x55954ab77e70_0 .net "pc_1", 31 0, v0x55954ab64a20_0; 1 drivers
v0x55954ab77f10_0 .net "pc_2", 31 0, v0x55954ab60420_0; 1 drivers
v0x55954ab77fb0_0 .net "pc_branch", 31 0, L_0x55954ab8d6d0; 1 drivers
v0x55954ab78080_0 .net "pc_predicted", 31 0, L_0x55954ab8d590; 1 drivers
v0x55954ab78150_0 .net "rst_i", 0 0, v0x55954ab79da0_0; 1 drivers
v0x55954ab781f0_0 .net "start_i", 0 0, v0x55954ab79e60_0; 1 drivers
v0x55954ab782c0_0 .net "tmpA", 31 0, L_0x55954ab920f0; 1 drivers
v0x55954ab783b0_0 .net "tmpB", 31 0, L_0x55954ab92520; 1 drivers
L_0x55954ab7ac90 .part v0x55954ab60260_0, 0, 7;
L_0x55954ab7ada0 .part v0x55954ab60260_0, 15, 5;
L_0x55954ab7ae40 .part v0x55954ab60260_0, 20, 5;
L_0x55954ab7b000 .part v0x55954ab60260_0, 7, 5;
L_0x55954ab7b130 .part v0x55954ab60260_0, 25, 7;
L_0x55954ab7b1d0 .part v0x55954ab60260_0, 12, 3;
L_0x55954ab7b3c0 .concat [ 3 7 0 0], L_0x55954ab7b1d0, L_0x55954ab7b130;
L_0x55954ab7b500 .part L_0x55954ab94290, 0, 31;
L_0x55954ab7b5f0 .concat [ 1 31 0 0], L_0x7f8077f25018, L_0x55954ab7b500;
L_0x55954ab7b730 .cmp/eq 32, L_0x55954ab913d0, L_0x55954ab91c90;
L_0x55954ab8b840 .cmp/ge 32, L_0x7f8077f25060, v0x55954ab77560_0;
L_0x55954ab8b8e0 .functor MUXZ 1, L_0x55954ab90ba0, L_0x7f8077f250a8, L_0x55954ab8b840, C4<>;
L_0x55954ab8bbf0 .cmp/eeq 32, v0x55954ab64a20_0, L_0x7f8077f250f0;
L_0x55954ab8bce0 .functor MUXZ 1, L_0x55954ab90190, L_0x7f8077f25138, L_0x55954ab8bbf0, C4<>;
L_0x55954ab8bf40 .cmp/eeq 32, v0x55954ab64a20_0, L_0x7f8077f25180;
L_0x55954ab8c030 .functor MUXZ 1, L_0x55954ab8f9c0, L_0x7f8077f251c8, L_0x55954ab8bf40, C4<>;
L_0x55954ab8c2a0 .cmp/eeq 32, v0x55954ab64a20_0, L_0x7f8077f25210;
L_0x55954ab8c420 .functor MUXZ 1, L_0x55954ab8f050, L_0x7f8077f25258, L_0x55954ab8c2a0, C4<>;
L_0x55954ab8c650 .cmp/eeq 32, v0x55954ab64a20_0, L_0x7f8077f252a0;
L_0x55954ab8c740 .functor MUXZ 1, L_0x55954ab8e1c0, L_0x7f8077f252e8, L_0x55954ab8c650, C4<>;
L_0x55954ab8c4c0 .cmp/ge 32, L_0x7f8077f25330, v0x55954ab77560_0;
L_0x55954ab8ca70 .functor MUXZ 5, v0x55954ab616b0_0, L_0x7f8077f25378, L_0x55954ab8c4c0, C4<>;
L_0x55954ab8ccc0 .cmp/ge 32, L_0x7f8077f253c0, v0x55954ab77560_0;
L_0x55954ab8cdb0 .functor MUXZ 32, L_0x55954ab92050, L_0x7f8077f25408, L_0x55954ab8ccc0, C4<>;
L_0x55954ab8cfc0 .cmp/eeq 32, v0x55954ab64a20_0, L_0x7f8077f25450;
L_0x55954ab8d2d0 .functor MUXZ 1, L_0x55954ab8fb80, L_0x7f8077f25498, L_0x55954ab8cfc0, C4<>;
L_0x55954ab8d590 .arith/sum 32, v0x55954ab64a20_0, L_0x7f8077f254e0;
L_0x55954ab8d6d0 .arith/sum 32, v0x55954ab60420_0, L_0x55954ab7b5f0;
L_0x55954ab8d950 .cmp/eeq 32, v0x55954ab60260_0, L_0x7f8077f25528;
L_0x55954ab8da40 .concat [ 1 1 0 0], L_0x55954ab909e0, L_0x7f8077f255b8;
L_0x55954ab8dc80 .functor MUXZ 2, L_0x55954ab8da40, L_0x7f8077f25570, L_0x55954ab8d950, C4<>;
L_0x55954ab8de10 .part L_0x55954ab8dc80, 0, 1;
L_0x55954ab92190 .part L_0x55954aba0070, 0, 1;
L_0x55954ab92360 .part L_0x55954aba0070, 1, 1;
L_0x55954ab925c0 .part L_0x55954aba03e0, 0, 1;
L_0x55954ab927a0 .part L_0x55954aba03e0, 1, 1;
S_0x55954aafb5a0 .scope module, "ALU" "ALU" 3 240, 4 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 3 "ALUCtrl_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab15010_0 .net "ALUCtrl_i", 2 0, L_0x55954ab955a0; alias, 1 drivers
v0x55954ab0e760_0 .net/s "data1_i", 31 0, L_0x55954ab92230; alias, 1 drivers
v0x55954ab0de30_0 .net/s "data2_i", 31 0, L_0x55954ab91df0; alias, 1 drivers
v0x55954ab068b0_0 .var "data_o", 31 0;
E_0x55954aa0e380 .event edge, v0x55954ab15010_0, v0x55954ab0de30_0, v0x55954ab0e760_0;
S_0x55954ab54e90 .scope module, "ALU_Control" "ALU_Control" 3 247, 5 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 10 "funct_i"
.port_info 1 /INPUT 2 "ALUOp_i"
.port_info 2 /OUTPUT 3 "ALUCtrl_o"
L_0x55954ab939e0 .functor OR 1, L_0x55954ab94480, L_0x55954ab94520, C4<0>, C4<0>;
L_0x55954ab946b0 .functor NOT 1, L_0x55954ab94610, C4<0>, C4<0>, C4<0>;
L_0x55954ab94720 .functor OR 1, L_0x55954ab939e0, L_0x55954ab946b0, C4<0>, C4<0>;
L_0x55954ab94830 .functor AND 1, L_0x55954ab94060, L_0x55954ab94720, C4<1>, C4<1>;
L_0x55954ab949e0 .functor NOT 1, L_0x55954ab94940, C4<0>, C4<0>, C4<0>;
L_0x55954ab94b80 .functor NOT 1, L_0x55954ab94aa0, C4<0>, C4<0>, C4<0>;
L_0x55954ab94c80 .functor OR 1, L_0x55954ab949e0, L_0x55954ab94b80, C4<0>, C4<0>;
L_0x55954ab94e30 .functor NOT 1, L_0x55954ab94d90, C4<0>, C4<0>, C4<0>;
L_0x55954ab95030 .functor NOT 1, L_0x55954ab94f40, C4<0>, C4<0>, C4<0>;
L_0x55954ab950f0 .functor AND 1, L_0x55954ab94e30, L_0x55954ab95030, C4<1>, C4<1>;
L_0x55954ab952a0 .functor NOT 1, L_0x55954ab95200, C4<0>, C4<0>, C4<0>;
L_0x55954ab95310 .functor AND 1, L_0x55954ab950f0, L_0x55954ab952a0, C4<1>, C4<1>;
L_0x55954ab95490 .functor OR 1, L_0x55954ab94c80, L_0x55954ab95310, C4<0>, C4<0>;
L_0x55954ab95780 .functor NOT 1, L_0x55954ab956e0, C4<0>, C4<0>, C4<0>;
L_0x55954ab95420 .functor NOT 1, L_0x55954ab95870, C4<0>, C4<0>, C4<0>;
L_0x55954ab95b80 .functor AND 1, L_0x55954ab95420, L_0x55954ab959d0, C4<1>, C4<1>;
L_0x55954ab95d20 .functor OR 1, L_0x55954ab95780, L_0x55954ab95b80, C4<0>, C4<0>;
L_0x55954ab95910 .functor NOT 1, L_0x55954ab95e30, C4<0>, C4<0>, C4<0>;
L_0x55954ab960e0 .functor NOT 1, L_0x55954ab96040, C4<0>, C4<0>, C4<0>;
L_0x55954ab961a0 .functor AND 1, L_0x55954ab95910, L_0x55954ab960e0, C4<1>, C4<1>;
L_0x55954ab963f0 .functor AND 1, L_0x55954ab961a0, L_0x55954ab95fa0, C4<1>, C4<1>;
L_0x55954ab96500 .functor OR 1, L_0x55954ab95d20, L_0x55954ab963f0, C4<0>, C4<0>;
v0x55954ab05f80_0 .net "ALUCtrl_o", 2 0, L_0x55954ab955a0; alias, 1 drivers
v0x55954ab03390_0 .net "ALUOp_i", 1 0, v0x55954ab5e240_0; alias, 1 drivers
v0x55954ab02a60_0 .net *"_s11", 0 0, L_0x55954ab94610; 1 drivers
v0x55954ab550b0_0 .net *"_s12", 0 0, L_0x55954ab946b0; 1 drivers
v0x55954ab55190_0 .net *"_s14", 0 0, L_0x55954ab94720; 1 drivers
v0x55954ab552c0_0 .net *"_s16", 0 0, L_0x55954ab94830; 1 drivers
v0x55954ab553a0_0 .net *"_s21", 0 0, L_0x55954ab94940; 1 drivers
v0x55954ab55480_0 .net *"_s22", 0 0, L_0x55954ab949e0; 1 drivers
v0x55954ab55560_0 .net *"_s25", 0 0, L_0x55954ab94aa0; 1 drivers
v0x55954ab55640_0 .net *"_s26", 0 0, L_0x55954ab94b80; 1 drivers
v0x55954ab55720_0 .net *"_s28", 0 0, L_0x55954ab94c80; 1 drivers
v0x55954ab55800_0 .net *"_s3", 0 0, L_0x55954ab94060; 1 drivers
v0x55954ab558e0_0 .net *"_s31", 0 0, L_0x55954ab94d90; 1 drivers
v0x55954ab559c0_0 .net *"_s32", 0 0, L_0x55954ab94e30; 1 drivers
v0x55954ab55aa0_0 .net *"_s35", 0 0, L_0x55954ab94f40; 1 drivers
v0x55954ab55b80_0 .net *"_s36", 0 0, L_0x55954ab95030; 1 drivers
v0x55954ab55c60_0 .net *"_s38", 0 0, L_0x55954ab950f0; 1 drivers
v0x55954ab55d40_0 .net *"_s41", 0 0, L_0x55954ab95200; 1 drivers
v0x55954ab55e20_0 .net *"_s42", 0 0, L_0x55954ab952a0; 1 drivers
v0x55954ab55f00_0 .net *"_s44", 0 0, L_0x55954ab95310; 1 drivers
v0x55954ab55fe0_0 .net *"_s46", 0 0, L_0x55954ab95490; 1 drivers
v0x55954ab560c0_0 .net *"_s5", 0 0, L_0x55954ab94480; 1 drivers
v0x55954ab561a0_0 .net *"_s52", 0 0, L_0x55954ab956e0; 1 drivers
v0x55954ab56280_0 .net *"_s53", 0 0, L_0x55954ab95780; 1 drivers
v0x55954ab56360_0 .net *"_s56", 0 0, L_0x55954ab95870; 1 drivers
v0x55954ab56440_0 .net *"_s57", 0 0, L_0x55954ab95420; 1 drivers
v0x55954ab56520_0 .net *"_s60", 0 0, L_0x55954ab959d0; 1 drivers
v0x55954ab56600_0 .net *"_s61", 0 0, L_0x55954ab95b80; 1 drivers
v0x55954ab566e0_0 .net *"_s63", 0 0, L_0x55954ab95d20; 1 drivers
v0x55954ab567c0_0 .net *"_s66", 0 0, L_0x55954ab95e30; 1 drivers
v0x55954ab568a0_0 .net *"_s67", 0 0, L_0x55954ab95910; 1 drivers
v0x55954ab56980_0 .net *"_s7", 0 0, L_0x55954ab94520; 1 drivers
v0x55954ab56a60_0 .net *"_s70", 0 0, L_0x55954ab96040; 1 drivers
v0x55954ab56b40_0 .net *"_s71", 0 0, L_0x55954ab960e0; 1 drivers
v0x55954ab56c20_0 .net *"_s73", 0 0, L_0x55954ab961a0; 1 drivers
v0x55954ab56d00_0 .net *"_s76", 0 0, L_0x55954ab95fa0; 1 drivers
v0x55954ab56de0_0 .net *"_s77", 0 0, L_0x55954ab963f0; 1 drivers
v0x55954ab56ec0_0 .net *"_s79", 0 0, L_0x55954ab96500; 1 drivers
v0x55954ab56fa0_0 .net *"_s8", 0 0, L_0x55954ab939e0; 1 drivers
v0x55954ab57080_0 .net "funct_i", 9 0, v0x55954ab5f690_0; alias, 1 drivers
L_0x55954ab94060 .part v0x55954ab5e240_0, 0, 1;
L_0x55954ab94480 .part v0x55954ab5f690_0, 8, 1;
L_0x55954ab94520 .part v0x55954ab5f690_0, 3, 1;
L_0x55954ab94610 .part v0x55954ab5e240_0, 1, 1;
L_0x55954ab94940 .part v0x55954ab5e240_0, 1, 1;
L_0x55954ab94aa0 .part v0x55954ab5e240_0, 0, 1;
L_0x55954ab94d90 .part v0x55954ab5f690_0, 8, 1;
L_0x55954ab94f40 .part v0x55954ab5f690_0, 3, 1;
L_0x55954ab95200 .part v0x55954ab5f690_0, 2, 1;
L_0x55954ab955a0 .concat8 [ 1 1 1 0], L_0x55954ab96500, L_0x55954ab95490, L_0x55954ab94830;
L_0x55954ab956e0 .part v0x55954ab5e240_0, 0, 1;
L_0x55954ab95870 .part v0x55954ab5e240_0, 1, 1;
L_0x55954ab959d0 .part v0x55954ab5f690_0, 0, 1;
L_0x55954ab95e30 .part v0x55954ab5f690_0, 8, 1;
L_0x55954ab96040 .part v0x55954ab5f690_0, 0, 1;
L_0x55954ab95fa0 .part v0x55954ab5e240_0, 1, 1;
S_0x55954ab571e0 .scope module, "Control" "Control" 3 137, 6 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 7 "Op_i"
.port_info 1 /INPUT 1 "NoOp_i"
.port_info 2 /OUTPUT 2 "ALUOp_o"
.port_info 3 /OUTPUT 1 "ALUSrc_o"
.port_info 4 /OUTPUT 1 "RegWrite_o"
.port_info 5 /OUTPUT 1 "MemtoReg_o"
.port_info 6 /OUTPUT 1 "MemRead_o"
.port_info 7 /OUTPUT 1 "MemWrite_o"
.port_info 8 /OUTPUT 1 "Branch_o"
L_0x55954ab8e0b0 .functor NOT 1, L_0x55954ab8de10, C4<0>, C4<0>, C4<0>;
L_0x55954ab8e1c0 .functor AND 1, L_0x55954ab8e0b0, L_0x55954ab8e120, C4<1>, C4<1>;
L_0x55954ab8e2d0 .functor NOT 1, L_0x55954ab8de10, C4<0>, C4<0>, C4<0>;
L_0x55954ab8e3e0 .functor NOT 1, L_0x55954ab8e340, C4<0>, C4<0>, C4<0>;
L_0x55954ab8e4f0 .functor NOT 1, L_0x55954ab8e450, C4<0>, C4<0>, C4<0>;
L_0x55954ab8e560 .functor OR 1, L_0x55954ab8e3e0, L_0x55954ab8e4f0, C4<0>, C4<0>;
L_0x55954ab8e6b0 .functor AND 1, L_0x55954ab8e2d0, L_0x55954ab8e560, C4<1>, C4<1>;
L_0x55954ab8e8b0 .functor NOT 2, L_0x55954ab8e7c0, C4<00>, C4<00>, C4<00>;
L_0x55954ab8ea60 .functor AND 2, L_0x55954ab8e8b0, L_0x55954ab8e9c0, C4<11>, C4<11>;
L_0x55954ab8eb70 .functor NOT 1, L_0x55954ab8de10, C4<0>, C4<0>, C4<0>;
L_0x55954ab8ed20 .functor NOT 1, L_0x55954ab8ec40, C4<0>, C4<0>, C4<0>;
L_0x55954ab8ef40 .functor AND 1, L_0x55954ab8ed20, L_0x55954ab8ed90, C4<1>, C4<1>;
L_0x55954ab8f1b0 .functor NOT 1, L_0x55954ab8f0c0, C4<0>, C4<0>, C4<0>;
L_0x55954ab8f270 .functor AND 1, L_0x55954ab8ef40, L_0x55954ab8f1b0, C4<1>, C4<1>;
L_0x55954ab8f050 .functor AND 1, L_0x55954ab8eb70, L_0x55954ab8f270, C4<1>, C4<1>;
L_0x55954ab8f4a0 .functor NOT 1, L_0x55954ab8de10, C4<0>, C4<0>, C4<0>;
L_0x55954ab8f640 .functor NOT 1, L_0x55954ab8f5a0, C4<0>, C4<0>, C4<0>;
L_0x55954ab8f7a0 .functor NOT 1, L_0x55954ab8f700, C4<0>, C4<0>, C4<0>;
L_0x55954ab8f8b0 .functor AND 1, L_0x55954ab8f640, L_0x55954ab8f7a0, C4<1>, C4<1>;
L_0x55954ab8f9c0 .functor AND 1, L_0x55954ab8f4a0, L_0x55954ab8f8b0, C4<1>, C4<1>;
L_0x55954ab8fb80 .functor BUFZ 1, L_0x55954ab8f9c0, C4<0>, C4<0>, C4<0>;
L_0x55954ab8fbf0 .functor NOT 1, L_0x55954ab8de10, C4<0>, C4<0>, C4<0>;
L_0x55954ab8fe30 .functor NOT 1, L_0x55954ab8f810, C4<0>, C4<0>, C4<0>;
L_0x55954ab8ffb0 .functor OR 1, L_0x55954ab8fe30, L_0x55954ab8fea0, C4<0>, C4<0>;
L_0x55954ab90190 .functor AND 1, L_0x55954ab8fbf0, L_0x55954ab8ffb0, C4<1>, C4<1>;
v0x55954ab57490_0 .net "ALUOp_o", 1 0, L_0x55954ab8ea60; alias, 1 drivers
v0x55954ab57550_0 .net "ALUSrc_o", 0 0, L_0x55954ab8e6b0; alias, 1 drivers
v0x55954ab57610_0 .net "Branch_o", 0 0, L_0x55954ab8e1c0; alias, 1 drivers
v0x55954ab576e0_0 .net "MemRead_o", 0 0, L_0x55954ab8f9c0; alias, 1 drivers
v0x55954ab577a0_0 .net "MemWrite_o", 0 0, L_0x55954ab8f050; alias, 1 drivers
v0x55954ab578b0_0 .net "MemtoReg_o", 0 0, L_0x55954ab8fb80; alias, 1 drivers
v0x55954ab57970_0 .net "NoOp_i", 0 0, L_0x55954ab8de10; alias, 1 drivers
v0x55954ab57a30_0 .net "Op_i", 6 0, L_0x55954ab7ac90; alias, 1 drivers
v0x55954ab57b10_0 .net "RegWrite_o", 0 0, L_0x55954ab90190; alias, 1 drivers
v0x55954ab57bd0_0 .net *"_s0", 0 0, L_0x55954ab8e0b0; 1 drivers
v0x55954ab57cb0_0 .net *"_s10", 0 0, L_0x55954ab8e3e0; 1 drivers
v0x55954ab57d90_0 .net *"_s13", 0 0, L_0x55954ab8e450; 1 drivers
v0x55954ab57e70_0 .net *"_s14", 0 0, L_0x55954ab8e4f0; 1 drivers
v0x55954ab57f50_0 .net *"_s16", 0 0, L_0x55954ab8e560; 1 drivers
v0x55954ab58010_0 .net *"_s20", 1 0, L_0x55954ab8e7c0; 1 drivers
L_0x7f8077f25600 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab580f0_0 .net *"_s23", 0 0, L_0x7f8077f25600; 1 drivers
v0x55954ab581d0_0 .net *"_s24", 1 0, L_0x55954ab8e8b0; 1 drivers
v0x55954ab582b0_0 .net *"_s27", 1 0, L_0x55954ab8e9c0; 1 drivers
v0x55954ab58390_0 .net *"_s3", 0 0, L_0x55954ab8e120; 1 drivers
v0x55954ab58470_0 .net *"_s30", 0 0, L_0x55954ab8eb70; 1 drivers
v0x55954ab58550_0 .net *"_s33", 0 0, L_0x55954ab8ec40; 1 drivers
v0x55954ab58630_0 .net *"_s34", 0 0, L_0x55954ab8ed20; 1 drivers
v0x55954ab58710_0 .net *"_s37", 0 0, L_0x55954ab8ed90; 1 drivers
v0x55954ab587f0_0 .net *"_s38", 0 0, L_0x55954ab8ef40; 1 drivers
v0x55954ab588b0_0 .net *"_s41", 0 0, L_0x55954ab8f0c0; 1 drivers
v0x55954ab58990_0 .net *"_s42", 0 0, L_0x55954ab8f1b0; 1 drivers
v0x55954ab58a70_0 .net *"_s44", 0 0, L_0x55954ab8f270; 1 drivers
v0x55954ab58b30_0 .net *"_s48", 0 0, L_0x55954ab8f4a0; 1 drivers
v0x55954ab58c10_0 .net *"_s51", 0 0, L_0x55954ab8f5a0; 1 drivers
v0x55954ab58cf0_0 .net *"_s52", 0 0, L_0x55954ab8f640; 1 drivers
v0x55954ab58dd0_0 .net *"_s55", 0 0, L_0x55954ab8f700; 1 drivers
v0x55954ab58eb0_0 .net *"_s56", 0 0, L_0x55954ab8f7a0; 1 drivers
v0x55954ab58f90_0 .net *"_s58", 0 0, L_0x55954ab8f8b0; 1 drivers
v0x55954ab59260_0 .net *"_s6", 0 0, L_0x55954ab8e2d0; 1 drivers
v0x55954ab59340_0 .net *"_s64", 0 0, L_0x55954ab8fbf0; 1 drivers
v0x55954ab59420_0 .net *"_s67", 0 0, L_0x55954ab8f810; 1 drivers
v0x55954ab59500_0 .net *"_s68", 0 0, L_0x55954ab8fe30; 1 drivers
v0x55954ab595e0_0 .net *"_s71", 0 0, L_0x55954ab8fea0; 1 drivers
v0x55954ab596c0_0 .net *"_s72", 0 0, L_0x55954ab8ffb0; 1 drivers
v0x55954ab59780_0 .net *"_s9", 0 0, L_0x55954ab8e340; 1 drivers
L_0x55954ab8e120 .part L_0x55954ab7ac90, 6, 1;
L_0x55954ab8e340 .part L_0x55954ab7ac90, 5, 1;
L_0x55954ab8e450 .part L_0x55954ab7ac90, 4, 1;
L_0x55954ab8e7c0 .concat [ 1 1 0 0], L_0x55954ab8de10, L_0x7f8077f25600;
L_0x55954ab8e9c0 .part L_0x55954ab7ac90, 4, 2;
L_0x55954ab8ec40 .part L_0x55954ab7ac90, 6, 1;
L_0x55954ab8ed90 .part L_0x55954ab7ac90, 5, 1;
L_0x55954ab8f0c0 .part L_0x55954ab7ac90, 4, 1;
L_0x55954ab8f5a0 .part L_0x55954ab7ac90, 5, 1;
L_0x55954ab8f700 .part L_0x55954ab7ac90, 4, 1;
L_0x55954ab8f810 .part L_0x55954ab7ac90, 5, 1;
L_0x55954ab8fea0 .part L_0x55954ab7ac90, 4, 1;
S_0x55954ab59980 .scope module, "EXMEM" "EXMEM" 3 103, 7 107 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 1 "RegWrite_i"
.port_info 2 /INPUT 1 "MemtoReg_i"
.port_info 3 /INPUT 1 "MemRead_i"
.port_info 4 /INPUT 1 "MemWrite_i"
.port_info 5 /INPUT 32 "ALUResult_i"
.port_info 6 /INPUT 32 "RS2data_i"
.port_info 7 /INPUT 5 "RDaddr_i"
.port_info 8 /INPUT 1 "Miss_stall_i"
.port_info 9 /OUTPUT 1 "RegWrite_o"
.port_info 10 /OUTPUT 1 "MemtoReg_o"
.port_info 11 /OUTPUT 1 "MemRead_o"
.port_info 12 /OUTPUT 1 "MemWrite_o"
.port_info 13 /OUTPUT 32 "ALUResult_o"
.port_info 14 /OUTPUT 32 "RS2data_o"
.port_info 15 /OUTPUT 5 "RDaddr_o"
v0x55954ab59cd0_0 .net "ALUResult_i", 31 0, v0x55954ab068b0_0; alias, 1 drivers
v0x55954ab59db0_0 .var "ALUResult_o", 31 0;
v0x55954ab59e70_0 .net "MemRead_i", 0 0, v0x55954ab5e5a0_0; alias, 1 drivers
v0x55954ab59f40_0 .var "MemRead_o", 0 0;
v0x55954ab5a000_0 .net "MemWrite_i", 0 0, v0x55954ab5e730_0; alias, 1 drivers
v0x55954ab5a110_0 .var "MemWrite_o", 0 0;
v0x55954ab5a1d0_0 .net "MemtoReg_i", 0 0, v0x55954ab5e870_0; alias, 1 drivers
v0x55954ab5a290_0 .var "MemtoReg_o", 0 0;
v0x55954ab5a350_0 .net "Miss_stall_i", 0 0, L_0x55954ab96b40; alias, 1 drivers
v0x55954ab5a410_0 .net "RDaddr_i", 4 0, v0x55954ab5ea80_0; alias, 1 drivers
v0x55954ab5a4f0_0 .var "RDaddr_o", 4 0;
v0x55954ab5a5d0_0 .net "RS2data_i", 31 0, L_0x55954ab92700; alias, 1 drivers
v0x55954ab5a6b0_0 .var "RS2data_o", 31 0;
v0x55954ab5a790_0 .net "RegWrite_i", 0 0, v0x55954ab5f290_0; alias, 1 drivers
v0x55954ab5a850_0 .var "RegWrite_o", 0 0;
v0x55954ab5a910_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; alias, 1 drivers
E_0x55954aa0e830 .event posedge, v0x55954ab5a910_0;
S_0x55954ab5abd0 .scope module, "Forwarding_Unit" "Forwarding_Unit" 3 284, 8 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 5 "RS1addr_i"
.port_info 1 /INPUT 5 "RS2addr_i"
.port_info 2 /INPUT 5 "RDaddrM_i"
.port_info 3 /INPUT 1 "RegWriteM_i"
.port_info 4 /INPUT 5 "RDaddrW_i"
.port_info 5 /INPUT 1 "RegWriteW_i"
.port_info 6 /OUTPUT 2 "ForwardA_o"
.port_info 7 /OUTPUT 2 "ForwardB_o"
L_0x55954ab9c4f0 .functor AND 1, v0x55954ab5a850_0, L_0x55954ab9f080, C4<1>, C4<1>;
L_0x55954ab9f2e0 .functor AND 1, L_0x55954ab9c4f0, L_0x55954ab9f240, C4<1>, C4<1>;
L_0x55954ab9f4e0 .functor AND 1, v0x55954ab5a850_0, L_0x55954ab9f3f0, C4<1>, C4<1>;
L_0x55954ab9f640 .functor AND 1, L_0x55954ab9f4e0, L_0x55954ab9f5a0, C4<1>, C4<1>;
L_0x55954ab9f840 .functor AND 1, v0x55954ab61830_0, L_0x55954ab9f750, C4<1>, C4<1>;
L_0x55954ab9fa30 .functor AND 1, L_0x55954ab9f840, L_0x55954ab9f900, C4<1>, C4<1>;
L_0x55954ab9fc20 .functor AND 1, v0x55954ab61830_0, L_0x55954ab9fb30, C4<1>, C4<1>;
L_0x55954ab9fdd0 .functor AND 1, L_0x55954ab9fc20, L_0x55954ab9fce0, C4<1>, C4<1>;
v0x55954ab5aec0_0 .net "ForwardA_o", 1 0, L_0x55954aba0070; alias, 1 drivers
v0x55954ab5afc0_0 .net "ForwardB_o", 1 0, L_0x55954aba03e0; alias, 1 drivers
v0x55954ab5b0a0_0 .net "RDaddrM_i", 4 0, v0x55954ab5a4f0_0; alias, 1 drivers
v0x55954ab5b140_0 .net "RDaddrW_i", 4 0, L_0x55954ab8ca70; alias, 1 drivers
v0x55954ab5b200_0 .net "RS1addr_i", 4 0, v0x55954ab5ec00_0; alias, 1 drivers
v0x55954ab5b330_0 .net "RS2addr_i", 4 0, v0x55954ab5ef60_0; alias, 1 drivers
v0x55954ab5b410_0 .net "RegWriteM_i", 0 0, v0x55954ab5a850_0; alias, 1 drivers
v0x55954ab5b4b0_0 .net "RegWriteW_i", 0 0, v0x55954ab61830_0; alias, 1 drivers
L_0x7f8077f263c8 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab5b550_0 .net/2u *"_s0", 4 0, L_0x7f8077f263c8; 1 drivers
L_0x7f8077f26410 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab5b630_0 .net/2u *"_s10", 4 0, L_0x7f8077f26410; 1 drivers
v0x55954ab5b710_0 .net *"_s12", 0 0, L_0x55954ab9f3f0; 1 drivers
v0x55954ab5b7d0_0 .net *"_s14", 0 0, L_0x55954ab9f4e0; 1 drivers
v0x55954ab5b8b0_0 .net *"_s16", 0 0, L_0x55954ab9f5a0; 1 drivers
v0x55954ab5b970_0 .net *"_s2", 0 0, L_0x55954ab9f080; 1 drivers
L_0x7f8077f26458 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab5ba30_0 .net/2u *"_s20", 4 0, L_0x7f8077f26458; 1 drivers
v0x55954ab5bb10_0 .net *"_s22", 0 0, L_0x55954ab9f750; 1 drivers
v0x55954ab5bbd0_0 .net *"_s24", 0 0, L_0x55954ab9f840; 1 drivers
v0x55954ab5bcb0_0 .net *"_s26", 0 0, L_0x55954ab9f900; 1 drivers
L_0x7f8077f264a0 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab5bd70_0 .net/2u *"_s30", 4 0, L_0x7f8077f264a0; 1 drivers
v0x55954ab5be50_0 .net *"_s32", 0 0, L_0x55954ab9fb30; 1 drivers
v0x55954ab5bf10_0 .net *"_s34", 0 0, L_0x55954ab9fc20; 1 drivers
v0x55954ab5bff0_0 .net *"_s36", 0 0, L_0x55954ab9fce0; 1 drivers
v0x55954ab5c0b0_0 .net *"_s4", 0 0, L_0x55954ab9c4f0; 1 drivers
L_0x7f8077f264e8 .functor BUFT 1, C4<01>, C4<0>, C4<0>, C4<0>;
v0x55954ab5c190_0 .net/2u *"_s40", 1 0, L_0x7f8077f264e8; 1 drivers
L_0x7f8077f26530 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x55954ab5c270_0 .net/2u *"_s42", 1 0, L_0x7f8077f26530; 1 drivers
L_0x7f8077f26578 .functor BUFT 1, C4<10>, C4<0>, C4<0>, C4<0>;
v0x55954ab5c350_0 .net/2u *"_s46", 1 0, L_0x7f8077f26578; 1 drivers
L_0x7f8077f265c0 .functor BUFT 1, C4<01>, C4<0>, C4<0>, C4<0>;
v0x55954ab5c430_0 .net/2u *"_s50", 1 0, L_0x7f8077f265c0; 1 drivers
L_0x7f8077f26608 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x55954ab5c510_0 .net/2u *"_s52", 1 0, L_0x7f8077f26608; 1 drivers
L_0x7f8077f26650 .functor BUFT 1, C4<10>, C4<0>, C4<0>, C4<0>;
v0x55954ab5c5f0_0 .net/2u *"_s56", 1 0, L_0x7f8077f26650; 1 drivers
v0x55954ab5c6d0_0 .net *"_s6", 0 0, L_0x55954ab9f240; 1 drivers
v0x55954ab5c790_0 .net "cA1", 0 0, L_0x55954ab9f2e0; 1 drivers
v0x55954ab5c850_0 .net "cA2", 0 0, L_0x55954ab9fa30; 1 drivers
v0x55954ab5c910_0 .net "cB1", 0 0, L_0x55954ab9f640; 1 drivers
v0x55954ab5cbe0_0 .net "cB2", 0 0, L_0x55954ab9fdd0; 1 drivers
v0x55954ab5cca0_0 .net "tmpA", 1 0, L_0x55954ab9fee0; 1 drivers
v0x55954ab5cd80_0 .net "tmpB", 1 0, L_0x55954aba0250; 1 drivers
L_0x55954ab9f080 .cmp/nee 5, v0x55954ab5a4f0_0, L_0x7f8077f263c8;
L_0x55954ab9f240 .cmp/eeq 5, v0x55954ab5a4f0_0, v0x55954ab5ec00_0;
L_0x55954ab9f3f0 .cmp/nee 5, v0x55954ab5a4f0_0, L_0x7f8077f26410;
L_0x55954ab9f5a0 .cmp/eeq 5, v0x55954ab5a4f0_0, v0x55954ab5ef60_0;
L_0x55954ab9f750 .cmp/nee 5, L_0x55954ab8ca70, L_0x7f8077f26458;
L_0x55954ab9f900 .cmp/eeq 5, L_0x55954ab8ca70, v0x55954ab5ec00_0;
L_0x55954ab9fb30 .cmp/nee 5, L_0x55954ab8ca70, L_0x7f8077f264a0;
L_0x55954ab9fce0 .cmp/eeq 5, L_0x55954ab8ca70, v0x55954ab5ef60_0;
L_0x55954ab9fee0 .functor MUXZ 2, L_0x7f8077f26530, L_0x7f8077f264e8, L_0x55954ab9fa30, C4<>;
L_0x55954aba0070 .functor MUXZ 2, L_0x55954ab9fee0, L_0x7f8077f26578, L_0x55954ab9f2e0, C4<>;
L_0x55954aba0250 .functor MUXZ 2, L_0x7f8077f26608, L_0x7f8077f265c0, L_0x55954ab9fdd0, C4<>;
L_0x55954aba03e0 .functor MUXZ 2, L_0x55954aba0250, L_0x7f8077f26650, L_0x55954ab9f640, C4<>;
S_0x55954ab5cf60 .scope module, "Hazard_Detection_Unit" "Hazard_Detection_Unit" 3 164, 9 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "MemRead_i"
.port_info 1 /INPUT 5 "RDaddr_i"
.port_info 2 /INPUT 5 "RS1addr_i"
.port_info 3 /INPUT 5 "RS2addr_i"
.port_info 4 /OUTPUT 1 "NoOp_o"
.port_info 5 /OUTPUT 1 "Stall_o"
.port_info 6 /OUTPUT 1 "PCWrite_o"
L_0x55954ab90770 .functor OR 1, L_0x55954ab90630, L_0x55954ab906d0, C4<0>, C4<0>;
L_0x55954ab90920 .functor AND 1, L_0x55954ab90830, v0x55954ab5e5a0_0, C4<1>, C4<1>;
L_0x55954ab909e0 .functor AND 1, L_0x55954ab90920, L_0x55954ab90770, C4<1>, C4<1>;
L_0x55954ab90aa0 .functor BUFZ 1, L_0x55954ab909e0, C4<0>, C4<0>, C4<0>;
L_0x55954ab90ba0 .functor NOT 1, L_0x55954ab909e0, C4<0>, C4<0>, C4<0>;
v0x55954ab5d190_0 .net "MemRead_i", 0 0, v0x55954ab5e5a0_0; alias, 1 drivers
v0x55954ab5d280_0 .net "NoOp_o", 0 0, L_0x55954ab909e0; alias, 1 drivers
v0x55954ab5d320_0 .net "PCWrite_o", 0 0, L_0x55954ab90ba0; alias, 1 drivers
v0x55954ab5d3f0_0 .net "RDaddr_i", 4 0, v0x55954ab5ea80_0; alias, 1 drivers
v0x55954ab5d4e0_0 .net "RS1addr_i", 4 0, L_0x55954ab7ada0; alias, 1 drivers
v0x55954ab5d5f0_0 .net "RS2addr_i", 4 0, L_0x55954ab7ae40; alias, 1 drivers
v0x55954ab5d6d0_0 .net "Stall_o", 0 0, L_0x55954ab90aa0; alias, 1 drivers
v0x55954ab5d790_0 .net *"_s0", 0 0, L_0x55954ab90630; 1 drivers
v0x55954ab5d850_0 .net *"_s10", 0 0, L_0x55954ab90920; 1 drivers
v0x55954ab5d930_0 .net *"_s2", 0 0, L_0x55954ab906d0; 1 drivers
L_0x7f8077f25690 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab5d9f0_0 .net/2u *"_s6", 4 0, L_0x7f8077f25690; 1 drivers
v0x55954ab5dad0_0 .net *"_s8", 0 0, L_0x55954ab90830; 1 drivers
v0x55954ab5db90_0 .net "tmp", 0 0, L_0x55954ab90770; 1 drivers
L_0x55954ab90630 .cmp/eq 5, v0x55954ab5ea80_0, L_0x55954ab7ada0;
L_0x55954ab906d0 .cmp/eq 5, v0x55954ab5ea80_0, L_0x55954ab7ae40;
L_0x55954ab90830 .cmp/nee 5, v0x55954ab5ea80_0, L_0x7f8077f25690;
S_0x55954ab5dd30 .scope module, "IDEX" "IDEX" 3 72, 7 32 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 2 "ALUOp_i"
.port_info 2 /INPUT 1 "ALUSrc_i"
.port_info 3 /INPUT 1 "RegWrite_i"
.port_info 4 /INPUT 1 "MemtoReg_i"
.port_info 5 /INPUT 1 "MemRead_i"
.port_info 6 /INPUT 1 "MemWrite_i"
.port_info 7 /INPUT 32 "RS1data_i"
.port_info 8 /INPUT 32 "RS2data_i"
.port_info 9 /INPUT 32 "SE_i"
.port_info 10 /INPUT 10 "funct_i"
.port_info 11 /INPUT 5 "RS1addr_i"
.port_info 12 /INPUT 5 "RS2addr_i"
.port_info 13 /INPUT 5 "RDaddr_i"
.port_info 14 /INPUT 1 "Miss_stall_i"
.port_info 15 /OUTPUT 1 "RegWrite_o"
.port_info 16 /OUTPUT 1 "MemtoReg_o"
.port_info 17 /OUTPUT 1 "MemRead_o"
.port_info 18 /OUTPUT 1 "MemWrite_o"
.port_info 19 /OUTPUT 2 "ALUOp_o"
.port_info 20 /OUTPUT 1 "ALUSrc_o"
.port_info 21 /OUTPUT 32 "RS1data_o"
.port_info 22 /OUTPUT 32 "RS2data_o"
.port_info 23 /OUTPUT 32 "SE_o"
.port_info 24 /OUTPUT 10 "funct_o"
.port_info 25 /OUTPUT 5 "RS1addr_o"
.port_info 26 /OUTPUT 5 "RS2addr_o"
.port_info 27 /OUTPUT 5 "RDaddr_o"
v0x55954ab5e160_0 .net "ALUOp_i", 1 0, L_0x55954ab8ea60; alias, 1 drivers
v0x55954ab5e240_0 .var "ALUOp_o", 1 0;
v0x55954ab5e310_0 .net "ALUSrc_i", 0 0, L_0x55954ab8e6b0; alias, 1 drivers
v0x55954ab5e410_0 .var "ALUSrc_o", 0 0;
v0x55954ab5e4b0_0 .net "MemRead_i", 0 0, L_0x55954ab8c030; alias, 1 drivers
v0x55954ab5e5a0_0 .var "MemRead_o", 0 0;
v0x55954ab5e690_0 .net "MemWrite_i", 0 0, L_0x55954ab8c420; alias, 1 drivers
v0x55954ab5e730_0 .var "MemWrite_o", 0 0;
v0x55954ab5e7d0_0 .net "MemtoReg_i", 0 0, L_0x55954ab8d2d0; alias, 1 drivers
v0x55954ab5e870_0 .var "MemtoReg_o", 0 0;
v0x55954ab5e910_0 .net "Miss_stall_i", 0 0, L_0x55954ab96b40; alias, 1 drivers
v0x55954ab5e9e0_0 .net "RDaddr_i", 4 0, L_0x55954ab7b000; alias, 1 drivers
v0x55954ab5ea80_0 .var "RDaddr_o", 4 0;
v0x55954ab5eb40_0 .net "RS1addr_i", 4 0, L_0x55954ab7ada0; alias, 1 drivers
v0x55954ab5ec00_0 .var "RS1addr_o", 4 0;
v0x55954ab5ecd0_0 .net "RS1data_i", 31 0, L_0x55954ab913d0; alias, 1 drivers
v0x55954ab5ed90_0 .var "RS1data_o", 31 0;
v0x55954ab5ee70_0 .net "RS2addr_i", 4 0, L_0x55954ab7ae40; alias, 1 drivers
v0x55954ab5ef60_0 .var "RS2addr_o", 4 0;
v0x55954ab5f030_0 .net "RS2data_i", 31 0, L_0x55954ab91c90; alias, 1 drivers
v0x55954ab5f0f0_0 .var "RS2data_o", 31 0;
v0x55954ab5f1d0_0 .net "RegWrite_i", 0 0, L_0x55954ab8bce0; alias, 1 drivers
v0x55954ab5f290_0 .var "RegWrite_o", 0 0;
v0x55954ab5f360_0 .net "SE_i", 31 0, L_0x55954ab94290; alias, 1 drivers
v0x55954ab5f420_0 .var "SE_o", 31 0;
v0x55954ab5f500_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; alias, 1 drivers
v0x55954ab5f5d0_0 .net "funct_i", 9 0, L_0x55954ab7b3c0; alias, 1 drivers
v0x55954ab5f690_0 .var "funct_o", 9 0;
S_0x55954ab5fae0 .scope module, "IFID" "IFID" 3 62, 7 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 32 "instr_i"
.port_info 2 /INPUT 1 "Stall_i"
.port_info 3 /INPUT 1 "Flush_i"
.port_info 4 /INPUT 32 "pc_i"
.port_info 5 /INPUT 1 "Miss_stall_i"
.port_info 6 /OUTPUT 32 "instr_o"
.port_info 7 /OUTPUT 32 "pc_o"
v0x55954ab5fdd0_0 .net "Flush_i", 0 0, L_0x55954ab8bb30; alias, 1 drivers
o0x7f8077f70b98 .functor BUFZ 1, C4<z>; HiZ drive
v0x55954ab5feb0_0 .net "Miss_stall_i", 0 0, o0x7f8077f70b98; 0 drivers
v0x55954ab5ff70_0 .net "Stall_i", 0 0, L_0x55954ab8b980; 1 drivers
v0x55954ab60040_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; alias, 1 drivers
v0x55954ab60130_0 .net "instr_i", 31 0, L_0x55954ab90570; alias, 1 drivers
v0x55954ab60260_0 .var "instr_o", 31 0;
v0x55954ab60340_0 .net "pc_i", 31 0, v0x55954ab64a20_0; alias, 1 drivers
v0x55954ab60420_0 .var "pc_o", 31 0;
S_0x55954ab60650 .scope module, "Instruction_Memory" "Instruction_Memory" 3 159, 10 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "addr_i"
.port_info 1 /OUTPUT 32 "instr_o"
L_0x55954ab90570 .functor BUFZ 32, L_0x55954ab902a0, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>;
v0x55954ab607f0_0 .net *"_s0", 31 0, L_0x55954ab902a0; 1 drivers
v0x55954ab608f0_0 .net *"_s2", 31 0, L_0x55954ab903e0; 1 drivers
v0x55954ab609d0_0 .net *"_s4", 29 0, L_0x55954ab90340; 1 drivers
L_0x7f8077f25648 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x55954ab60a90_0 .net *"_s6", 1 0, L_0x7f8077f25648; 1 drivers
v0x55954ab60b70_0 .net "addr_i", 31 0, v0x55954ab64a20_0; alias, 1 drivers
v0x55954ab60c30_0 .net "instr_o", 31 0, L_0x55954ab90570; alias, 1 drivers
v0x55954ab60cd0 .array "memory", 255 0, 31 0;
L_0x55954ab902a0 .array/port v0x55954ab60cd0, L_0x55954ab903e0;
L_0x55954ab90340 .part v0x55954ab64a20_0, 2, 30;
L_0x55954ab903e0 .concat [ 30 2 0 0], L_0x55954ab90340, L_0x7f8077f25648;
S_0x55954ab60dd0 .scope module, "MEMWB" "MEMWB" 3 122, 7 154 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 1 "RegWrite_i"
.port_info 2 /INPUT 1 "MemtoReg_i"
.port_info 3 /INPUT 32 "ALUResult_i"
.port_info 4 /INPUT 32 "MemData_i"
.port_info 5 /INPUT 5 "RDaddr_i"
.port_info 6 /INPUT 1 "Miss_stall_i"
.port_info 7 /OUTPUT 1 "RegWrite_o"
.port_info 8 /OUTPUT 1 "MemtoReg_o"
.port_info 9 /OUTPUT 32 "ALUResult_o"
.port_info 10 /OUTPUT 32 "MemData_o"
.port_info 11 /OUTPUT 5 "RDaddr_o"
v0x55954ab60fa0_0 .net "ALUResult_i", 31 0, v0x55954ab59db0_0; alias, 1 drivers
v0x55954ab61090_0 .var "ALUResult_o", 31 0;
v0x55954ab61150_0 .net "MemData_i", 31 0, L_0x55954ab96c50; alias, 1 drivers
v0x55954ab61240_0 .var "MemData_o", 31 0;
v0x55954ab61320_0 .net "MemtoReg_i", 0 0, v0x55954ab5a290_0; alias, 1 drivers
v0x55954ab61410_0 .var "MemtoReg_o", 0 0;
v0x55954ab614b0_0 .net "Miss_stall_i", 0 0, L_0x55954ab96b40; alias, 1 drivers
v0x55954ab615a0_0 .net "RDaddr_i", 4 0, v0x55954ab5a4f0_0; alias, 1 drivers
v0x55954ab616b0_0 .var "RDaddr_o", 4 0;
v0x55954ab61790_0 .net "RegWrite_i", 0 0, v0x55954ab5a850_0; alias, 1 drivers
v0x55954ab61830_0 .var "RegWrite_o", 0 0;
v0x55954ab618d0_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; alias, 1 drivers
S_0x55954ab61ad0 .scope module, "MUX_A" "MUX32" 3 208, 11 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 1 "select_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab61ca0_0 .net "data1_i", 31 0, v0x55954ab5ed90_0; alias, 1 drivers
v0x55954ab61d80_0 .net "data2_i", 31 0, L_0x55954ab8cdb0; alias, 1 drivers
v0x55954ab61e40_0 .net "data_o", 31 0, L_0x55954ab920f0; alias, 1 drivers
v0x55954ab61f30_0 .net "select_i", 0 0, L_0x55954ab92190; 1 drivers
L_0x55954ab920f0 .functor MUXZ 32, v0x55954ab5ed90_0, L_0x55954ab8cdb0, L_0x55954ab92190, C4<>;
S_0x55954ab620a0 .scope module, "MUX_AA" "MUX32" 3 214, 11 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 1 "select_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab62270_0 .net "data1_i", 31 0, L_0x55954ab920f0; alias, 1 drivers
v0x55954ab62380_0 .net "data2_i", 31 0, v0x55954ab59db0_0; alias, 1 drivers
v0x55954ab62470_0 .net "data_o", 31 0, L_0x55954ab92230; alias, 1 drivers
v0x55954ab62540_0 .net "select_i", 0 0, L_0x55954ab92360; 1 drivers
L_0x55954ab92230 .functor MUXZ 32, L_0x55954ab920f0, v0x55954ab59db0_0, L_0x55954ab92360, C4<>;
S_0x55954ab62690 .scope module, "MUX_ALUSrc" "MUX32" 3 186, 11 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 1 "select_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab62860_0 .net "data1_i", 31 0, L_0x55954ab92700; alias, 1 drivers
v0x55954ab62970_0 .net "data2_i", 31 0, v0x55954ab5f420_0; alias, 1 drivers
v0x55954ab62a40_0 .net "data_o", 31 0, L_0x55954ab91df0; alias, 1 drivers
v0x55954ab62b40_0 .net "select_i", 0 0, v0x55954ab5e410_0; alias, 1 drivers
L_0x55954ab91df0 .functor MUXZ 32, L_0x55954ab92700, v0x55954ab5f420_0, v0x55954ab5e410_0, C4<>;
S_0x55954ab62c60 .scope module, "MUX_B" "MUX32" 3 222, 11 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 1 "select_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab62e30_0 .net "data1_i", 31 0, v0x55954ab5f0f0_0; alias, 1 drivers
v0x55954ab62f40_0 .net "data2_i", 31 0, L_0x55954ab8cdb0; alias, 1 drivers
v0x55954ab63010_0 .net "data_o", 31 0, L_0x55954ab92520; alias, 1 drivers
v0x55954ab630e0_0 .net "select_i", 0 0, L_0x55954ab925c0; 1 drivers
L_0x55954ab92520 .functor MUXZ 32, v0x55954ab5f0f0_0, L_0x55954ab8cdb0, L_0x55954ab925c0, C4<>;
S_0x55954ab63250 .scope module, "MUX_BB" "MUX32" 3 228, 11 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 1 "select_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab63420_0 .net "data1_i", 31 0, L_0x55954ab92520; alias, 1 drivers
v0x55954ab63530_0 .net "data2_i", 31 0, v0x55954ab59db0_0; alias, 1 drivers
v0x55954ab635d0_0 .net "data_o", 31 0, L_0x55954ab92700; alias, 1 drivers
v0x55954ab636f0_0 .net "select_i", 0 0, L_0x55954ab927a0; 1 drivers
L_0x55954ab92700 .functor MUXZ 32, L_0x55954ab92520, v0x55954ab59db0_0, L_0x55954ab927a0, C4<>;
S_0x55954ab63830 .scope module, "MUX_WB" "MUX32" 3 200, 11 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 1 "select_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab63a70_0 .net "data1_i", 31 0, v0x55954ab61090_0; alias, 1 drivers
v0x55954ab63b80_0 .net "data2_i", 31 0, v0x55954ab61240_0; alias, 1 drivers
v0x55954ab63c50_0 .net "data_o", 31 0, L_0x55954ab92050; alias, 1 drivers
v0x55954ab63d20_0 .net "select_i", 0 0, v0x55954ab61410_0; alias, 1 drivers
L_0x55954ab92050 .functor MUXZ 32, v0x55954ab61090_0, v0x55954ab61240_0, v0x55954ab61410_0, C4<>;
S_0x55954ab63e80 .scope module, "MUX_Zero" "MUX32" 3 193, 11 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data1_i"
.port_info 1 /INPUT 32 "data2_i"
.port_info 2 /INPUT 1 "select_i"
.port_info 3 /OUTPUT 32 "data_o"
v0x55954ab640c0_0 .net "data1_i", 31 0, L_0x55954ab8d590; alias, 1 drivers
v0x55954ab641c0_0 .net "data2_i", 31 0, L_0x55954ab8d6d0; alias, 1 drivers
v0x55954ab642a0_0 .net "data_o", 31 0, L_0x55954ab91f20; alias, 1 drivers
v0x55954ab64390_0 .net "select_i", 0 0, L_0x55954ab8bb30; alias, 1 drivers
L_0x55954ab91f20 .functor MUXZ 32, L_0x55954ab8d590, L_0x55954ab8d6d0, L_0x55954ab8bb30, C4<>;
S_0x55954ab644f0 .scope module, "PC" "PC" 3 149, 12 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 1 "rst_i"
.port_info 2 /INPUT 1 "start_i"
.port_info 3 /INPUT 1 "stall_i"
.port_info 4 /INPUT 1 "PCWrite_i"
.port_info 5 /INPUT 32 "pc_i"
.port_info 6 /OUTPUT 32 "pc_o"
v0x55954ab647b0_0 .net "PCWrite_i", 0 0, L_0x55954ab8b8e0; alias, 1 drivers
v0x55954ab64890_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; alias, 1 drivers
v0x55954ab64950_0 .net "pc_i", 31 0, L_0x55954ab91f20; alias, 1 drivers
v0x55954ab64a20_0 .var "pc_o", 31 0;
v0x55954ab64ac0_0 .net "rst_i", 0 0, v0x55954ab79da0_0; alias, 1 drivers
v0x55954ab64bb0_0 .net "stall_i", 0 0, L_0x55954ab96b40; alias, 1 drivers
v0x55954ab64c50_0 .net "start_i", 0 0, v0x55954ab79e60_0; alias, 1 drivers
E_0x55954ab48350 .event posedge, v0x55954ab64ac0_0, v0x55954ab5a910_0;
S_0x55954ab64e30 .scope module, "Registers" "Registers" 3 174, 13 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 5 "RS1addr_i"
.port_info 2 /INPUT 5 "RS2addr_i"
.port_info 3 /INPUT 5 "RDaddr_i"
.port_info 4 /INPUT 32 "RDdata_i"
.port_info 5 /INPUT 1 "RegWrite_i"
.port_info 6 /OUTPUT 32 "RS1data_o"
.port_info 7 /OUTPUT 32 "RS2data_o"
L_0x55954ab90d40 .functor AND 1, L_0x55954ab90c10, v0x55954ab61830_0, C4<1>, C4<1>;
L_0x55954ab90fd0 .functor AND 1, L_0x55954ab90d40, L_0x55954ab90ee0, C4<1>, C4<1>;
L_0x55954ab915a0 .functor AND 1, L_0x55954ab91500, v0x55954ab61830_0, C4<1>, C4<1>;
L_0x55954ab918e0 .functor AND 1, L_0x55954ab915a0, L_0x55954ab917a0, C4<1>, C4<1>;
v0x55954ab65120_0 .net "RDaddr_i", 4 0, L_0x55954ab8ca70; alias, 1 drivers
v0x55954ab65200_0 .net "RDdata_i", 31 0, L_0x55954ab8cdb0; alias, 1 drivers
v0x55954ab652f0_0 .net "RS1addr_i", 4 0, L_0x55954ab7ada0; alias, 1 drivers
v0x55954ab653e0_0 .net "RS1data_o", 31 0, L_0x55954ab913d0; alias, 1 drivers
v0x55954ab654a0_0 .net "RS2addr_i", 4 0, L_0x55954ab7ae40; alias, 1 drivers
v0x55954ab655e0_0 .net "RS2data_o", 31 0, L_0x55954ab91c90; alias, 1 drivers
v0x55954ab656a0_0 .net "RegWrite_i", 0 0, v0x55954ab61830_0; alias, 1 drivers
v0x55954ab65790_0 .net *"_s0", 0 0, L_0x55954ab90c10; 1 drivers
v0x55954ab65830_0 .net *"_s10", 0 0, L_0x55954ab90ee0; 1 drivers
v0x55954ab658f0_0 .net *"_s12", 0 0, L_0x55954ab90fd0; 1 drivers
v0x55954ab659b0_0 .net *"_s14", 31 0, L_0x55954ab910e0; 1 drivers
v0x55954ab65a90_0 .net *"_s16", 6 0, L_0x55954ab91180; 1 drivers
L_0x7f8077f25768 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x55954ab65b70_0 .net *"_s19", 1 0, L_0x7f8077f25768; 1 drivers
v0x55954ab65c50_0 .net *"_s2", 0 0, L_0x55954ab90d40; 1 drivers
v0x55954ab65d10_0 .net *"_s22", 0 0, L_0x55954ab91500; 1 drivers
v0x55954ab65dd0_0 .net *"_s24", 0 0, L_0x55954ab915a0; 1 drivers
v0x55954ab65e90_0 .net *"_s26", 31 0, L_0x55954ab91660; 1 drivers
L_0x7f8077f257b0 .functor BUFT 1, C4<000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab66080_0 .net *"_s29", 26 0, L_0x7f8077f257b0; 1 drivers
L_0x7f8077f257f8 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab66160_0 .net/2u *"_s30", 31 0, L_0x7f8077f257f8; 1 drivers
v0x55954ab66240_0 .net *"_s32", 0 0, L_0x55954ab917a0; 1 drivers
v0x55954ab66300_0 .net *"_s34", 0 0, L_0x55954ab918e0; 1 drivers
v0x55954ab663c0_0 .net *"_s36", 31 0, L_0x55954ab919f0; 1 drivers
v0x55954ab664a0_0 .net *"_s38", 6 0, L_0x55954ab91a90; 1 drivers
v0x55954ab66580_0 .net *"_s4", 31 0, L_0x55954ab90e40; 1 drivers
L_0x7f8077f25840 .functor BUFT 1, C4<00>, C4<0>, C4<0>, C4<0>;
v0x55954ab66660_0 .net *"_s41", 1 0, L_0x7f8077f25840; 1 drivers
L_0x7f8077f256d8 .functor BUFT 1, C4<000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab66740_0 .net *"_s7", 26 0, L_0x7f8077f256d8; 1 drivers
L_0x7f8077f25720 .functor BUFT 1, C4<00000000000000000000000000000000>, C4<0>, C4<0>, C4<0>;
v0x55954ab66820_0 .net/2u *"_s8", 31 0, L_0x7f8077f25720; 1 drivers
v0x55954ab66900_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; alias, 1 drivers
v0x55954ab669a0 .array/s "register", 31 0, 31 0;
L_0x55954ab90c10 .cmp/eq 5, L_0x55954ab7ada0, L_0x55954ab8ca70;
L_0x55954ab90e40 .concat [ 5 27 0 0], L_0x55954ab7ada0, L_0x7f8077f256d8;
L_0x55954ab90ee0 .cmp/ne 32, L_0x55954ab90e40, L_0x7f8077f25720;
L_0x55954ab910e0 .array/port v0x55954ab669a0, L_0x55954ab91180;
L_0x55954ab91180 .concat [ 5 2 0 0], L_0x55954ab7ada0, L_0x7f8077f25768;
L_0x55954ab913d0 .functor MUXZ 32, L_0x55954ab910e0, L_0x55954ab8cdb0, L_0x55954ab90fd0, C4<>;
L_0x55954ab91500 .cmp/eq 5, L_0x55954ab7ae40, L_0x55954ab8ca70;
L_0x55954ab91660 .concat [ 5 27 0 0], L_0x55954ab7ae40, L_0x7f8077f257b0;
L_0x55954ab917a0 .cmp/ne 32, L_0x55954ab91660, L_0x7f8077f257f8;
L_0x55954ab919f0 .array/port v0x55954ab669a0, L_0x55954ab91a90;
L_0x55954ab91a90 .concat [ 5 2 0 0], L_0x55954ab7ae40, L_0x7f8077f25840;
L_0x55954ab91c90 .functor MUXZ 32, L_0x55954ab919f0, L_0x55954ab8cdb0, L_0x55954ab918e0, C4<>;
S_0x55954ab66b60 .scope module, "Sign_Extend" "Sign_Extend" 3 235, 14 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 32 "data_i"
.port_info 1 /OUTPUT 32 "data_o"
v0x55954ab66d00_0 .net *"_s1", 0 0, L_0x55954ab92400; 1 drivers
v0x55954ab66e00_0 .net *"_s10", 19 0, L_0x55954ab92d90; 1 drivers
v0x55954ab66ee0_0 .net *"_s13", 6 0, L_0x55954ab93160; 1 drivers
v0x55954ab66fa0_0 .net *"_s15", 4 0, L_0x55954ab93200; 1 drivers
v0x55954ab67080_0 .net *"_s19", 0 0, L_0x55954ab93430; 1 drivers
v0x55954ab671b0_0 .net *"_s2", 19 0, L_0x55954ab92970; 1 drivers
v0x55954ab67290_0 .net *"_s20", 19 0, L_0x55954ab934d0; 1 drivers
v0x55954ab67370_0 .net *"_s23", 0 0, L_0x55954ab93940; 1 drivers
v0x55954ab67450_0 .net *"_s25", 0 0, L_0x55954ab93a50; 1 drivers
v0x55954ab67530_0 .net *"_s27", 5 0, L_0x55954ab93af0; 1 drivers
v0x55954ab67610_0 .net *"_s29", 3 0, L_0x55954ab93c10; 1 drivers
v0x55954ab676f0_0 .net *"_s33", 0 0, L_0x55954ab93f20; 1 drivers
v0x55954ab677d0_0 .net *"_s35", 0 0, L_0x55954ab93fc0; 1 drivers
v0x55954ab678b0_0 .net *"_s36", 31 0, L_0x55954ab94100; 1 drivers
v0x55954ab67990_0 .net *"_s5", 11 0, L_0x55954ab92bb0; 1 drivers
v0x55954ab67a70_0 .net *"_s9", 0 0, L_0x55954ab92cf0; 1 drivers
v0x55954ab67b50_0 .net "data_10", 31 0, L_0x55954ab93cb0; 1 drivers
v0x55954ab67d40_0 .net "data_678", 31 0, L_0x55954ab92c50; 1 drivers
v0x55954ab67e20_0 .net "data_9", 31 0, L_0x55954ab932f0; 1 drivers
v0x55954ab67f00_0 .net "data_i", 31 0, L_0x55954ab7b0a0; alias, 1 drivers
v0x55954ab67fe0_0 .net "data_o", 31 0, L_0x55954ab94290; alias, 1 drivers
L_0x55954ab92400 .part L_0x55954ab7b0a0, 31, 1;
LS_0x55954ab92970_0_0 .concat [ 1 1 1 1], L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400;
LS_0x55954ab92970_0_4 .concat [ 1 1 1 1], L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400;
LS_0x55954ab92970_0_8 .concat [ 1 1 1 1], L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400;
LS_0x55954ab92970_0_12 .concat [ 1 1 1 1], L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400;
LS_0x55954ab92970_0_16 .concat [ 1 1 1 1], L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400, L_0x55954ab92400;
LS_0x55954ab92970_1_0 .concat [ 4 4 4 4], LS_0x55954ab92970_0_0, LS_0x55954ab92970_0_4, LS_0x55954ab92970_0_8, LS_0x55954ab92970_0_12;
LS_0x55954ab92970_1_4 .concat [ 4 0 0 0], LS_0x55954ab92970_0_16;
L_0x55954ab92970 .concat [ 16 4 0 0], LS_0x55954ab92970_1_0, LS_0x55954ab92970_1_4;
L_0x55954ab92bb0 .part L_0x55954ab7b0a0, 20, 12;
L_0x55954ab92c50 .concat [ 12 20 0 0], L_0x55954ab92bb0, L_0x55954ab92970;
L_0x55954ab92cf0 .part L_0x55954ab7b0a0, 31, 1;
LS_0x55954ab92d90_0_0 .concat [ 1 1 1 1], L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0;
LS_0x55954ab92d90_0_4 .concat [ 1 1 1 1], L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0;
LS_0x55954ab92d90_0_8 .concat [ 1 1 1 1], L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0;
LS_0x55954ab92d90_0_12 .concat [ 1 1 1 1], L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0;
LS_0x55954ab92d90_0_16 .concat [ 1 1 1 1], L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0, L_0x55954ab92cf0;
LS_0x55954ab92d90_1_0 .concat [ 4 4 4 4], LS_0x55954ab92d90_0_0, LS_0x55954ab92d90_0_4, LS_0x55954ab92d90_0_8, LS_0x55954ab92d90_0_12;
LS_0x55954ab92d90_1_4 .concat [ 4 0 0 0], LS_0x55954ab92d90_0_16;
L_0x55954ab92d90 .concat [ 16 4 0 0], LS_0x55954ab92d90_1_0, LS_0x55954ab92d90_1_4;
L_0x55954ab93160 .part L_0x55954ab7b0a0, 25, 7;
L_0x55954ab93200 .part L_0x55954ab7b0a0, 7, 5;
L_0x55954ab932f0 .concat [ 5 7 20 0], L_0x55954ab93200, L_0x55954ab93160, L_0x55954ab92d90;
L_0x55954ab93430 .part L_0x55954ab7b0a0, 31, 1;
LS_0x55954ab934d0_0_0 .concat [ 1 1 1 1], L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430;
LS_0x55954ab934d0_0_4 .concat [ 1 1 1 1], L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430;
LS_0x55954ab934d0_0_8 .concat [ 1 1 1 1], L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430;
LS_0x55954ab934d0_0_12 .concat [ 1 1 1 1], L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430;
LS_0x55954ab934d0_0_16 .concat [ 1 1 1 1], L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430, L_0x55954ab93430;
LS_0x55954ab934d0_1_0 .concat [ 4 4 4 4], LS_0x55954ab934d0_0_0, LS_0x55954ab934d0_0_4, LS_0x55954ab934d0_0_8, LS_0x55954ab934d0_0_12;
LS_0x55954ab934d0_1_4 .concat [ 4 0 0 0], LS_0x55954ab934d0_0_16;
L_0x55954ab934d0 .concat [ 16 4 0 0], LS_0x55954ab934d0_1_0, LS_0x55954ab934d0_1_4;
L_0x55954ab93940 .part L_0x55954ab7b0a0, 31, 1;
L_0x55954ab93a50 .part L_0x55954ab7b0a0, 7, 1;
L_0x55954ab93af0 .part L_0x55954ab7b0a0, 25, 6;
L_0x55954ab93c10 .part L_0x55954ab7b0a0, 8, 4;
LS_0x55954ab93cb0_0_0 .concat [ 4 6 1 1], L_0x55954ab93c10, L_0x55954ab93af0, L_0x55954ab93a50, L_0x55954ab93940;
LS_0x55954ab93cb0_0_4 .concat [ 20 0 0 0], L_0x55954ab934d0;
L_0x55954ab93cb0 .concat [ 12 20 0 0], LS_0x55954ab93cb0_0_0, LS_0x55954ab93cb0_0_4;
L_0x55954ab93f20 .part L_0x55954ab7b0a0, 5, 1;
L_0x55954ab93fc0 .part L_0x55954ab7b0a0, 13, 1;
L_0x55954ab94100 .functor MUXZ 32, L_0x55954ab93cb0, L_0x55954ab932f0, L_0x55954ab93fc0, C4<>;
L_0x55954ab94290 .functor MUXZ 32, L_0x55954ab92c50, L_0x55954ab94100, L_0x55954ab93f20, C4<>;
S_0x55954ab680e0 .scope module, "dcache" "dcache_controller" 3 262, 15 1 0, S_0x55954aad7bb0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 1 "rst_i"
.port_info 2 /INPUT 256 "mem_data_i"
.port_info 3 /INPUT 1 "mem_ack_i"
.port_info 4 /OUTPUT 256 "mem_data_o"
.port_info 5 /OUTPUT 32 "mem_addr_o"
.port_info 6 /OUTPUT 1 "mem_enable_o"
.port_info 7 /OUTPUT 1 "mem_write_o"
.port_info 8 /INPUT 32 "cpu_data_i"
.port_info 9 /INPUT 32 "cpu_addr_i"
.port_info 10 /INPUT 1 "cpu_MemRead_i"
.port_info 11 /INPUT 1 "cpu_MemWrite_i"
.port_info 12 /OUTPUT 32 "cpu_data_o"
.port_info 13 /OUTPUT 1 "cpu_stall_o"
P_0x55954ab34900 .param/l "STATE_IDLE" 0 15 69, C4<000>;
P_0x55954ab34940 .param/l "STATE_MISS" 0 15 73, C4<100>;
P_0x55954ab34980 .param/l "STATE_READMISS" 0 15 70, C4<001>;
P_0x55954ab349c0 .param/l "STATE_READMISSOK" 0 15 71, C4<010>;
P_0x55954ab34a00 .param/l "STATE_WRITEBACK" 0 15 72, C4<011>;
L_0x55954ab96720 .functor OR 1, v0x55954ab59f40_0, v0x55954ab5a110_0, C4<0>, C4<0>;
L_0x55954ab96a80 .functor NOT 1, L_0x55954ab9a910, C4<0>, C4<0>, C4<0>;
L_0x55954ab96b40 .functor AND 1, L_0x55954ab96a80, L_0x55954ab96720, C4<1>, C4<1>;
L_0x55954ab96c50 .functor BUFZ 32, v0x55954ab70570_0, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>;
L_0x55954ab96fd0 .functor BUFZ 4, L_0x55954ab96940, C4<0000>, C4<0000>, C4<0000>;
L_0x55954ab97090 .functor BUFZ 1, L_0x55954ab96720, C4<0>, C4<0>, C4<0>;
L_0x55954ab97190 .functor OR 1, v0x55954ab701f0_0, L_0x55954ab97e70, C4<0>, C4<0>;
L_0x55954ab97520 .functor BUFZ 1, v0x55954ab71110_0, C4<0>, C4<0>, C4<0>;
L_0x55954ab97c70 .functor BUFZ 256, L_0x55954ab9ed20, C4<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>, C4<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>, C4<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>;
L_0x55954ab97d70 .functor BUFZ 1, v0x55954ab71290_0, C4<0>, C4<0>, C4<0>;
L_0x55954ab97e70 .functor AND 1, L_0x55954ab9a910, v0x55954ab5a110_0, C4<1>, C4<1>;
L_0x55954ab98000 .functor BUFZ 1, L_0x55954ab97e70, C4<0>, C4<0>, C4<0>;
L_0x55954ab980e0 .functor BUFZ 256, L_0x55954ab9ed20, C4<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>, C4<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>, C4<0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000>;
v0x55954ab6f550_0 .net *"_s19", 22 0, L_0x55954ab96e50; 1 drivers
L_0x7f8077f25888 .functor BUFT 1, C4<1>, C4<0>, C4<0>, C4<0>;
v0x55954ab6f650_0 .net/2u *"_s28", 0 0, L_0x7f8077f25888; 1 drivers
L_0x7f8077f258d0 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab6f730_0 .net/2u *"_s36", 4 0, L_0x7f8077f258d0; 1 drivers
v0x55954ab6f7f0_0 .net *"_s38", 30 0, L_0x55954ab975e0; 1 drivers
v0x55954ab6f8d0_0 .net *"_s40", 31 0, L_0x55954ab976e0; 1 drivers
L_0x7f8077f25918 .functor BUFT 1, C4<0>, C4<0>, C4<0>, C4<0>;
v0x55954ab6f9b0_0 .net *"_s43", 0 0, L_0x7f8077f25918; 1 drivers
L_0x7f8077f25960 .functor BUFT 1, C4<00000>, C4<0>, C4<0>, C4<0>;
v0x55954ab6fa90_0 .net/2u *"_s44", 4 0, L_0x7f8077f25960; 1 drivers
v0x55954ab6fb70_0 .net *"_s46", 31 0, L_0x55954ab979e0; 1 drivers
v0x55954ab6fc50_0 .net *"_s8", 0 0, L_0x55954ab96a80; 1 drivers
v0x55954ab6fd30_0 .net "cache_dirty", 0 0, L_0x55954ab98000; 1 drivers
v0x55954ab6fdf0_0 .net "cache_sram_data", 255 0, L_0x55954ab97430; 1 drivers
v0x55954ab6feb0_0 .net "cache_sram_enable", 0 0, L_0x55954ab97090; 1 drivers
v0x55954ab6ff80_0 .net "cache_sram_index", 3 0, L_0x55954ab96fd0; 1 drivers
v0x55954ab70050_0 .net "cache_sram_tag", 24 0, L_0x55954ab97250; 1 drivers
v0x55954ab70120_0 .net "cache_sram_write", 0 0, L_0x55954ab97190; 1 drivers
v0x55954ab701f0_0 .var "cache_write", 0 0;
v0x55954ab70290_0 .net "clk_i", 0 0, v0x55954ab79ce0_0; alias, 1 drivers
v0x55954ab70330_0 .net "cpu_MemRead_i", 0 0, v0x55954ab59f40_0; alias, 1 drivers
v0x55954ab70400_0 .net "cpu_MemWrite_i", 0 0, v0x55954ab5a110_0; alias, 1 drivers
v0x55954ab704d0_0 .net "cpu_addr_i", 31 0, v0x55954ab59db0_0; alias, 1 drivers
v0x55954ab70570_0 .var "cpu_data", 31 0;
v0x55954ab70610_0 .net "cpu_data_i", 31 0, v0x55954ab5a6b0_0; alias, 1 drivers
v0x55954ab706e0_0 .net "cpu_data_o", 31 0, L_0x55954ab96c50; alias, 1 drivers
v0x55954ab707b0_0 .net "cpu_index", 3 0, L_0x55954ab96940; 1 drivers
v0x55954ab70870_0 .net "cpu_offset", 4 0, L_0x55954ab969e0; 1 drivers
v0x55954ab70950_0 .net "cpu_req", 0 0, L_0x55954ab96720; 1 drivers
v0x55954ab70a10_0 .net "cpu_stall_o", 0 0, L_0x55954ab96b40; alias, 1 drivers
v0x55954ab70b40_0 .net "cpu_tag", 22 0, L_0x55954ab96790; 1 drivers
v0x55954ab70c20_0 .net "hit", 0 0, L_0x55954ab9a910; 1 drivers
v0x55954ab70cf0_0 .var/i "i", 31 0;
v0x55954ab70db0_0 .net "mem_ack_i", 0 0, L_0x55954aba0800; alias, 1 drivers
v0x55954ab70e70_0 .net "mem_addr_o", 31 0, L_0x55954ab97b40; alias, 1 drivers
v0x55954ab70f50_0 .net "mem_data_i", 255 0, v0x55954ab793b0_0; alias, 1 drivers
v0x55954ab71030_0 .net "mem_data_o", 255 0, L_0x55954ab97c70; alias, 1 drivers
v0x55954ab71110_0 .var "mem_enable", 0 0;
v0x55954ab711d0_0 .net "mem_enable_o", 0 0, L_0x55954ab97520; alias, 1 drivers
v0x55954ab71290_0 .var "mem_write", 0 0;
v0x55954ab71350_0 .net "mem_write_o", 0 0, L_0x55954ab97d70; alias, 1 drivers
v0x55954ab71410_0 .net "r_hit_data", 255 0, L_0x55954ab980e0; 1 drivers
v0x55954ab714f0_0 .net "rst_i", 0 0, v0x55954ab79da0_0; alias, 1 drivers
v0x55954ab71590_0 .net "sram_cache_data", 255 0, L_0x55954ab9ed20; 1 drivers
v0x55954ab71650_0 .net "sram_cache_tag", 24 0, L_0x55954ab9c600; 1 drivers
v0x55954ab71720_0 .net "sram_dirty", 0 0, L_0x55954ab96db0; 1 drivers
v0x55954ab717c0_0 .net "sram_tag", 21 0, L_0x55954ab96f30; 1 drivers
v0x55954ab718a0_0 .net "sram_valid", 0 0, L_0x55954ab96cc0; 1 drivers
v0x55954ab71960_0 .var "state", 2 0;
v0x55954ab71a40_0 .var "w_hit_data", 255 0;
v0x55954ab71b20_0 .var "write_back", 0 0;
v0x55954ab71be0_0 .net "write_hit", 0 0, L_0x55954ab97e70; 1 drivers
E_0x55954ab685f0 .event edge, v0x55954ab5a6b0_0, v0x55954ab71410_0, v0x55954ab70870_0;
E_0x55954ab68650 .event edge, v0x55954ab71410_0, v0x55954ab70870_0;
L_0x55954ab96790 .part v0x55954ab59db0_0, 9, 23;
L_0x55954ab96940 .part v0x55954ab59db0_0, 5, 4;
L_0x55954ab969e0 .part v0x55954ab59db0_0, 0, 5;
L_0x55954ab96cc0 .part L_0x55954ab9c600, 24, 1;
L_0x55954ab96db0 .part L_0x55954ab9c600, 23, 1;
L_0x55954ab96e50 .part L_0x55954ab9c600, 0, 23;
L_0x55954ab96f30 .part L_0x55954ab96e50, 0, 22;
L_0x55954ab97250 .concat [ 23 1 1 0], L_0x55954ab96790, L_0x55954ab98000, L_0x7f8077f25888;
L_0x55954ab97430 .functor MUXZ 256, v0x55954ab793b0_0, v0x55954ab71a40_0, L_0x55954ab9a910, C4<>;
L_0x55954ab975e0 .concat [ 5 4 22 0], L_0x7f8077f258d0, L_0x55954ab96940, L_0x55954ab96f30;
L_0x55954ab976e0 .concat [ 31 1 0 0], L_0x55954ab975e0, L_0x7f8077f25918;
L_0x55954ab979e0 .concat [ 5 4 23 0], L_0x7f8077f25960, L_0x55954ab96940, L_0x55954ab96790;
L_0x55954ab97b40 .functor MUXZ 32, L_0x55954ab979e0, L_0x55954ab976e0, v0x55954ab71b20_0, C4<>;
S_0x55954ab686b0 .scope module, "dcache_sram" "dcache_sram" 15 215, 16 1 0, S_0x55954ab680e0;
.timescale 0 0;
.port_info 0 /INPUT 1 "clk_i"
.port_info 1 /INPUT 1 "rst_i"
.port_info 2 /INPUT 4 "addr_i"
.port_info 3 /INPUT 25 "tag_i"
.port_info 4 /INPUT 256 "data_i"
.port_info 5 /INPUT 1 "enable_i"
.port_info 6 /INPUT 1 "write_i"
.port_info 7 /OUTPUT 25 "tag_o"
.port_info 8 /OUTPUT 256 "data_o"