-
Notifications
You must be signed in to change notification settings - Fork 1
/
test
executable file
·7856 lines (7856 loc) · 387 KB
/
test
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 "0.9.6 " "(v0_9_6)";
:vpi_time_precision - 9;
:vpi_module "system";
:vpi_module "v2005_math";
:vpi_module "va_math";
S_0x13173d0 .scope module, "test_mips" "test_mips" 2 3;
.timescale -9 -9;
v0x161aa90_0 .net "Dev1_Irq", 0 0, v0x13ef4e0_0; 1 drivers
v0x161ab60_0 .net "Dev1_RD", 31 0, L_0x16bc760; 1 drivers
v0x161ac30_0 .net "Dev1_WE", 0 0, L_0x16bbb70; 1 drivers
v0x161ad00_0 .net "Dev2_Irq", 0 0, v0x125fdb0_0; 1 drivers
v0x161add0_0 .net "Dev2_RD", 31 0, L_0x16bd0e0; 1 drivers
v0x161aea0_0 .net "Dev2_WE", 0 0, L_0x15e3510; 1 drivers
v0x161af70_0 .net "DevAddr", 3 2, L_0x16bbf90; 1 drivers
v0x161aff0_0 .net "DevWd", 31 0, L_0x16bda00; 1 drivers
v0x161b8a0_0 .net "HWInt", 7 2, L_0x16bc100; 1 drivers
v0x161b920_0 .net "PrAddr", 31 2, L_0x169f020; 1 drivers
v0x161b9a0_0 .net "PrBe", 3 0, L_0x1677850; 1 drivers
v0x161ba20_0 .net "PrRD", 31 0, L_0x16bbe60; 1 drivers
v0x161baa0_0 .net "PrWD", 31 0, L_0x169f210; 1 drivers
v0x161bb20_0 .var "clk", 0 0;
v0x161bc20_0 .var "clk_i", 0 0;
v0x161bca0_0 .var/i "i", 31 0;
v0x161bba0_0 .var "rst", 0 0;
S_0x14ac770 .scope module, "_mips" "mips" 2 20, 3 2, S_0x13173d0;
.timescale -9 -9;
L_0x1679a40 .functor OR 1, L_0x163ed60, L_0x1613680, C4<0>, C4<0>;
L_0x167aa50 .functor OR 1, v0x161bba0_0, L_0x16a0040, C4<0>, C4<0>;
L_0x167aab0 .functor OR 1, L_0x167aa50, L_0x1613680, C4<0>, C4<0>;
L_0x168b690 .functor OR 1, v0x161bba0_0, L_0x16a0040, C4<0>, C4<0>;
L_0x169ef30 .functor OR 1, v0x161bba0_0, L_0x16a0040, C4<0>, C4<0>;
L_0x1677850 .functor BUFZ 4, L_0x16a94b0, C4<0000>, C4<0000>, C4<0000>;
L_0x169f210 .functor BUFZ 32, L_0x1679650, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>, C4<00000000000000000000000000000000>;
L_0x169f520 .functor AND 1, L_0x16aaa80, L_0x169ffa0, C4<1>, C4<1>;
L_0x16a1790 .functor AND 1, L_0x169f520, L_0x16a16f0, C4<1>, C4<1>;
L_0x16a0350 .functor AND 1, L_0x16a1790, L_0x16a1890, C4<1>, C4<1>;
L_0x16a0550 .functor AND 1, L_0x16a0350, L_0x16a04b0, C4<1>, C4<1>;
L_0x16a0040 .functor AND 1, L_0x16a0550, L_0x16a0650, C4<1>, C4<1>;
L_0x16ad320 .functor AND 1, L_0x16b4600, L_0x16ad280, C4<1>, C4<1>;
v0x1611f30_0 .net "ALUOp", 3 0, L_0x1698bd0; 1 drivers
v0x1612000_0 .net "ALUOutM", 31 0, v0x138d6f0_0; 1 drivers
v0x16120d0_0 .net "ALUOutW", 31 0, v0x13c3010_0; 1 drivers
v0x1612150_0 .net "ALUSrc", 0 0, L_0x16954f0; 1 drivers
v0x1612200_0 .net "BE", 3 0, L_0x16a94b0; 1 drivers
v0x1612740_0 .net "BEExtOp", 1 0, L_0x16a8060; 1 drivers
v0x16127c0_0 .net "BJ_W", 0 0, L_0x16b9a40; 1 drivers
v0x1612840_0 .net "CMPOp", 2 0, L_0x16861a0; 1 drivers
v0x16128c0_0 .net "CMPSrc", 0 0, L_0x1686840; 1 drivers
v0x1612940_0 .net "CP0_WE", 0 0, L_0x16a9ad0; 1 drivers
v0x16129c0_0 .net "EXOut", 1 0, L_0x1697910; 1 drivers
v0x1612a40_0 .net "EXTWbOp", 2 0, L_0x16b74a0; 1 drivers
v0x1612ac0_0 .net "ExtOp", 1 0, L_0x1685650; 1 drivers
v0x1612b40_0 .net "FRSD", 31 0, L_0x1675ef0; 1 drivers
v0x1612c40_0 .net "FRSE", 31 0, L_0x1678660; 1 drivers
v0x1612cc0_0 .net "FRTD", 31 0, L_0x16778e0; 1 drivers
v0x1612bc0_0 .net "FRTE", 31 0, L_0x1679010; 1 drivers
v0x1612dd0_0 .net "FRTM", 31 0, L_0x1679650; 1 drivers
v0x1612d40_0 .net "ForwardRSD", 2 0, L_0x1669f90; 1 drivers
v0x1612ef0_0 .net "ForwardRSE", 2 0, L_0x166f7f0; 1 drivers
v0x1612e50_0 .net "ForwardRTD", 2 0, L_0x166d2a0; 1 drivers
v0x1613020_0 .net "ForwardRTE", 2 0, L_0x1674910; 1 drivers
v0x1612f70_0 .net "ForwardRTM", 1 0, L_0x1676db0; 1 drivers
v0x1613160_0 .net "HILOWe", 0 0, L_0x16966c0; 1 drivers
v0x16130a0_0 .alias "HWInt", 7 2, v0x161b8a0_0;
v0x16132b0_0 .net "IntReq", 0 0, L_0x16a0040; 1 drivers
v0x16131e0_0 .net "JType", 0 0, L_0x1687ae0; 1 drivers
v0x1613410_0 .net "MULDIVOp", 1 0, L_0x16975f0; 1 drivers
v0x1613330_0 .net "MULDIVstart", 0 0, L_0x16970c0; 1 drivers
v0x1613580_0 .net "MemToReg", 1 0, L_0x16b39f0; 1 drivers
v0x1613490_0 .net "NPCOp", 1 0, L_0x1684930; 1 drivers
v0x1613700_0 .alias "PrAddr", 31 2, v0x161b920_0;
v0x1613600_0 .alias "PrBe", 3 0, v0x161b9a0_0;
v0x1613890_0 .alias "PrRD", 31 0, v0x161ba20_0;
v0x1613780_0 .alias "PrWD", 31 0, v0x161baa0_0;
v0x1613a30_0 .net "RegDst", 1 0, L_0x16b6980; 1 drivers
v0x1613910_0 .net "RegWrite", 0 0, L_0x16b4600; 1 drivers
v0x1613be0_0 .net "ShiftSrc", 0 0, L_0x1694080; 1 drivers
v0x1613ab0_0 .net "WriteDataM", 31 0, v0x1413670_0; 1 drivers
v0x1613b60_0 .net "WriteDataW", 31 0, v0x13c7450_0; 1 drivers
v0x1613db0_0 .net *"_s0", 2 0, C4<000>; 1 drivers
v0x1613e30_0 .net *"_s10", 0 0, L_0x1675880; 1 drivers
v0x1613c60_0 .net *"_s100", 0 0, L_0x16791e0; 1 drivers
v0x1613ce0_0 .net *"_s102", 1 0, C4<01>; 1 drivers
v0x1614020_0 .net *"_s104", 0 0, L_0x1678f00; 1 drivers
v0x16140a0_0 .net *"_s106", 31 0, L_0x1679480; 1 drivers
v0x1613eb0_0 .net *"_s110", 0 0, L_0x1679a40; 1 drivers
v0x1613f30_0 .net *"_s116", 32 0, L_0x167b9b0; 1 drivers
v0x16142b0_0 .net *"_s119", 0 0, C4<0>; 1 drivers
v0x1614330_0 .net *"_s12", 2 0, C4<011>; 1 drivers
v0x1614120_0 .net *"_s120", 32 0, C4<000000000000000000000000000000100>; 1 drivers
v0x16141a0_0 .net *"_s122", 32 0, L_0x1679c20; 1 drivers
v0x1614220_0 .net *"_s124", 32 0, L_0x167a8c0; 1 drivers
v0x1614560_0 .net *"_s127", 0 0, C4<0>; 1 drivers
v0x16143b0_0 .net *"_s128", 32 0, L_0x167ab50; 1 drivers
v0x1614430_0 .net *"_s132", 0 0, L_0x167aa50; 1 drivers
v0x16144b0_0 .net *"_s138", 1 0, C4<00>; 1 drivers
v0x16147b0_0 .net *"_s14", 0 0, L_0x16759b0; 1 drivers
v0x16145e0_0 .net *"_s140", 0 0, L_0x167b0c0; 1 drivers
v0x1614660_0 .net *"_s143", 4 0, L_0x167add0; 1 drivers
v0x16146e0_0 .net *"_s144", 1 0, C4<01>; 1 drivers
v0x1614a20_0 .net *"_s146", 0 0, L_0x167b330; 1 drivers
v0x1614830_0 .net *"_s149", 4 0, L_0x167b1b0; 1 drivers
v0x16148b0_0 .net *"_s150", 4 0, C4<11111>; 1 drivers
v0x1614930_0 .net *"_s152", 4 0, L_0x167b290; 1 drivers
v0x1614cb0_0 .net *"_s156", 1 0, C4<11>; 1 drivers
v0x1614aa0_0 .net *"_s158", 1 0, C4<10>; 1 drivers
v0x1614b20_0 .net *"_s16", 31 0, L_0x1675aa0; 1 drivers
v0x1614ba0_0 .net *"_s160", 1 0, C4<01>; 1 drivers
v0x1614c20_0 .net *"_s162", 0 0, L_0x167ba90; 1 drivers
v0x1614f70_0 .net *"_s164", 1 0, C4<00>; 1 drivers
v0x1614ff0_0 .net *"_s166", 1 0, L_0x167b410; 1 drivers
v0x1614d30_0 .net *"_s168", 1 0, L_0x167bd80; 1 drivers
v0x1614db0_0 .net *"_s170", 1 0, L_0x167bfe0; 1 drivers
v0x1614e30_0 .net *"_s174", 32 0, L_0x167bf10; 1 drivers
v0x1614eb0_0 .net *"_s177", 0 0, C4<0>; 1 drivers
v0x16152e0_0 .net *"_s178", 32 0, C4<000000000000000000000000000000100>; 1 drivers
v0x1615360_0 .net *"_s18", 31 0, L_0x1675be0; 1 drivers
v0x1615070_0 .net *"_s180", 32 0, L_0x167c4a0; 1 drivers
v0x16150f0_0 .net *"_s184", 1 0, L_0x167c8d0; 1 drivers
v0x1615170_0 .net *"_s187", 0 0, C4<0>; 1 drivers
v0x16151f0_0 .net *"_s188", 1 0, C4<00>; 1 drivers
v0x1615680_0 .net *"_s190", 0 0, L_0x167c2a0; 1 drivers
v0x1615700_0 .net *"_s193", 3 0, L_0x167c650; 1 drivers
v0x16153e0_0 .net *"_s195", 25 0, L_0x167c740; 1 drivers
v0x1615460_0 .net *"_s196", 1 0, C4<00>; 1 drivers
v0x16154e0_0 .net *"_s198", 31 0, L_0x167dbc0; 1 drivers
v0x1615560_0 .net *"_s2", 0 0, L_0x1675630; 1 drivers
v0x16155e0_0 .net *"_s20", 31 0, L_0x1675db0; 1 drivers
v0x1615a50_0 .net *"_s200", 31 0, L_0x167ca30; 1 drivers
v0x1615780_0 .net *"_s204", 31 0, C4<00000000000000000000000000000000>; 1 drivers
v0x1615800_0 .net *"_s218", 31 0, C4<00000000000000000000000000000100>; 1 drivers
v0x1615880_0 .net *"_s222", 1 0, L_0x163f200; 1 drivers
v0x1615900_0 .net *"_s225", 0 0, C4<0>; 1 drivers
v0x1615980_0 .net *"_s226", 1 0, C4<00>; 1 drivers
v0x1615dd0_0 .net *"_s228", 0 0, L_0x163f380; 1 drivers
v0x1615ad0_0 .net *"_s232", 26 0, C4<000000000000000000000000000>; 1 drivers
v0x1615b50_0 .net *"_s235", 4 0, L_0x168b820; 1 drivers
v0x1615bd0_0 .net *"_s236", 31 0, L_0x168c760; 1 drivers
v0x1615c50_0 .net *"_s24", 2 0, C4<000>; 1 drivers
v0x1615cf0_0 .net *"_s240", 1 0, C4<01>; 1 drivers
v0x1616180_0 .net *"_s242", 0 0, L_0x168b9a0; 1 drivers
v0x1615e50_0 .net *"_s244", 1 0, C4<10>; 1 drivers
v0x1615ef0_0 .net *"_s246", 0 0, L_0x168c580; 1 drivers
v0x1615f90_0 .net *"_s248", 31 0, L_0x168c670; 1 drivers
v0x1616030_0 .net *"_s26", 0 0, L_0x1677ec0; 1 drivers
v0x16160d0_0 .net *"_s260", 31 0, C4<00000000000000000011000000000000>; 1 drivers
v0x1616560_0 .net *"_s266", 32 0, L_0x168de70; 1 drivers
v0x1616200_0 .net *"_s269", 0 0, C4<0>; 1 drivers
v0x1616280_0 .net *"_s270", 32 0, C4<000000000000000000000000000001000>; 1 drivers
v0x1616320_0 .net *"_s272", 32 0, L_0x168dfa0; 1 drivers
v0x16163c0_0 .net *"_s274", 32 0, L_0x169f9a0; 1 drivers
v0x1616460_0 .net *"_s277", 0 0, C4<0>; 1 drivers
v0x1616970_0 .net *"_s278", 32 0, C4<000000000000000000000000000001000>; 1 drivers
v0x16165e0_0 .net *"_s28", 31 0, L_0x1677fb0; 1 drivers
v0x1616660_0 .net *"_s280", 32 0, L_0x16a1510; 1 drivers
v0x1616700_0 .net *"_s282", 32 0, L_0x16a15b0; 1 drivers
v0x16167a0_0 .net *"_s288", 1 0, C4<11>; 1 drivers
v0x1616840_0 .net *"_s293", 0 0, L_0x169ffa0; 1 drivers
v0x16168e0_0 .net *"_s294", 0 0, L_0x169f520; 1 drivers
v0x1616dc0_0 .net *"_s297", 0 0, L_0x16a16f0; 1 drivers
v0x1616e40_0 .net *"_s298", 0 0, L_0x16a1790; 1 drivers
v0x16169f0_0 .net *"_s30", 2 0, C4<001>; 1 drivers
v0x1616a90_0 .net *"_s301", 0 0, L_0x16a1890; 1 drivers
v0x1616b30_0 .net *"_s302", 0 0, L_0x16a0350; 1 drivers
v0x1616bd0_0 .net *"_s305", 0 0, L_0x16a04b0; 1 drivers
v0x1616c70_0 .net *"_s306", 0 0, L_0x16a0550; 1 drivers
v0x1616d10_0 .net *"_s309", 0 0, L_0x16a0650; 1 drivers
v0x16172d0_0 .net *"_s316", 3 0, C4<0000>; 1 drivers
v0x1617350_0 .net *"_s32", 0 0, L_0x1676f90; 1 drivers
v0x1616ec0_0 .net *"_s326", 0 0, C4<0>; 1 drivers
v0x1616f60_0 .net *"_s330", 1 0, C4<00>; 1 drivers
v0x1617000_0 .net *"_s332", 0 0, L_0x16baf60; 1 drivers
v0x16170a0_0 .net *"_s334", 1 0, C4<01>; 1 drivers
v0x1617140_0 .net *"_s336", 0 0, L_0x16bb090; 1 drivers
v0x16171e0_0 .net *"_s338", 31 0, L_0x16ad050; 1 drivers
v0x1617820_0 .net *"_s34", 2 0, C4<010>; 1 drivers
v0x16178a0_0 .net *"_s343", 0 0, L_0x16ad280; 1 drivers
v0x16173d0_0 .net *"_s36", 0 0, L_0x1677100; 1 drivers
v0x1617470_0 .net *"_s38", 2 0, C4<011>; 1 drivers
v0x1617510_0 .net *"_s4", 2 0, C4<001>; 1 drivers
v0x16175b0_0 .net *"_s40", 0 0, L_0x16772a0; 1 drivers
v0x1617650_0 .net *"_s42", 31 0, L_0x1677390; 1 drivers
v0x16176f0_0 .net *"_s44", 31 0, L_0x1677590; 1 drivers
v0x1617790_0 .net *"_s46", 31 0, L_0x1677680; 1 drivers
v0x1617db0_0 .net *"_s50", 2 0, C4<000>; 1 drivers
v0x1617920_0 .net *"_s52", 0 0, L_0x1677a60; 1 drivers
v0x16179c0_0 .net *"_s54", 2 0, C4<001>; 1 drivers
v0x1617a60_0 .net *"_s56", 0 0, L_0x1677bf0; 1 drivers
v0x1617b00_0 .net *"_s58", 2 0, C4<010>; 1 drivers
v0x1617ba0_0 .net *"_s6", 0 0, L_0x1675710; 1 drivers
v0x1617c40_0 .net *"_s60", 0 0, L_0x1677cd0; 1 drivers
v0x1617ce0_0 .net *"_s62", 2 0, C4<011>; 1 drivers
v0x1618300_0 .net *"_s64", 0 0, L_0x1677b50; 1 drivers
v0x1617e30_0 .net *"_s66", 31 0, L_0x1678130; 1 drivers
v0x1617ed0_0 .net *"_s68", 31 0, L_0x1678370; 1 drivers
v0x1617f70_0 .net *"_s70", 31 0, L_0x16784f0; 1 drivers
v0x1618010_0 .net *"_s74", 2 0, C4<000>; 1 drivers
v0x16180b0_0 .net *"_s76", 0 0, L_0x1679700; 1 drivers
v0x1618150_0 .net *"_s78", 2 0, C4<001>; 1 drivers
v0x16181f0_0 .net *"_s8", 2 0, C4<010>; 1 drivers
v0x1618890_0 .net *"_s80", 0 0, L_0x1678590; 1 drivers
v0x1618380_0 .net *"_s82", 2 0, C4<010>; 1 drivers
v0x1618400_0 .net *"_s84", 0 0, L_0x1678950; 1 drivers
v0x16184a0_0 .net *"_s86", 2 0, C4<011>; 1 drivers
v0x1618540_0 .net *"_s88", 0 0, L_0x1678b30; 1 drivers
v0x16185e0_0 .net *"_s90", 31 0, L_0x1678c20; 1 drivers
v0x1618680_0 .net *"_s92", 31 0, L_0x1678a90; 1 drivers
v0x1618720_0 .net *"_s94", 31 0, L_0x1678e60; 1 drivers
v0x16187c0_0 .net *"_s98", 1 0, C4<00>; 1 drivers
v0x1618e70_0 .net "aluout", 31 0, L_0x169dc30; 1 drivers
v0x1618ef0_0 .net "alusrc", 31 0, L_0x168bb10; 1 drivers
v0x1618910_0 .net "br", 0 0, L_0x1688f90; 1 drivers
v0x1618990_0 .net "busy", 0 0, v0x1559c80_0; 1 drivers
v0x1618a10_0 .net "clk", 0 0, v0x161bb20_0; 1 drivers
v0x1618a90_0 .net "cmpsrc", 31 0, L_0x167e0a0; 1 drivers
v0x1618b10_0 .net "cp0_out", 31 0, L_0x16aa9e0; 1 drivers
v0x1618bc0_0 .net "cp0_pc", 31 0, L_0x169fc40; 1 drivers
v0x1618c70_0 .net "epc", 31 0, L_0x16aab80; 1 drivers
v0x1618d20_0 .net "exout", 31 0, L_0x168c9e0; 1 drivers
v0x1618dd0_0 .net "extwbout", 31 0, L_0x16badd0; 1 drivers
v0x1619520_0 .net "hi", 31 0, L_0x169ec70; 1 drivers
v0x1618f70_0 .net "hilo", 0 0, L_0x1696a90; 1 drivers
v0x1619040_0 .net "imm", 31 0, L_0x168a550; 1 drivers
v0x1619110_0 .net "immE", 31 0, v0x1535ec0_0; 1 drivers
v0x1619190_0 .net "instr", 31 0, L_0x167b790; 1 drivers
v0x1619260_0 .net "instrD", 31 0, v0x15b5430_0; 1 drivers
v0x16192e0_0 .net "instrE", 31 0, v0x1535f40_0; 1 drivers
v0x1619360_0 .net "instrM", 31 0, v0x138d770_0; 1 drivers
v0x16193e0_0 .net "instrW", 31 0, v0x13c3090_0; 1 drivers
v0x1619460_0 .net "irq", 0 0, L_0x16aaa80; 1 drivers
v0x1619ba0_0 .net "isDM", 0 0, L_0x169f340; 1 drivers
v0x16195a0_0 .net "isERET", 0 0, L_0x1685960; 1 drivers
v0x1619620_0 .net "isERET_e", 0 0, L_0x1613680; 1 drivers
v0x16196a0_0 .net "isERET_m", 0 0, L_0x16a9b80; 1 drivers
v0x1619720_0 .net "isERET_w", 0 0, L_0x16b9b80; 1 drivers
v0x16197f0_0 .net "isMFC0", 0 0, L_0x16860f0; 1 drivers
v0x1619870_0 .net "jtypeaddr", 31 0, L_0x167cb70; 1 drivers
v0x1619920_0 .net "lo", 31 0, L_0x169ed10; 1 drivers
v0x16199d0_0 .net "memaddrE", 1 0, L_0x169f430; 1 drivers
v0x1619a80_0 .net "memaddrW", 1 0, v0x13c7df0_0; 1 drivers
v0x161a270_0 .net "memout", 31 0, L_0x16a8e50; 1 drivers
v0x1619c20_0 .net "memstage_out", 31 0, L_0x169fd80; 1 drivers
v0x1619cd0_0 .net "npc_pc", 31 0, L_0x168b2a0; 1 drivers
v0x1619d50_0 .net "over", 0 0, L_0x169c660; 1 drivers
v0x1619dd0_0 .net "pcD", 31 0, L_0x167c7e0; 1 drivers
v0x1619e50_0 .net "pc_im", 31 0, L_0x167a650; 1 drivers
v0x1619f00_0 .net "pcplus", 31 0, L_0x1679950; 1 drivers
v0x1619fd0_0 .net "pcplusD", 31 0, v0x15b54b0_0; 1 drivers
v0x161a0a0_0 .net "pcplusE", 31 0, v0x1535820_0; 1 drivers
v0x161a170_0 .net "pcplusM", 31 0, v0x14135f0_0; 1 drivers
v0x161a990_0 .net "pcplusW", 31 0, v0x13c7e70_0; 1 drivers
v0x161a2f0_0 .net "pctmp", 31 0, L_0x167ac90; 1 drivers
v0x161a370_0 .net "rd1", 31 0, L_0x1686c70; 1 drivers
v0x161a440_0 .net "rd1E", 31 0, v0x15358a0_0; 1 drivers
v0x161a4c0_0 .net "rd2", 31 0, L_0x1687470; 1 drivers
v0x161a590_0 .net "rd2E", 31 0, v0x1535180_0; 1 drivers
v0x161a610_0 .net "real_beextop", 1 0, L_0x169feb0; 1 drivers
v0x161a690_0 .net "real_npcop", 1 0, L_0x167c120; 1 drivers
v0x161a710_0 .net "real_regwrite", 0 0, L_0x16ad320; 1 drivers
v0x161a790_0 .net "regdst", 4 0, L_0x167b610; 1 drivers
v0x161a810_0 .net "rst", 0 0, v0x161bba0_0; 1 drivers
v0x161a890_0 .net "shiftsrc", 31 0, L_0x168c8a0; 1 drivers
v0x161b110_0 .net "stall", 0 0, L_0x163ed60; 1 drivers
v0x161aa10_0 .net "wd", 31 0, L_0x16ad140; 1 drivers
L_0x1675630 .cmp/eq 3, L_0x1669f90, C4<000>;
L_0x1675710 .cmp/eq 3, L_0x1669f90, C4<001>;
L_0x1675880 .cmp/eq 3, L_0x1669f90, C4<010>;
L_0x16759b0 .cmp/eq 3, L_0x1669f90, C4<011>;
L_0x1675aa0 .functor MUXZ 32, v0x13c7e70_0, v0x14135f0_0, L_0x16759b0, C4<>;
L_0x1675be0 .functor MUXZ 32, L_0x1675aa0, L_0x16ad140, L_0x1675880, C4<>;
L_0x1675db0 .functor MUXZ 32, L_0x1675be0, v0x138d6f0_0, L_0x1675710, C4<>;
L_0x1675ef0 .functor MUXZ 32, L_0x1675db0, L_0x1686c70, L_0x1675630, C4<>;
L_0x1677ec0 .cmp/eq 3, L_0x166d2a0, C4<000>;
L_0x1677fb0 .functor MUXZ 32, L_0x1687470, L_0x16aa9e0, L_0x16860f0, C4<>;
L_0x1676f90 .cmp/eq 3, L_0x166d2a0, C4<001>;
L_0x1677100 .cmp/eq 3, L_0x166d2a0, C4<010>;
L_0x16772a0 .cmp/eq 3, L_0x166d2a0, C4<011>;
L_0x1677390 .functor MUXZ 32, v0x13c7e70_0, v0x14135f0_0, L_0x16772a0, C4<>;
L_0x1677590 .functor MUXZ 32, L_0x1677390, L_0x16ad140, L_0x1677100, C4<>;
L_0x1677680 .functor MUXZ 32, L_0x1677590, v0x138d6f0_0, L_0x1676f90, C4<>;
L_0x16778e0 .functor MUXZ 32, L_0x1677680, L_0x1677fb0, L_0x1677ec0, C4<>;
L_0x1677a60 .cmp/eq 3, L_0x166f7f0, C4<000>;
L_0x1677bf0 .cmp/eq 3, L_0x166f7f0, C4<001>;
L_0x1677cd0 .cmp/eq 3, L_0x166f7f0, C4<010>;
L_0x1677b50 .cmp/eq 3, L_0x166f7f0, C4<011>;
L_0x1678130 .functor MUXZ 32, v0x13c7e70_0, v0x14135f0_0, L_0x1677b50, C4<>;
L_0x1678370 .functor MUXZ 32, L_0x1678130, L_0x16ad140, L_0x1677cd0, C4<>;
L_0x16784f0 .functor MUXZ 32, L_0x1678370, v0x138d6f0_0, L_0x1677bf0, C4<>;
L_0x1678660 .functor MUXZ 32, L_0x16784f0, v0x15358a0_0, L_0x1677a60, C4<>;
L_0x1679700 .cmp/eq 3, L_0x1674910, C4<000>;
L_0x1678590 .cmp/eq 3, L_0x1674910, C4<001>;
L_0x1678950 .cmp/eq 3, L_0x1674910, C4<010>;
L_0x1678b30 .cmp/eq 3, L_0x1674910, C4<011>;
L_0x1678c20 .functor MUXZ 32, v0x13c7e70_0, v0x14135f0_0, L_0x1678b30, C4<>;
L_0x1678a90 .functor MUXZ 32, L_0x1678c20, L_0x16ad140, L_0x1678950, C4<>;
L_0x1678e60 .functor MUXZ 32, L_0x1678a90, v0x138d6f0_0, L_0x1678590, C4<>;
L_0x1679010 .functor MUXZ 32, L_0x1678e60, v0x1535180_0, L_0x1679700, C4<>;
L_0x16791e0 .cmp/eq 2, L_0x1676db0, C4<00>;
L_0x1678f00 .cmp/eq 2, L_0x1676db0, C4<01>;
L_0x1679480 .functor MUXZ 32, v0x13c7e70_0, L_0x16ad140, L_0x1678f00, C4<>;
L_0x1679650 .functor MUXZ 32, L_0x1679480, v0x1413670_0, L_0x16791e0, C4<>;
L_0x1679b30 .reduce/nor L_0x1679a40;
L_0x167b880 .part L_0x167a650, 2, 13;
L_0x167b9b0 .concat [ 32 1 0 0], L_0x168b2a0, C4<0>;
L_0x1679c20 .arith/sum 33, L_0x167b9b0, C4<000000000000000000000000000000100>;
L_0x167a8c0 .concat [ 32 1 0 0], L_0x1679950, C4<0>;
L_0x167ab50 .functor MUXZ 33, L_0x167a8c0, L_0x1679c20, L_0x1613680, C4<>;
L_0x167ac90 .part L_0x167ab50, 0, 32;
L_0x167b020 .reduce/nor L_0x163ed60;
L_0x167b0c0 .cmp/eq 2, L_0x16b6980, C4<00>;
L_0x167add0 .part v0x13c3090_0, 16, 5;
L_0x167b330 .cmp/eq 2, L_0x16b6980, C4<01>;
L_0x167b1b0 .part v0x13c3090_0, 11, 5;
L_0x167b290 .functor MUXZ 5, C4<11111>, L_0x167b1b0, L_0x167b330, C4<>;
L_0x167b610 .functor MUXZ 5, L_0x167b290, L_0x167add0, L_0x167b0c0, C4<>;
L_0x167ba90 .cmp/ne 2, L_0x1684930, C4<01>;
L_0x167b410 .functor MUXZ 2, C4<00>, L_0x1684930, L_0x1688f90, C4<>;
L_0x167bd80 .functor MUXZ 2, L_0x167b410, L_0x1684930, L_0x167ba90, C4<>;
L_0x167bfe0 .functor MUXZ 2, L_0x167bd80, C4<10>, L_0x1685960, C4<>;
L_0x167c120 .functor MUXZ 2, L_0x167bfe0, C4<11>, L_0x16a0040, C4<>;
L_0x167bf10 .concat [ 32 1 0 0], v0x15b54b0_0, C4<0>;
L_0x167c4a0 .arith/sub 33, L_0x167bf10, C4<000000000000000000000000000000100>;
L_0x167c7e0 .part L_0x167c4a0, 0, 32;
L_0x167c8d0 .concat [ 1 1 0 0], L_0x1687ae0, C4<0>;
L_0x167c2a0 .cmp/eq 2, L_0x167c8d0, C4<00>;
L_0x167c650 .part L_0x167c7e0, 28, 4;
L_0x167c740 .part v0x15b5430_0, 0, 26;
L_0x167dbc0 .concat [ 2 26 4 0], C4<00>, L_0x167c740, L_0x167c650;
L_0x167ca30 .functor MUXZ 32, L_0x1675ef0, L_0x167dbc0, L_0x167c2a0, C4<>;
L_0x167cb70 .functor MUXZ 32, L_0x167ca30, L_0x16aab80, L_0x1685960, C4<>;
L_0x167e0a0 .functor MUXZ 32, L_0x16778e0, C4<00000000000000000000000000000000>, L_0x1686840, C4<>;
L_0x1687710 .part v0x15b5430_0, 21, 5;
L_0x16879e0 .part v0x15b5430_0, 16, 5;
L_0x168a750 .part v0x15b5430_0, 0, 16;
L_0x168b420 .part v0x15b5430_0, 0, 16;
L_0x168b730 .arith/sum 32, v0x15b54b0_0, C4<00000000000000000000000000000100>;
L_0x163f200 .concat [ 1 1 0 0], L_0x16954f0, C4<0>;
L_0x163f380 .cmp/eq 2, L_0x163f200, C4<00>;
L_0x168bb10 .functor MUXZ 32, v0x1535ec0_0, L_0x1679010, L_0x163f380, C4<>;
L_0x168b820 .part v0x1535f40_0, 6, 5;
L_0x168c760 .concat [ 5 27 0 0], L_0x168b820, C4<000000000000000000000000000>;
L_0x168c8a0 .functor MUXZ 32, L_0x1678660, L_0x168c760, L_0x1694080, C4<>;
L_0x168b9a0 .cmp/eq 2, L_0x1697910, C4<01>;
L_0x168c580 .cmp/eq 2, L_0x1697910, C4<10>;
L_0x168c670 .functor MUXZ 32, L_0x169dc30, L_0x169ec70, L_0x168c580, C4<>;
L_0x168c9e0 .functor MUXZ 32, L_0x168c670, L_0x169ed10, L_0x168b9a0, C4<>;
L_0x169f020 .part v0x138d6f0_0, 2, 30;
L_0x169f340 .cmp/gt 32, C4<00000000000000000011000000000000>, v0x138d6f0_0;
L_0x169f430 .part v0x138d6f0_0, 0, 2;
L_0x168de70 .concat [ 32 1 0 0], v0x13c7e70_0, C4<0>;
L_0x168dfa0 .arith/sub 33, L_0x168de70, C4<000000000000000000000000000001000>;
L_0x169f9a0 .concat [ 32 1 0 0], v0x14135f0_0, C4<0>;
L_0x16a1510 .arith/sub 33, L_0x169f9a0, C4<000000000000000000000000000001000>;
L_0x16a15b0 .functor MUXZ 33, L_0x16a1510, L_0x168dfa0, L_0x16b9a40, C4<>;
L_0x169fc40 .part L_0x16a15b0, 0, 32;
L_0x169fd80 .functor MUXZ 32, L_0x16bbe60, L_0x16a8e50, L_0x169f340, C4<>;
L_0x169feb0 .functor MUXZ 2, L_0x16a8060, C4<11>, L_0x16a0040, C4<>;
L_0x169ffa0 .reduce/nor L_0x163ed60;
L_0x16a16f0 .reduce/nor L_0x1685960;
L_0x16a1890 .reduce/nor L_0x1613680;
L_0x16a04b0 .reduce/nor L_0x16a9b80;
L_0x16a0650 .reduce/nor L_0x16b9b80;
L_0x16a96c0 .part v0x138d6f0_0, 0, 2;
L_0x16a9850 .part v0x138d6f0_0, 2, 11;
L_0x16a06f0 .functor MUXZ 4, L_0x16a94b0, C4<0000>, L_0x16a0040, C4<>;
L_0x16ab200 .part v0x15b5430_0, 16, 5;
L_0x16ab5e0 .part v0x138d770_0, 11, 5;
L_0x16acfb0 .functor MUXZ 1, L_0x16a9ad0, C4<0>, L_0x16a0040, C4<>;
L_0x16baf60 .cmp/eq 2, L_0x16b39f0, C4<00>;
L_0x16bb090 .cmp/eq 2, L_0x16b39f0, C4<01>;
L_0x16ad050 .functor MUXZ 32, v0x13c7e70_0, L_0x16badd0, L_0x16bb090, C4<>;
L_0x16ad140 .functor MUXZ 32, L_0x16ad050, v0x13c3010_0, L_0x16baf60, C4<>;
L_0x16ad280 .reduce/nor L_0x16a0040;
S_0x15ed880 .scope module, "_hazard" "hazard" 3 54, 4 5, S_0x14ac770;
.timescale -9 -9;
L_0x1639e30 .functor OR 1, L_0x1624f20, L_0x1625020, C4<0>, C4<0>;
L_0x1639e90 .functor OR 1, L_0x162f170, L_0x162f470, C4<0>, C4<0>;
L_0x1639ef0 .functor OR 1, L_0x1639440, L_0x1639540, C4<0>, C4<0>;
L_0x1639f50 .functor OR 1, L_0x16970c0, v0x1559c80_0, C4<0>, C4<0>;
L_0x163a2c0 .functor AND 1, L_0x16257d0, L_0x1639f50, C4<1>, C4<1>;
L_0x1637b80 .functor AND 1, L_0x1639e30, L_0x163a3c0, C4<1>, C4<1>;
L_0x163a730 .functor AND 1, L_0x162e250, L_0x163a5f0, C4<1>, C4<1>;
L_0x163aab0 .functor AND 1, L_0x162e780, L_0x163a920, C4<1>, C4<1>;
L_0x163abb0 .functor OR 1, L_0x163a730, L_0x163aab0, C4<0>, C4<0>;
L_0x163acb0 .functor OR 1, L_0x162ead0, L_0x162f6e0, C4<0>, C4<0>;
L_0x163afb0 .functor AND 1, L_0x163acb0, L_0x163af10, C4<1>, C4<1>;
L_0x163b0b0 .functor OR 1, L_0x163abb0, L_0x163afb0, C4<0>, C4<0>;
L_0x163ad10 .functor OR 1, L_0x1638be0, L_0x1639800, C4<0>, C4<0>;
L_0x163aeb0 .functor AND 1, L_0x163ad10, L_0x163b3d0, C4<1>, C4<1>;
L_0x163b6b0 .functor OR 1, L_0x163b0b0, L_0x163aeb0, C4<0>, C4<0>;
L_0x163b7b0 .functor AND 1, L_0x1637b80, L_0x163b6b0, C4<1>, C4<1>;
L_0x163b1b0 .functor AND 1, L_0x1624ae0, L_0x163b9e0, C4<1>, C4<1>;
L_0x163bd90 .functor AND 1, L_0x162e250, L_0x163bcf0, C4<1>, C4<1>;
L_0x163bfc0 .functor AND 1, L_0x162e780, L_0x163c070, C4<1>, C4<1>;
L_0x163c2b0 .functor OR 1, L_0x163bd90, L_0x163bfc0, C4<0>, C4<0>;
L_0x163be80 .functor OR 1, L_0x162ead0, L_0x162f6e0, C4<0>, C4<0>;
L_0x163c740 .functor AND 1, L_0x163be80, L_0x163c160, C4<1>, C4<1>;
L_0x163c360 .functor OR 1, L_0x163c2b0, L_0x163c740, C4<0>, C4<0>;
L_0x163c950 .functor OR 1, L_0x1638be0, L_0x1639800, C4<0>, C4<0>;
L_0x163cba0 .functor AND 1, L_0x163c950, L_0x163cc80, C4<1>, C4<1>;
L_0x163ce60 .functor OR 1, L_0x163c360, L_0x163cba0, C4<0>, C4<0>;
L_0x163cad0 .functor AND 1, L_0x163b1b0, L_0x163ce60, C4<1>, C4<1>;
L_0x163d090 .functor OR 1, L_0x162ead0, L_0x162f6e0, C4<0>, C4<0>;
L_0x163d470 .functor OR 1, L_0x163cd20, L_0x163d580, C4<0>, C4<0>;
L_0x163d790 .functor AND 1, L_0x163d090, L_0x163d470, C4<1>, C4<1>;
L_0x163d0f0 .functor AND 1, L_0x1623e40, L_0x163d790, C4<1>, C4<1>;
L_0x163d990 .functor OR 1, L_0x162ead0, L_0x162f6e0, C4<0>, C4<0>;
L_0x163dcd0 .functor AND 1, L_0x163d990, L_0x163d670, C4<1>, C4<1>;
L_0x163ddd0 .functor AND 1, L_0x1624370, L_0x163dcd0, C4<1>, C4<1>;
L_0x163d9f0 .functor OR 1, L_0x162ead0, L_0x162f6e0, C4<0>, C4<0>;
L_0x163dfa0 .functor AND 1, L_0x163d9f0, L_0x163e0e0, C4<1>, C4<1>;
L_0x163de80 .functor AND 1, L_0x16246c0, L_0x163dfa0, C4<1>, C4<1>;
L_0x163df30 .functor OR 1, L_0x162ead0, L_0x162f6e0, C4<0>, C4<0>;
L_0x163c4b0 .functor AND 1, L_0x163df30, L_0x163e1d0, C4<1>, C4<1>;
L_0x163e960 .functor AND 1, L_0x1624830, L_0x163c4b0, C4<1>, C4<1>;
L_0x163e670 .functor OR 1, L_0x163b7b0, L_0x163d0f0, C4<0>, C4<0>;
L_0x163eb60 .functor OR 1, L_0x163e670, L_0x163ddd0, C4<0>, C4<0>;
L_0x163ea10 .functor OR 1, L_0x163eb60, L_0x163de80, C4<0>, C4<0>;
L_0x163edc0 .functor OR 1, L_0x163ea10, L_0x163e960, C4<0>, C4<0>;
L_0x163ec60 .functor OR 1, L_0x163edc0, L_0x163cad0, C4<0>, C4<0>;
L_0x163ed60 .functor OR 1, L_0x163ec60, L_0x163a2c0, C4<0>, C4<0>;
v0x160cef0_0 .net *"_s100", 0 0, L_0x163c950; 1 drivers
v0x160cf70_0 .net *"_s103", 4 0, L_0x163c840; 1 drivers
v0x160cff0_0 .net *"_s105", 4 0, L_0x163c670; 1 drivers
v0x160d4d0_0 .net *"_s106", 0 0, L_0x163cc80; 1 drivers
v0x160d550_0 .net *"_s108", 0 0, L_0x163cba0; 1 drivers
v0x160d5d0_0 .net *"_s11", 4 0, L_0x163a320; 1 drivers
v0x160d650_0 .net *"_s110", 0 0, L_0x163ce60; 1 drivers
v0x160d6d0_0 .net *"_s114", 0 0, L_0x163d090; 1 drivers
v0x160d750_0 .net *"_s117", 4 0, L_0x163cf60; 1 drivers
v0x160d7d0_0 .net *"_s119", 4 0, L_0x163d1e0; 1 drivers
v0x160d850_0 .net *"_s12", 4 0, C4<00000>; 1 drivers
v0x160d8d0_0 .net *"_s120", 0 0, L_0x163cd20; 1 drivers
v0x160d950_0 .net *"_s123", 4 0, L_0x163d3d0; 1 drivers
v0x160d9d0_0 .net *"_s125", 4 0, L_0x163d280; 1 drivers
v0x160dad0_0 .net *"_s126", 0 0, L_0x163d580; 1 drivers
v0x160db50_0 .net *"_s128", 0 0, L_0x163d470; 1 drivers
v0x160da50_0 .net *"_s130", 0 0, L_0x163d790; 1 drivers
v0x160dc60_0 .net *"_s134", 0 0, L_0x163d990; 1 drivers
v0x160dbd0_0 .net *"_s137", 4 0, L_0x163d890; 1 drivers
v0x160dd80_0 .net *"_s139", 4 0, L_0x163db00; 1 drivers
v0x160dce0_0 .net *"_s14", 0 0, L_0x163a3c0; 1 drivers
v0x160deb0_0 .net *"_s140", 0 0, L_0x163d670; 1 drivers
v0x160de00_0 .net *"_s142", 0 0, L_0x163dcd0; 1 drivers
v0x160dff0_0 .net *"_s146", 0 0, L_0x163d9f0; 1 drivers
v0x160df30_0 .net *"_s149", 4 0, L_0x163da50; 1 drivers
v0x160e140_0 .net *"_s151", 4 0, L_0x163dba0; 1 drivers
v0x160e070_0 .net *"_s152", 0 0, L_0x163e0e0; 1 drivers
v0x160e2a0_0 .net *"_s154", 0 0, L_0x163dfa0; 1 drivers
v0x160e1c0_0 .net *"_s158", 0 0, L_0x163df30; 1 drivers
v0x160e410_0 .net *"_s16", 0 0, L_0x1637b80; 1 drivers
v0x160e320_0 .net *"_s161", 4 0, L_0x163c410; 1 drivers
v0x160e590_0 .net *"_s163", 4 0, L_0x163e320; 1 drivers
v0x160e490_0 .net *"_s164", 0 0, L_0x163e1d0; 1 drivers
v0x160e510_0 .net *"_s166", 0 0, L_0x163c4b0; 1 drivers
v0x160e730_0 .net *"_s170", 0 0, L_0x163e670; 1 drivers
v0x160e7b0_0 .net *"_s172", 0 0, L_0x163eb60; 1 drivers
v0x160e610_0 .net *"_s174", 0 0, L_0x163ea10; 1 drivers
v0x160e690_0 .net *"_s176", 0 0, L_0x163edc0; 1 drivers
v0x160e970_0 .net *"_s178", 0 0, L_0x163ec60; 1 drivers
v0x160e9f0_0 .net *"_s19", 4 0, L_0x163a4b0; 1 drivers
v0x160e830_0 .net *"_s21", 4 0, L_0x163a550; 1 drivers
v0x160e8b0_0 .net *"_s22", 0 0, L_0x163a5f0; 1 drivers
v0x160ebd0_0 .net *"_s24", 0 0, L_0x163a730; 1 drivers
v0x160ec50_0 .net *"_s27", 4 0, L_0x163a7e0; 1 drivers
v0x160ea70_0 .net *"_s29", 4 0, L_0x163a880; 1 drivers
v0x160eaf0_0 .net *"_s30", 0 0, L_0x163a920; 1 drivers
v0x160ee50_0 .net *"_s32", 0 0, L_0x163aab0; 1 drivers
v0x160eed0_0 .net *"_s34", 0 0, L_0x163abb0; 1 drivers
v0x160ecd0_0 .net *"_s36", 0 0, L_0x163acb0; 1 drivers
v0x160ed50_0 .net *"_s39", 4 0, L_0x163ad70; 1 drivers
v0x160f0f0_0 .net *"_s41", 4 0, L_0x163ae10; 1 drivers
v0x160f170_0 .net *"_s42", 0 0, L_0x163af10; 1 drivers
v0x160ef50_0 .net *"_s44", 0 0, L_0x163afb0; 1 drivers
v0x160eff0_0 .net *"_s46", 0 0, L_0x163b0b0; 1 drivers
v0x160f3b0_0 .net *"_s48", 0 0, L_0x163ad10; 1 drivers
v0x160f430_0 .net *"_s51", 4 0, L_0x163b220; 1 drivers
v0x160f1f0_0 .net *"_s53", 4 0, L_0x163b330; 1 drivers
v0x160f290_0 .net *"_s54", 0 0, L_0x163b3d0; 1 drivers
v0x160f330_0 .net *"_s56", 0 0, L_0x163aeb0; 1 drivers
v0x160f690_0 .net *"_s58", 0 0, L_0x163b6b0; 1 drivers
v0x160f4b0_0 .net *"_s6", 0 0, L_0x1639f50; 1 drivers
v0x160f550_0 .net *"_s63", 4 0, L_0x163b940; 1 drivers
v0x160f5f0_0 .net *"_s64", 4 0, C4<00000>; 1 drivers
v0x160f910_0 .net *"_s66", 0 0, L_0x163b9e0; 1 drivers
v0x160f710_0 .net *"_s68", 0 0, L_0x163b1b0; 1 drivers
v0x160f7b0_0 .net *"_s71", 4 0, L_0x163bb10; 1 drivers
v0x160f850_0 .net *"_s73", 4 0, L_0x163bbb0; 1 drivers
v0x160fbb0_0 .net *"_s74", 0 0, L_0x163bcf0; 1 drivers
v0x160f990_0 .net *"_s76", 0 0, L_0x163bd90; 1 drivers
v0x160fa30_0 .net *"_s79", 4 0, L_0x163bf20; 1 drivers
v0x160fad0_0 .net *"_s81", 4 0, L_0x163bc50; 1 drivers
v0x160fe70_0 .net *"_s82", 0 0, L_0x163c070; 1 drivers
v0x160fc30_0 .net *"_s84", 0 0, L_0x163bfc0; 1 drivers
v0x160fcb0_0 .net *"_s86", 0 0, L_0x163c2b0; 1 drivers
v0x160fd50_0 .net *"_s88", 0 0, L_0x163be80; 1 drivers
v0x160fdf0_0 .net *"_s91", 4 0, L_0x163c530; 1 drivers
v0x1610160_0 .net *"_s93", 4 0, L_0x163c5d0; 1 drivers
v0x16101e0_0 .net *"_s94", 0 0, L_0x163c160; 1 drivers
v0x160fef0_0 .net *"_s96", 0 0, L_0x163c740; 1 drivers
v0x160ff90_0 .net *"_s98", 0 0, L_0x163c360; 1 drivers
v0x1610030_0 .net "brs_d", 0 0, L_0x1624f20; 1 drivers
v0x16100e0_0 .net "brs_e", 0 0, L_0x162f170; 1 drivers
v0x1610500_0 .net "brs_m", 0 0, L_0x1639440; 1 drivers
v0x1610580_0 .net "brt_d", 0 0, L_0x1624ae0; 1 drivers
v0x1610260_0 .net "brt_e", 0 0, L_0x162eef0; 1 drivers
v0x1610310_0 .net "brt_m", 0 0, L_0x1639000; 1 drivers
v0x16103c0_0 .alias "busy", 0 0, v0x1618990_0;
v0x1610470_0 .net "cal_i_d", 0 0, L_0x1624370; 1 drivers
v0x16108d0_0 .net "cal_i_e", 0 0, L_0x162e780; 1 drivers
v0x1610950_0 .net "cal_i_m", 0 0, L_0x1638890; 1 drivers
v0x1610600_0 .net "cal_r_d", 0 0, L_0x1623e40; 1 drivers
v0x16106b0_0 .net "cal_r_e", 0 0, L_0x162e250; 1 drivers
v0x1610760_0 .net "cal_r_m", 0 0, L_0x1638360; 1 drivers
v0x1610810_0 .alias "instrD", 31 0, v0x1619260_0;
v0x1610cd0_0 .alias "instrE", 31 0, v0x16192e0_0;
v0x1610d50_0 .alias "instrM", 31 0, v0x1619360_0;
v0x16109d0_0 .net "jal_d", 0 0, L_0x1624dc0; 1 drivers
v0x1610a80_0 .net "jal_e", 0 0, L_0x162f310; 1 drivers
v0x1610b30_0 .net "jal_m", 0 0, L_0x16392e0; 1 drivers
v0x1610be0_0 .net "jorb_d", 0 0, L_0x1639e30; 1 drivers
v0x1611100_0 .net "jorb_e", 0 0, L_0x1639e90; 1 drivers
v0x1611180_0 .net "jorb_m", 0 0, L_0x1639ef0; 1 drivers
v0x1610dd0_0 .net "jr_d", 0 0, L_0x1625020; 1 drivers
v0x1610e80_0 .net "jr_e", 0 0, L_0x162f470; 1 drivers
v0x1610f30_0 .net "jr_m", 0 0, L_0x1639540; 1 drivers
v0x1610fe0_0 .net "ld_d", 0 0, L_0x16246c0; 1 drivers
v0x1611560_0 .net "ld_e", 0 0, L_0x162ead0; 1 drivers
v0x16115e0_0 .net "ld_m", 0 0, L_0x1638be0; 1 drivers
v0x1611200_0 .net "mfc0_d", 0 0, L_0x16252e0; 1 drivers
v0x16112b0_0 .net "mfc0_e", 0 0, L_0x162f6e0; 1 drivers
v0x1611360_0 .net "mfc0_m", 0 0, L_0x1639800; 1 drivers
v0x1611410_0 .net "mtc0_d", 0 0, L_0x1624e20; 1 drivers
v0x16114c0_0 .net "mtc0_e", 0 0, L_0x162f370; 1 drivers
v0x16119f0_0 .net "mtc0_m", 0 0, L_0x1639340; 1 drivers
v0x1611660_0 .net "muldiv_d", 0 0, L_0x16257d0; 1 drivers
v0x1611710_0 .net "muldiv_e", 0 0, L_0x162fbd0; 1 drivers
v0x16117c0_0 .net "muldiv_m", 0 0, L_0x1639cf0; 1 drivers
v0x1611870_0 .net "st_d", 0 0, L_0x1624830; 1 drivers
v0x1611920_0 .net "st_e", 0 0, L_0x162ec40; 1 drivers
v0x1611e30_0 .net "st_m", 0 0, L_0x1638d50; 1 drivers
v0x1611a70_0 .alias "stall", 0 0, v0x161b110_0;
v0x1611b20_0 .net "stall_b_rt", 0 0, L_0x163cad0; 1 drivers
v0x1611ba0_0 .net "stall_cal_i", 0 0, L_0x163ddd0; 1 drivers
v0x1611c20_0 .net "stall_cal_r", 0 0, L_0x163d0f0; 1 drivers
v0x1611ca0_0 .net "stall_jorb_rs", 0 0, L_0x163b7b0; 1 drivers
v0x1611d20_0 .net "stall_ld", 0 0, L_0x163de80; 1 drivers
v0x1611da0_0 .net "stall_muldiv", 0 0, L_0x163a2c0; 1 drivers
v0x16122b0_0 .net "stall_st", 0 0, L_0x163e960; 1 drivers
v0x1611eb0_0 .alias "start", 0 0, v0x1613330_0;
L_0x163a320 .part v0x15b5430_0, 21, 5;
L_0x163a3c0 .cmp/ne 5, L_0x163a320, C4<00000>;
L_0x163a4b0 .part v0x15b5430_0, 21, 5;
L_0x163a550 .part v0x1535f40_0, 11, 5;
L_0x163a5f0 .cmp/eq 5, L_0x163a4b0, L_0x163a550;
L_0x163a7e0 .part v0x15b5430_0, 21, 5;
L_0x163a880 .part v0x1535f40_0, 16, 5;
L_0x163a920 .cmp/eq 5, L_0x163a7e0, L_0x163a880;
L_0x163ad70 .part v0x15b5430_0, 21, 5;
L_0x163ae10 .part v0x1535f40_0, 16, 5;
L_0x163af10 .cmp/eq 5, L_0x163ad70, L_0x163ae10;
L_0x163b220 .part v0x15b5430_0, 21, 5;
L_0x163b330 .part v0x138d770_0, 16, 5;
L_0x163b3d0 .cmp/eq 5, L_0x163b220, L_0x163b330;
L_0x163b940 .part v0x15b5430_0, 16, 5;
L_0x163b9e0 .cmp/ne 5, L_0x163b940, C4<00000>;
L_0x163bb10 .part v0x15b5430_0, 16, 5;
L_0x163bbb0 .part v0x1535f40_0, 11, 5;
L_0x163bcf0 .cmp/eq 5, L_0x163bb10, L_0x163bbb0;
L_0x163bf20 .part v0x15b5430_0, 16, 5;
L_0x163bc50 .part v0x1535f40_0, 16, 5;
L_0x163c070 .cmp/eq 5, L_0x163bf20, L_0x163bc50;
L_0x163c530 .part v0x15b5430_0, 16, 5;
L_0x163c5d0 .part v0x1535f40_0, 16, 5;
L_0x163c160 .cmp/eq 5, L_0x163c530, L_0x163c5d0;
L_0x163c840 .part v0x15b5430_0, 16, 5;
L_0x163c670 .part v0x138d770_0, 16, 5;
L_0x163cc80 .cmp/eq 5, L_0x163c840, L_0x163c670;
L_0x163cf60 .part v0x15b5430_0, 21, 5;
L_0x163d1e0 .part v0x1535f40_0, 16, 5;
L_0x163cd20 .cmp/eq 5, L_0x163cf60, L_0x163d1e0;
L_0x163d3d0 .part v0x15b5430_0, 16, 5;
L_0x163d280 .part v0x1535f40_0, 16, 5;
L_0x163d580 .cmp/eq 5, L_0x163d3d0, L_0x163d280;
L_0x163d890 .part v0x15b5430_0, 21, 5;
L_0x163db00 .part v0x1535f40_0, 16, 5;
L_0x163d670 .cmp/eq 5, L_0x163d890, L_0x163db00;
L_0x163da50 .part v0x15b5430_0, 21, 5;
L_0x163dba0 .part v0x1535f40_0, 16, 5;
L_0x163e0e0 .cmp/eq 5, L_0x163da50, L_0x163dba0;
L_0x163c410 .part v0x15b5430_0, 21, 5;
L_0x163e320 .part v0x1535f40_0, 16, 5;
L_0x163e1d0 .cmp/eq 5, L_0x163c410, L_0x163e320;
S_0x1602a40 .scope module, "pinstrD" "processInstr" 4 14, 5 173, S_0x15ed880;
.timescale -9 -9;
L_0x1622110 .functor OR 1, L_0x161b070, L_0x1604070, C4<0>, C4<0>;
L_0x1622170 .functor OR 1, L_0x1622110, L_0x156de90, C4<0>, C4<0>;
L_0x1622a10 .functor OR 1, L_0x1622170, L_0x160d070, C4<0>, C4<0>;
L_0x1622ac0 .functor OR 1, L_0x1622a10, L_0x161cb20, C4<0>, C4<0>;
L_0x1623080 .functor OR 1, L_0x1622ac0, L_0x161d2a0, C4<0>, C4<0>;
L_0x1623130 .functor OR 1, L_0x1623080, L_0x161cf10, C4<0>, C4<0>;
L_0x16231e0 .functor OR 1, L_0x1623130, L_0x161d7b0, C4<0>, C4<0>;
L_0x1623290 .functor OR 1, L_0x16231e0, L_0x161d550, C4<0>, C4<0>;
L_0x1623390 .functor OR 1, L_0x1623290, L_0x161def0, C4<0>, C4<0>;
L_0x1623440 .functor OR 1, L_0x1623390, L_0x161e200, C4<0>, C4<0>;
L_0x1623550 .functor OR 1, L_0x1623440, L_0x161e3f0, C4<0>, C4<0>;
L_0x16235b0 .functor OR 1, L_0x1623550, L_0x161e640, C4<0>, C4<0>;
L_0x16234f0 .functor OR 1, L_0x16235b0, L_0x161e870, C4<0>, C4<0>;
L_0x1623720 .functor OR 1, L_0x16234f0, L_0x161cc20, C4<0>, C4<0>;
L_0x1623850 .functor OR 1, L_0x1623720, L_0x161ce10, C4<0>, C4<0>;
L_0x1623900 .functor OR 1, L_0x1623850, L_0x16139c0, C4<0>, C4<0>;
L_0x1623a40 .functor OR 1, L_0x1623900, L_0x1557ec0, C4<0>, C4<0>;
L_0x1623af0 .functor OR 1, L_0x1623a40, L_0x161c770, C4<0>, C4<0>;
L_0x16239b0 .functor OR 1, L_0x1623af0, L_0x161c9d0, C4<0>, C4<0>;
L_0x1623c90 .functor OR 1, L_0x16239b0, L_0x1621c20, C4<0>, C4<0>;
L_0x1623ba0 .functor OR 1, L_0x1623c90, L_0x1621ee0, C4<0>, C4<0>;
L_0x1623e40 .functor OR 1, L_0x1623ba0, L_0x1620f30, C4<0>, C4<0>;
L_0x1623d40 .functor OR 1, L_0x1620c80, L_0x161e970, C4<0>, C4<0>;
L_0x1624000 .functor OR 1, L_0x1623d40, L_0x161e530, C4<0>, C4<0>;
L_0x1623f40 .functor OR 1, L_0x1624000, L_0x161ea20, C4<0>, C4<0>;
L_0x1624130 .functor OR 1, L_0x1623f40, L_0x161ebe0, C4<0>, C4<0>;
L_0x1624060 .functor OR 1, L_0x1624130, L_0x161efa0, C4<0>, C4<0>;
L_0x16242c0 .functor OR 1, L_0x1624060, L_0x161fac0, C4<0>, C4<0>;
L_0x16241e0 .functor OR 1, L_0x16242c0, L_0x161fc60, C4<0>, C4<0>;
L_0x1624460 .functor OR 1, L_0x16241e0, L_0x1621760, C4<0>, C4<0>;
L_0x1624370 .functor OR 1, L_0x1624460, L_0x1620c10, C4<0>, C4<0>;
L_0x1624660 .functor OR 1, L_0x161ed50, L_0x161ef00, C4<0>, C4<0>;
L_0x1624510 .functor OR 1, L_0x1624660, L_0x161f090, C4<0>, C4<0>;
L_0x16247d0 .functor OR 1, L_0x1624510, L_0x161f460, C4<0>, C4<0>;
L_0x16246c0 .functor OR 1, L_0x16247d0, L_0x161f210, C4<0>, C4<0>;
L_0x1624950 .functor OR 1, L_0x161f630, L_0x161f780, C4<0>, C4<0>;
L_0x1624830 .functor OR 1, L_0x1624950, L_0x161f910, C4<0>, C4<0>;
L_0x1624ae0 .functor OR 1, L_0x161f3a0, L_0x1620320, C4<0>, C4<0>;
L_0x16249b0 .functor OR 1, L_0x161f3a0, L_0x1620320, C4<0>, C4<0>;
L_0x1624d60 .functor OR 1, L_0x16249b0, L_0x161ff90, C4<0>, C4<0>;
L_0x1624b90 .functor OR 1, L_0x1624d60, L_0x1620550, C4<0>, C4<0>;
L_0x1624bf0 .functor OR 1, L_0x1624b90, L_0x16209a0, C4<0>, C4<0>;
L_0x1624f20 .functor OR 1, L_0x1624bf0, L_0x13d4000, C4<0>, C4<0>;
L_0x1625020 .functor OR 1, L_0x16214f0, L_0x1620f30, C4<0>, C4<0>;
L_0x1624dc0 .functor BUFZ 1, L_0x1621100, C4<0>, C4<0>, C4<0>;
L_0x1624e20 .functor BUFZ 1, L_0x1622320, C4<0>, C4<0>, C4<0>;
L_0x16252e0 .functor BUFZ 1, L_0x1622490, C4<0>, C4<0>, C4<0>;
L_0x1625340 .functor OR 1, L_0x16139c0, L_0x1557ec0, C4<0>, C4<0>;
L_0x1625160 .functor OR 1, L_0x1625340, L_0x161c770, C4<0>, C4<0>;
L_0x1625250 .functor OR 1, L_0x1625160, L_0x161c9d0, C4<0>, C4<0>;
L_0x16254c0 .functor OR 1, L_0x1625250, L_0x1621c20, C4<0>, C4<0>;
L_0x16255b0 .functor OR 1, L_0x16254c0, L_0x1621ee0, C4<0>, C4<0>;
L_0x16256e0 .functor OR 1, L_0x16255b0, L_0x1621760, C4<0>, C4<0>;
L_0x16257d0 .functor OR 1, L_0x16256e0, L_0x1620c10, C4<0>, C4<0>;
v0x1608890_0 .net *"_s0", 0 0, L_0x1622110; 1 drivers
v0x1608e90_0 .net *"_s10", 0 0, L_0x1623130; 1 drivers
v0x1608f10_0 .net *"_s100", 0 0, L_0x16254c0; 1 drivers
v0x1608f90_0 .net *"_s102", 0 0, L_0x16255b0; 1 drivers
v0x1609010_0 .net *"_s104", 0 0, L_0x16256e0; 1 drivers
v0x1609090_0 .net *"_s12", 0 0, L_0x16231e0; 1 drivers
v0x1609110_0 .net *"_s14", 0 0, L_0x1623290; 1 drivers
v0x1609190_0 .net *"_s16", 0 0, L_0x1623390; 1 drivers
v0x1609210_0 .net *"_s18", 0 0, L_0x1623440; 1 drivers
v0x1609290_0 .net *"_s2", 0 0, L_0x1622170; 1 drivers
v0x1609310_0 .net *"_s20", 0 0, L_0x1623550; 1 drivers
v0x1609390_0 .net *"_s22", 0 0, L_0x16235b0; 1 drivers
v0x1609410_0 .net *"_s24", 0 0, L_0x16234f0; 1 drivers
v0x1609490_0 .net *"_s26", 0 0, L_0x1623720; 1 drivers
v0x1609590_0 .net *"_s28", 0 0, L_0x1623850; 1 drivers
v0x1609610_0 .net *"_s30", 0 0, L_0x1623900; 1 drivers
v0x1609510_0 .net *"_s32", 0 0, L_0x1623a40; 1 drivers
v0x1609720_0 .net *"_s34", 0 0, L_0x1623af0; 1 drivers
v0x1609690_0 .net *"_s36", 0 0, L_0x16239b0; 1 drivers
v0x1609840_0 .net *"_s38", 0 0, L_0x1623c90; 1 drivers
v0x16097a0_0 .net *"_s4", 0 0, L_0x1622a10; 1 drivers
v0x1609970_0 .net *"_s40", 0 0, L_0x1623ba0; 1 drivers
v0x16098c0_0 .net *"_s44", 0 0, L_0x1623d40; 1 drivers
v0x1609ab0_0 .net *"_s46", 0 0, L_0x1624000; 1 drivers
v0x16099f0_0 .net *"_s48", 0 0, L_0x1623f40; 1 drivers
v0x1609c00_0 .net *"_s50", 0 0, L_0x1624130; 1 drivers
v0x1609b30_0 .net *"_s52", 0 0, L_0x1624060; 1 drivers
v0x1609d60_0 .net *"_s54", 0 0, L_0x16242c0; 1 drivers
v0x1609c80_0 .net *"_s56", 0 0, L_0x16241e0; 1 drivers
v0x1609ed0_0 .net *"_s58", 0 0, L_0x1624460; 1 drivers
v0x1609de0_0 .net *"_s6", 0 0, L_0x1622ac0; 1 drivers
v0x160a050_0 .net *"_s62", 0 0, L_0x1624660; 1 drivers
v0x1609f50_0 .net *"_s64", 0 0, L_0x1624510; 1 drivers
v0x160a1e0_0 .net *"_s66", 0 0, L_0x16247d0; 1 drivers
v0x160a0d0_0 .net *"_s70", 0 0, L_0x1624950; 1 drivers
v0x160a380_0 .net *"_s76", 0 0, L_0x16249b0; 1 drivers
v0x160a260_0 .net *"_s78", 0 0, L_0x1624d60; 1 drivers
v0x160a300_0 .net *"_s8", 0 0, L_0x1623080; 1 drivers
v0x160a540_0 .net *"_s80", 0 0, L_0x1624b90; 1 drivers
v0x160a5c0_0 .net *"_s82", 0 0, L_0x1624bf0; 1 drivers
v0x160a400_0 .net *"_s94", 0 0, L_0x1625340; 1 drivers
v0x160a4a0_0 .net *"_s96", 0 0, L_0x1625160; 1 drivers
v0x160a7a0_0 .net *"_s98", 0 0, L_0x1625250; 1 drivers
v0x160a820_0 .net "add", 0 0, L_0x161b070; 1 drivers
v0x160a640_0 .net "addi", 0 0, L_0x1620c80; 1 drivers
v0x160a6f0_0 .net "addiu", 0 0, L_0x161e970; 1 drivers
v0x160aa20_0 .net "addu", 0 0, L_0x1604070; 1 drivers
v0x160aaa0_0 .net "and_r", 0 0, L_0x161e200; 1 drivers
v0x160a8a0_0 .net "andi", 0 0, L_0x161ea20; 1 drivers
v0x160a950_0 .net "beq", 0 0, L_0x161f3a0; 1 drivers
v0x160acc0_0 .net "bgez", 0 0, L_0x13d4000; 1 drivers
v0x160ad40_0 .net "bgtz", 0 0, L_0x1620550; 1 drivers
v0x160ab20_0 .net "blez", 0 0, L_0x161ff90; 1 drivers
v0x160abd0_0 .net "bltz", 0 0, L_0x16209a0; 1 drivers
v0x160af80_0 .net "bne", 0 0, L_0x1620320; 1 drivers
v0x160b000_0 .alias "brs", 0 0, v0x1610030_0;
v0x160adc0_0 .alias "brt", 0 0, v0x1610580_0;
v0x160ae40_0 .alias "cal_i", 0 0, v0x1610470_0;
v0x160aec0_0 .alias "cal_r", 0 0, v0x1610600_0;
v0x160b260_0 .net "div", 0 0, L_0x161c770; 1 drivers
v0x160b080_0 .net "divu", 0 0, L_0x161c9d0; 1 drivers
v0x160b130_0 .net "eret", 0 0, L_0x1622020; 1 drivers
v0x160b1e0_0 .alias "instr", 31 0, v0x1619260_0;
v0x15d9c30_0 .net "j", 0 0, L_0x1620fc0; 1 drivers
v0x160b2e0_0 .net "jal", 0 0, L_0x1621100; 1 drivers
v0x160b390_0 .alias "jal_o", 0 0, v0x16109d0_0;
v0x160b410_0 .net "jalr", 0 0, L_0x1620f30; 1 drivers
v0x160b810_0 .net "jr", 0 0, L_0x16214f0; 1 drivers
v0x160b5f0_0 .alias "jr_o", 0 0, v0x1610dd0_0;
v0x160b670_0 .net "lb", 0 0, L_0x161ed50; 1 drivers
v0x160b720_0 .net "lbu", 0 0, L_0x161ef00; 1 drivers
v0x160bad0_0 .alias "ld", 0 0, v0x1610fe0_0;
v0x160b890_0 .net "lh", 0 0, L_0x161f090; 1 drivers
v0x160b940_0 .net "lhu", 0 0, L_0x161f460; 1 drivers
v0x160b9f0_0 .net "lui", 0 0, L_0x161e530; 1 drivers
v0x160bdb0_0 .net "lw", 0 0, L_0x161f210; 1 drivers
v0x160bb50_0 .net "mfc0", 0 0, L_0x1622490; 1 drivers
v0x160bbd0_0 .alias "mfc0_o", 0 0, v0x1611200_0;
v0x160bc50_0 .net "mfhi", 0 0, L_0x1621c20; 1 drivers
v0x160bd00_0 .net "mflo", 0 0, L_0x1621ee0; 1 drivers
v0x160c0c0_0 .net "mtc0", 0 0, L_0x1622320; 1 drivers
v0x160c140_0 .alias "mtc0_o", 0 0, v0x1611410_0;
v0x160be30_0 .net "mthi", 0 0, L_0x1621760; 1 drivers
v0x160bee0_0 .net "mtlo", 0 0, L_0x1620c10; 1 drivers
v0x160bf90_0 .alias "muldiv", 0 0, v0x1611660_0;
v0x160c010_0 .net "mult", 0 0, L_0x16139c0; 1 drivers
v0x160c480_0 .net "multu", 0 0, L_0x1557ec0; 1 drivers
v0x160c500_0 .net "nor_r", 0 0, L_0x161e640; 1 drivers
v0x160c1c0_0 .net "or_r", 0 0, L_0x161e3f0; 1 drivers
v0x160c270_0 .net "ori", 0 0, L_0x161ebe0; 1 drivers
v0x160c320_0 .net "sb", 0 0, L_0x161f630; 1 drivers
v0x160c3d0_0 .net "sh", 0 0, L_0x161f780; 1 drivers
v0x160c870_0 .net "sll", 0 0, L_0x161cb20; 1 drivers
v0x160c8f0_0 .net "sllv", 0 0, L_0x161d7b0; 1 drivers
v0x160c580_0 .net "slt", 0 0, L_0x161cc20; 1 drivers
v0x160c630_0 .net "slti", 0 0, L_0x161fac0; 1 drivers
v0x160c6e0_0 .net "sltiu", 0 0, L_0x161fc60; 1 drivers
v0x160c790_0 .net "sltu", 0 0, L_0x161ce10; 1 drivers
v0x160cc90_0 .net "sra", 0 0, L_0x161cf10; 1 drivers
v0x160cd10_0 .net "srav", 0 0, L_0x161def0; 1 drivers
v0x160c970_0 .net "srl", 0 0, L_0x161d2a0; 1 drivers
v0x160ca20_0 .net "srlv", 0 0, L_0x161d550; 1 drivers
v0x160cad0_0 .alias "st", 0 0, v0x1611870_0;
v0x160cb50_0 .net "sub", 0 0, L_0x156de90; 1 drivers
v0x160cc00_0 .net "subu", 0 0, L_0x160d070; 1 drivers
v0x160d0e0_0 .net "sw", 0 0, L_0x161f910; 1 drivers
v0x160cd90_0 .net "xor_r", 0 0, L_0x161e870; 1 drivers
v0x160ce40_0 .net "xori", 0 0, L_0x161efa0; 1 drivers
S_0x1602b30 .scope module, "parser" "parse_instr" 5 179, 5 91, S_0x1602a40;
.timescale -9 -9;
L_0x161b070 .functor AND 1, L_0x161bf60, L_0x161c000, C4<1>, C4<1>;
L_0x1604070 .functor AND 1, L_0x161bf60, L_0x161c0a0, C4<1>, C4<1>;
L_0x156de90 .functor AND 1, L_0x161bf60, L_0x161c140, C4<1>, C4<1>;
L_0x160d070 .functor AND 1, L_0x161bf60, L_0x161c300, C4<1>, C4<1>;
L_0x16139c0 .functor AND 1, L_0x161bf60, L_0x161c3a0, C4<1>, C4<1>;
L_0x1557ec0 .functor AND 1, L_0x161bf60, L_0x161c440, C4<1>, C4<1>;
L_0x161c770 .functor AND 1, L_0x161bf60, L_0x161c5c0, C4<1>, C4<1>;
L_0x161c9d0 .functor AND 1, L_0x161bf60, L_0x161c930, C4<1>, C4<1>;
L_0x161cc20 .functor AND 1, L_0x161bf60, L_0x161cb80, C4<1>, C4<1>;
L_0x161ce10 .functor AND 1, L_0x161bf60, L_0x161cd20, C4<1>, C4<1>;
L_0x161cb20 .functor AND 1, L_0x161bf60, L_0x161cfb0, C4<1>, C4<1>;
L_0x161d2a0 .functor AND 1, L_0x161bf60, L_0x161d1b0, C4<1>, C4<1>;
L_0x161cf10 .functor AND 1, L_0x161bf60, L_0x161d460, C4<1>, C4<1>;
L_0x161d7b0 .functor AND 1, L_0x161bf60, L_0x161d6c0, C4<1>, C4<1>;
L_0x161d550 .functor AND 1, L_0x161bf60, L_0x161d940, C4<1>, C4<1>;
L_0x161def0 .functor AND 1, L_0x161bf60, L_0x161de50, C4<1>, C4<1>;
L_0x161e200 .functor AND 1, L_0x161bf60, L_0x161e160, C4<1>, C4<1>;
L_0x161e3f0 .functor AND 1, L_0x161bf60, L_0x161e300, C4<1>, C4<1>;
L_0x161e640 .functor AND 1, L_0x161bf60, L_0x161e0c0, C4<1>, C4<1>;
L_0x161e870 .functor AND 1, L_0x161bf60, L_0x161e780, C4<1>, C4<1>;
L_0x16209a0 .functor AND 1, L_0x1620410, L_0x1620b20, C4<1>, C4<1>;
L_0x13d4000 .functor AND 1, L_0x1620410, L_0x1620800, C4<1>, C4<1>;
L_0x16214f0 .functor AND 1, L_0x161bf60, L_0x1621400, C4<1>, C4<1>;
L_0x1620f30 .functor AND 1, L_0x161bf60, L_0x1621280, C4<1>, C4<1>;
L_0x1620c10 .functor AND 1, L_0x161bf60, L_0x1621800, C4<1>, C4<1>;
L_0x1621760 .functor AND 1, L_0x161bf60, L_0x1621670, C4<1>, C4<1>;
L_0x1621ee0 .functor AND 1, L_0x161bf60, L_0x16215a0, C4<1>, C4<1>;
L_0x1621c20 .functor AND 1, L_0x161bf60, L_0x1621b30, C4<1>, C4<1>;
L_0x1622320 .functor AND 1, L_0x1621d60, L_0x16221e0, C4<1>, C4<1>;
L_0x1622490 .functor AND 1, L_0x1621d60, L_0x160b4e0, C4<1>, C4<1>;
L_0x1622020 .functor AND 1, L_0x1621d60, L_0x1621940, C4<1>, C4<1>;
v0x1603020_0 .net "Funct", 5 0, L_0x161bec0; 1 drivers
v0x16030a0_0 .net "OpCode", 5 0, L_0x131ea30; 1 drivers
v0x1603120_0 .net *"_s10", 0 0, L_0x161c000; 1 drivers
v0x16031a0_0 .net *"_s100", 0 0, L_0x161de50; 1 drivers
v0x1603220_0 .net *"_s104", 5 0, C4<100100>; 1 drivers
v0x16032a0_0 .net *"_s106", 0 0, L_0x161e160; 1 drivers
v0x1603320_0 .net *"_s110", 5 0, C4<100101>; 1 drivers
v0x16033a0_0 .net *"_s112", 0 0, L_0x161e300; 1 drivers
v0x1603420_0 .net *"_s116", 5 0, C4<100111>; 1 drivers
v0x16034a0_0 .net *"_s118", 0 0, L_0x161e0c0; 1 drivers
v0x1603520_0 .net *"_s122", 5 0, C4<100110>; 1 drivers
v0x16035a0_0 .net *"_s124", 0 0, L_0x161e780; 1 drivers
v0x1603620_0 .net *"_s128", 5 0, C4<001100>; 1 drivers
v0x16036a0_0 .net *"_s132", 5 0, C4<001101>; 1 drivers
v0x16037a0_0 .net *"_s136", 5 0, C4<001111>; 1 drivers
v0x1603820_0 .net *"_s14", 5 0, C4<100001>; 1 drivers
v0x1603720_0 .net *"_s140", 5 0, C4<001110>; 1 drivers
v0x1603930_0 .net *"_s144", 5 0, C4<100000>; 1 drivers
v0x16038a0_0 .net *"_s148", 5 0, C4<100100>; 1 drivers
v0x1603a50_0 .net *"_s152", 5 0, C4<100001>; 1 drivers
v0x16039b0_0 .net *"_s156", 5 0, C4<100101>; 1 drivers
v0x1603b80_0 .net *"_s16", 0 0, L_0x161c0a0; 1 drivers
v0x1603ad0_0 .net *"_s160", 5 0, C4<100011>; 1 drivers
v0x1603cc0_0 .net *"_s164", 5 0, C4<101000>; 1 drivers
v0x1603c00_0 .net *"_s168", 5 0, C4<101001>; 1 drivers
v0x1603e10_0 .net *"_s172", 5 0, C4<101011>; 1 drivers
v0x1603d40_0 .net *"_s176", 5 0, C4<001010>; 1 drivers
v0x1603f70_0 .net *"_s180", 5 0, C4<001011>; 1 drivers
v0x1603e90_0 .net *"_s184", 5 0, C4<000100>; 1 drivers
v0x16040e0_0 .net *"_s188", 5 0, C4<000101>; 1 drivers
v0x1603ff0_0 .net *"_s192", 5 0, C4<000110>; 1 drivers
v0x1604260_0 .net *"_s196", 5 0, C4<000111>; 1 drivers
v0x1604160_0 .net *"_s20", 5 0, C4<100010>; 1 drivers
v0x16041e0_0 .net *"_s200", 5 0, C4<000001>; 1 drivers
v0x1604400_0 .net *"_s205", 4 0, L_0x1620720; 1 drivers
v0x1604480_0 .net *"_s206", 4 0, C4<00000>; 1 drivers
v0x16042e0_0 .net *"_s208", 0 0, L_0x1620b20; 1 drivers
v0x1604360_0 .net *"_s213", 4 0, L_0x1620d30; 1 drivers
v0x1604640_0 .net *"_s214", 4 0, C4<00001>; 1 drivers
v0x16046c0_0 .net *"_s216", 0 0, L_0x1620800; 1 drivers
v0x1604500_0 .net *"_s22", 0 0, L_0x161c140; 1 drivers
v0x1604580_0 .net *"_s220", 5 0, C4<001000>; 1 drivers
v0x16048a0_0 .net *"_s224", 5 0, C4<001001>; 1 drivers
v0x1604920_0 .net *"_s228", 5 0, C4<000010>; 1 drivers
v0x1604740_0 .net *"_s232", 5 0, C4<000011>; 1 drivers
v0x16047e0_0 .net *"_s236", 5 0, C4<001000>; 1 drivers
v0x1604b20_0 .net *"_s238", 0 0, L_0x1621400; 1 drivers
v0x1604ba0_0 .net *"_s242", 5 0, C4<001001>; 1 drivers
v0x16049a0_0 .net *"_s244", 0 0, L_0x1621280; 1 drivers
v0x1604a40_0 .net *"_s248", 5 0, C4<010011>; 1 drivers
v0x1604dc0_0 .net *"_s250", 0 0, L_0x1621800; 1 drivers
v0x1604e40_0 .net *"_s254", 5 0, C4<010001>; 1 drivers
v0x1604c20_0 .net *"_s256", 0 0, L_0x1621670; 1 drivers
v0x1604cc0_0 .net *"_s26", 5 0, C4<100011>; 1 drivers
v0x1605080_0 .net *"_s260", 5 0, C4<010010>; 1 drivers
v0x1605100_0 .net *"_s262", 0 0, L_0x16215a0; 1 drivers
v0x1604ec0_0 .net *"_s266", 5 0, C4<010000>; 1 drivers
v0x1604f60_0 .net *"_s268", 0 0, L_0x1621b30; 1 drivers
v0x1605000_0 .net *"_s272", 5 0, C4<010000>; 1 drivers
v0x1605360_0 .net *"_s277", 4 0, L_0x16223a0; 1 drivers
v0x1605180_0 .net *"_s278", 4 0, C4<00100>; 1 drivers
v0x1605220_0 .net *"_s28", 0 0, L_0x161c300; 1 drivers
v0x16052c0_0 .net *"_s280", 0 0, L_0x16221e0; 1 drivers
v0x16055e0_0 .net *"_s285", 4 0, L_0x1622710; 1 drivers
v0x16053e0_0 .net *"_s286", 4 0, C4<00000>; 1 drivers
v0x1605480_0 .net *"_s288", 0 0, L_0x160b4e0; 1 drivers
v0x1605520_0 .net *"_s292", 5 0, C4<011000>; 1 drivers
v0x1605880_0 .net *"_s294", 0 0, L_0x1621940; 1 drivers
v0x1605660_0 .net *"_s32", 5 0, C4<011000>; 1 drivers
v0x16056e0_0 .net *"_s34", 0 0, L_0x161c3a0; 1 drivers
v0x1605780_0 .net *"_s38", 5 0, C4<011001>; 1 drivers
v0x1605b40_0 .net *"_s4", 5 0, C4<000000>; 1 drivers
v0x1605900_0 .net *"_s40", 0 0, L_0x161c440; 1 drivers
v0x16059a0_0 .net *"_s44", 5 0, C4<011010>; 1 drivers
v0x1605a40_0 .net *"_s46", 0 0, L_0x161c5c0; 1 drivers
v0x1605e20_0 .net *"_s50", 5 0, C4<011011>; 1 drivers
v0x1605bc0_0 .net *"_s52", 0 0, L_0x161c930; 1 drivers
v0x1605c40_0 .net *"_s56", 5 0, C4<101010>; 1 drivers
v0x1605ce0_0 .net *"_s58", 0 0, L_0x161cb80; 1 drivers
v0x1605d80_0 .net *"_s62", 5 0, C4<101011>; 1 drivers
v0x1606130_0 .net *"_s64", 0 0, L_0x161cd20; 1 drivers
v0x16061b0_0 .net *"_s68", 5 0, C4<000000>; 1 drivers
v0x1605ea0_0 .net *"_s70", 0 0, L_0x161cfb0; 1 drivers
v0x1605f20_0 .net *"_s74", 5 0, C4<000010>; 1 drivers
v0x1605fc0_0 .net *"_s76", 0 0, L_0x161d1b0; 1 drivers
v0x1606060_0 .net *"_s8", 5 0, C4<100000>; 1 drivers
v0x16064f0_0 .net *"_s80", 5 0, C4<000011>; 1 drivers
v0x1606570_0 .net *"_s82", 0 0, L_0x161d460; 1 drivers
v0x1606230_0 .net *"_s86", 5 0, C4<000100>; 1 drivers
v0x16062d0_0 .net *"_s88", 0 0, L_0x161d6c0; 1 drivers
v0x1606370_0 .net *"_s92", 5 0, C4<000110>; 1 drivers
v0x1606410_0 .net *"_s94", 0 0, L_0x161d940; 1 drivers
v0x16068e0_0 .net *"_s98", 5 0, C4<000111>; 1 drivers
v0x1606960_0 .alias "add", 0 0, v0x160a820_0;
v0x16065f0_0 .alias "addi", 0 0, v0x160a640_0;
v0x1606690_0 .alias "addiu", 0 0, v0x160a6f0_0;
v0x1606730_0 .alias "addu", 0 0, v0x160aa20_0;
v0x16067d0_0 .alias "and_r", 0 0, v0x160aaa0_0;
v0x1606d00_0 .alias "andi", 0 0, v0x160a8a0_0;
v0x1606d80_0 .alias "beq", 0 0, v0x160a950_0;
v0x16069e0_0 .alias "bgez", 0 0, v0x160acc0_0;
v0x1606a80_0 .alias "bgtz", 0 0, v0x160ad40_0;
v0x1606b20_0 .alias "blez", 0 0, v0x160ab20_0;
v0x1606bc0_0 .alias "bltz", 0 0, v0x160abd0_0;
v0x1606c60_0 .alias "bne", 0 0, v0x160af80_0;
v0x1607150_0 .net "cop0", 0 0, L_0x1621d60; 1 drivers
v0x1606e00_0 .alias "div", 0 0, v0x160b260_0;
v0x1606ea0_0 .alias "divu", 0 0, v0x160b080_0;
v0x1606f40_0 .alias "eret", 0 0, v0x160b130_0;
v0x1606fe0_0 .alias "instr", 31 0, v0x1619260_0;
v0x1607060_0 .alias "j", 0 0, v0x15d9c30_0;
v0x1607550_0 .alias "jal", 0 0, v0x160b2e0_0;
v0x16071d0_0 .alias "jalr", 0 0, v0x160b410_0;
v0x1607250_0 .alias "jr", 0 0, v0x160b810_0;
v0x16072f0_0 .alias "lb", 0 0, v0x160b670_0;
v0x1607390_0 .alias "lbu", 0 0, v0x160b720_0;
v0x1607430_0 .alias "lh", 0 0, v0x160b890_0;
v0x16074d0_0 .alias "lhu", 0 0, v0x160b940_0;
v0x1607990_0 .alias "lui", 0 0, v0x160b9f0_0;
v0x1607a10_0 .alias "lw", 0 0, v0x160bdb0_0;
v0x16075d0_0 .alias "mfc0", 0 0, v0x160bb50_0;
v0x1607670_0 .alias "mfhi", 0 0, v0x160bc50_0;
v0x1607710_0 .alias "mflo", 0 0, v0x160bd00_0;
v0x16077b0_0 .alias "mtc0", 0 0, v0x160c0c0_0;
v0x1607850_0 .alias "mthi", 0 0, v0x160be30_0;
v0x16078f0_0 .alias "mtlo", 0 0, v0x160bee0_0;
v0x1607e90_0 .alias "mult", 0 0, v0x160c010_0;
v0x1607f10_0 .alias "multu", 0 0, v0x160c480_0;
v0x1607a90_0 .alias "nor_r", 0 0, v0x160c500_0;
v0x1607b30_0 .alias "or_r", 0 0, v0x160c1c0_0;
v0x1607bd0_0 .alias "ori", 0 0, v0x160c270_0;
v0x1607c70_0 .net "regimm", 0 0, L_0x1620410; 1 drivers
v0x1607d10_0 .net "rtype", 0 0, L_0x161bf60; 1 drivers
v0x1607db0_0 .alias "sb", 0 0, v0x160c320_0;
v0x16083d0_0 .alias "sh", 0 0, v0x160c3d0_0;
v0x1608450_0 .alias "sll", 0 0, v0x160c870_0;
v0x1607f90_0 .alias "sllv", 0 0, v0x160c8f0_0;
v0x1608030_0 .alias "slt", 0 0, v0x160c580_0;
v0x16080d0_0 .alias "slti", 0 0, v0x160c630_0;
v0x1608170_0 .alias "sltiu", 0 0, v0x160c6e0_0;
v0x1608210_0 .alias "sltu", 0 0, v0x160c790_0;
v0x16082b0_0 .alias "sra", 0 0, v0x160cc90_0;
v0x1608350_0 .alias "srav", 0 0, v0x160cd10_0;
v0x1608950_0 .alias "srl", 0 0, v0x160c970_0;
v0x16084d0_0 .alias "srlv", 0 0, v0x160ca20_0;
v0x1608570_0 .alias "sub", 0 0, v0x160cb50_0;
v0x1608610_0 .alias "subu", 0 0, v0x160cc00_0;
v0x16086b0_0 .alias "sw", 0 0, v0x160d0e0_0;
v0x1608750_0 .alias "xor_r", 0 0, v0x160cd90_0;
v0x16087f0_0 .alias "xori", 0 0, v0x160ce40_0;
L_0x131ea30 .part v0x15b5430_0, 26, 6;
L_0x161bec0 .part v0x15b5430_0, 0, 6;
L_0x161bf60 .cmp/eq 6, L_0x131ea30, C4<000000>;
L_0x161c000 .cmp/eq 6, L_0x161bec0, C4<100000>;
L_0x161c0a0 .cmp/eq 6, L_0x161bec0, C4<100001>;
L_0x161c140 .cmp/eq 6, L_0x161bec0, C4<100010>;
L_0x161c300 .cmp/eq 6, L_0x161bec0, C4<100011>;
L_0x161c3a0 .cmp/eq 6, L_0x161bec0, C4<011000>;
L_0x161c440 .cmp/eq 6, L_0x161bec0, C4<011001>;
L_0x161c5c0 .cmp/eq 6, L_0x161bec0, C4<011010>;
L_0x161c930 .cmp/eq 6, L_0x161bec0, C4<011011>;
L_0x161cb80 .cmp/eq 6, L_0x161bec0, C4<101010>;
L_0x161cd20 .cmp/eq 6, L_0x161bec0, C4<101011>;
L_0x161cfb0 .cmp/eq 6, L_0x161bec0, C4<000000>;
L_0x161d1b0 .cmp/eq 6, L_0x161bec0, C4<000010>;
L_0x161d460 .cmp/eq 6, L_0x161bec0, C4<000011>;
L_0x161d6c0 .cmp/eq 6, L_0x161bec0, C4<000100>;
L_0x161d940 .cmp/eq 6, L_0x161bec0, C4<000110>;
L_0x161de50 .cmp/eq 6, L_0x161bec0, C4<000111>;
L_0x161e160 .cmp/eq 6, L_0x161bec0, C4<100100>;
L_0x161e300 .cmp/eq 6, L_0x161bec0, C4<100101>;
L_0x161e0c0 .cmp/eq 6, L_0x161bec0, C4<100111>;
L_0x161e780 .cmp/eq 6, L_0x161bec0, C4<100110>;
L_0x161ea20 .cmp/eq 6, L_0x131ea30, C4<001100>;
L_0x161ebe0 .cmp/eq 6, L_0x131ea30, C4<001101>;
L_0x161e530 .cmp/eq 6, L_0x131ea30, C4<001111>;
L_0x161efa0 .cmp/eq 6, L_0x131ea30, C4<001110>;
L_0x161ed50 .cmp/eq 6, L_0x131ea30, C4<100000>;
L_0x161ef00 .cmp/eq 6, L_0x131ea30, C4<100100>;
L_0x161f090 .cmp/eq 6, L_0x131ea30, C4<100001>;
L_0x161f460 .cmp/eq 6, L_0x131ea30, C4<100101>;
L_0x161f210 .cmp/eq 6, L_0x131ea30, C4<100011>;
L_0x161f630 .cmp/eq 6, L_0x131ea30, C4<101000>;
L_0x161f780 .cmp/eq 6, L_0x131ea30, C4<101001>;
L_0x161f910 .cmp/eq 6, L_0x131ea30, C4<101011>;
L_0x161fac0 .cmp/eq 6, L_0x131ea30, C4<001010>;
L_0x161fc60 .cmp/eq 6, L_0x131ea30, C4<001011>;
L_0x161f3a0 .cmp/eq 6, L_0x131ea30, C4<000100>;
L_0x1620320 .cmp/eq 6, L_0x131ea30, C4<000101>;
L_0x161ff90 .cmp/eq 6, L_0x131ea30, C4<000110>;
L_0x1620550 .cmp/eq 6, L_0x131ea30, C4<000111>;
L_0x1620410 .cmp/eq 6, L_0x131ea30, C4<000001>;
L_0x1620720 .part v0x15b5430_0, 16, 5;
L_0x1620b20 .cmp/eq 5, L_0x1620720, C4<00000>;
L_0x1620d30 .part v0x15b5430_0, 16, 5;
L_0x1620800 .cmp/eq 5, L_0x1620d30, C4<00001>;
L_0x1620c80 .cmp/eq 6, L_0x131ea30, C4<001000>;
L_0x161e970 .cmp/eq 6, L_0x131ea30, C4<001001>;
L_0x1620fc0 .cmp/eq 6, L_0x131ea30, C4<000010>;
L_0x1621100 .cmp/eq 6, L_0x131ea30, C4<000011>;
L_0x1621400 .cmp/eq 6, L_0x161bec0, C4<001000>;
L_0x1621280 .cmp/eq 6, L_0x161bec0, C4<001001>;
L_0x1621800 .cmp/eq 6, L_0x161bec0, C4<010011>;
L_0x1621670 .cmp/eq 6, L_0x161bec0, C4<010001>;
L_0x16215a0 .cmp/eq 6, L_0x161bec0, C4<010010>;
L_0x1621b30 .cmp/eq 6, L_0x161bec0, C4<010000>;
L_0x1621d60 .cmp/eq 6, L_0x131ea30, C4<010000>;
L_0x16223a0 .part v0x15b5430_0, 21, 5;
L_0x16221e0 .cmp/eq 5, L_0x16223a0, C4<00100>;