-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDE1_TOP.merge.rpt
1363 lines (1339 loc) · 487 KB
/
DE1_TOP.merge.rpt
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
Partition Merge report for DE1_TOP
Tue Feb 06 18:59:13 2018
Quartus II 64-Bit Version 13.0.1 Build 232 06/12/2013 Service Pack 1 SJ Web Edition
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
2. Partition Merge Summary
3. Partition Merge Netlist Types Used
4. Connections to In-System Debugging Instance "auto_signaltap_0"
5. Partition Merge Partition Statistics
6. Partition Merge Resource Usage Summary
7. Partition Merge RAM Summary
8. Partition Merge DSP Block Usage Summary
9. Partition Merge Messages
----------------
; Legal Notice ;
----------------
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
+--------------------------------------------------------------------------------------+
; Partition Merge Summary ;
+------------------------------------+-------------------------------------------------+
; Partition Merge Status ; Successful - Tue Feb 06 18:59:13 2018 ;
; Quartus II 64-Bit Version ; 13.0.1 Build 232 06/12/2013 SP 1 SJ Web Edition ;
; Revision Name ; DE1_TOP ;
; Top-level Entity Name ; DE1_TOP ;
; Family ; Cyclone II ;
; Total logic elements ; 18,144 ;
; Total combinational functions ; 10,837 ;
; Dedicated logic registers ; 10,404 ;
; Total registers ; 10404 ;
; Total pins ; 283 ;
; Total virtual pins ; 0 ;
; Total memory bits ; 116,992 ;
; Embedded Multiplier 9-bit elements ; 8 ;
; Total PLLs ; 1 ;
+------------------------------------+-------------------------------------------------+
+-------------------------------------------------------------------------------------------------------------------------------+
; Partition Merge Netlist Types Used ;
+--------------------------------+----------------+-------------------+------------------------+--------------------------------+
; Partition Name ; Partition Type ; Netlist Type Used ; Netlist Type Requested ; Partition Contents ;
+--------------------------------+----------------+-------------------+------------------------+--------------------------------+
; Top ; User-created ; Source File ; Post-Fit ; ;
; sld_hub:auto_hub ; Auto-generated ; Post-Synthesis ; Post-Synthesis ; sld_hub:auto_hub ;
; sld_signaltap:auto_signaltap_0 ; Auto-generated ; Post-Synthesis ; Post-Synthesis ; sld_signaltap:auto_signaltap_0 ;
; hard_block:auto_generated_inst ; Auto-generated ; Source File ; Source File ; hard_block:auto_generated_inst ;
+--------------------------------+----------------+-------------------+------------------------+--------------------------------+
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Connections to In-System Debugging Instance "auto_signaltap_0" ;
+-----------------------------------------------------------------------------------------------+---------------+-----------+----------------+-------------------+---------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Name ; Type ; Status ; Partition Name ; Netlist Type Used ; Actual Connection ; Details ;
+-----------------------------------------------------------------------------------------------+---------------+-----------+----------------+-------------------+---------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
; A0[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[0] ; N/A ;
; A0[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[0] ; N/A ;
; A0[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[0] ; N/A ;
; A0[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[1] ; N/A ;
; A0[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[1] ; N/A ;
; A0[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[1] ; N/A ;
; A0[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[2] ; N/A ;
; A0[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[2] ; N/A ;
; A0[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[2] ; N/A ;
; A0[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[3] ; N/A ;
; A0[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[3] ; N/A ;
; A0[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[3] ; N/A ;
; A0[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[4] ; N/A ;
; A0[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[4] ; N/A ;
; A0[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[4] ; N/A ;
; A0[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[5] ; N/A ;
; A0[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[5] ; N/A ;
; A0[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[5] ; N/A ;
; A0[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[6] ; N/A ;
; A0[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[6] ; N/A ;
; A0[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[6] ; N/A ;
; A0[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[7] ; N/A ;
; A0[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[7] ; N/A ;
; A0[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; A0[7] ; N/A ;
; BANK1_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; BANK1_CS ; N/A ;
; BANK1_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; BANK1_CS ; N/A ;
; BANK1_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; BANK1_CS ; N/A ;
; BIOS_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; BIOS_CS ; N/A ;
; BIOS_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; BIOS_CS ; N/A ;
; BIOS_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; BIOS_CS ; N/A ;
; BYTE_ADDR[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[0] ; N/A ;
; BYTE_ADDR[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[0] ; N/A ;
; BYTE_ADDR[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[0] ; N/A ;
; BYTE_ADDR[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[10] ; N/A ;
; BYTE_ADDR[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[10] ; N/A ;
; BYTE_ADDR[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[10] ; N/A ;
; BYTE_ADDR[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[11] ; N/A ;
; BYTE_ADDR[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[11] ; N/A ;
; BYTE_ADDR[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[11] ; N/A ;
; BYTE_ADDR[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[12] ; N/A ;
; BYTE_ADDR[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[12] ; N/A ;
; BYTE_ADDR[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[12] ; N/A ;
; BYTE_ADDR[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[13] ; N/A ;
; BYTE_ADDR[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[13] ; N/A ;
; BYTE_ADDR[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[13] ; N/A ;
; BYTE_ADDR[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[14] ; N/A ;
; BYTE_ADDR[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[14] ; N/A ;
; BYTE_ADDR[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[14] ; N/A ;
; BYTE_ADDR[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[15] ; N/A ;
; BYTE_ADDR[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[15] ; N/A ;
; BYTE_ADDR[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[15] ; N/A ;
; BYTE_ADDR[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[16] ; N/A ;
; BYTE_ADDR[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[16] ; N/A ;
; BYTE_ADDR[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[16] ; N/A ;
; BYTE_ADDR[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[17] ; N/A ;
; BYTE_ADDR[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[17] ; N/A ;
; BYTE_ADDR[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[17] ; N/A ;
; BYTE_ADDR[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[18] ; N/A ;
; BYTE_ADDR[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[18] ; N/A ;
; BYTE_ADDR[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[18] ; N/A ;
; BYTE_ADDR[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[19] ; N/A ;
; BYTE_ADDR[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[19] ; N/A ;
; BYTE_ADDR[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[19] ; N/A ;
; BYTE_ADDR[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[1] ; N/A ;
; BYTE_ADDR[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[1] ; N/A ;
; BYTE_ADDR[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[1] ; N/A ;
; BYTE_ADDR[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[20] ; N/A ;
; BYTE_ADDR[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[20] ; N/A ;
; BYTE_ADDR[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[20] ; N/A ;
; BYTE_ADDR[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[21] ; N/A ;
; BYTE_ADDR[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[21] ; N/A ;
; BYTE_ADDR[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[21] ; N/A ;
; BYTE_ADDR[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[22] ; N/A ;
; BYTE_ADDR[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[22] ; N/A ;
; BYTE_ADDR[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[22] ; N/A ;
; BYTE_ADDR[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[23] ; N/A ;
; BYTE_ADDR[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[23] ; N/A ;
; BYTE_ADDR[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[23] ; N/A ;
; BYTE_ADDR[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[24] ; N/A ;
; BYTE_ADDR[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[24] ; N/A ;
; BYTE_ADDR[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[24] ; N/A ;
; BYTE_ADDR[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[25] ; N/A ;
; BYTE_ADDR[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[25] ; N/A ;
; BYTE_ADDR[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[25] ; N/A ;
; BYTE_ADDR[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[26] ; N/A ;
; BYTE_ADDR[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[26] ; N/A ;
; BYTE_ADDR[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[26] ; N/A ;
; BYTE_ADDR[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[27] ; N/A ;
; BYTE_ADDR[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[27] ; N/A ;
; BYTE_ADDR[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[27] ; N/A ;
; BYTE_ADDR[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[28] ; N/A ;
; BYTE_ADDR[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[28] ; N/A ;
; BYTE_ADDR[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[28] ; N/A ;
; BYTE_ADDR[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[29] ; N/A ;
; BYTE_ADDR[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[29] ; N/A ;
; BYTE_ADDR[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[29] ; N/A ;
; BYTE_ADDR[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[2] ; N/A ;
; BYTE_ADDR[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[2] ; N/A ;
; BYTE_ADDR[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[2] ; N/A ;
; BYTE_ADDR[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[30] ; N/A ;
; BYTE_ADDR[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[30] ; N/A ;
; BYTE_ADDR[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[30] ; N/A ;
; BYTE_ADDR[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[31] ; N/A ;
; BYTE_ADDR[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[31] ; N/A ;
; BYTE_ADDR[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[31] ; N/A ;
; BYTE_ADDR[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[3] ; N/A ;
; BYTE_ADDR[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[3] ; N/A ;
; BYTE_ADDR[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[3] ; N/A ;
; BYTE_ADDR[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[4] ; N/A ;
; BYTE_ADDR[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[4] ; N/A ;
; BYTE_ADDR[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[4] ; N/A ;
; BYTE_ADDR[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[5] ; N/A ;
; BYTE_ADDR[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[5] ; N/A ;
; BYTE_ADDR[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[5] ; N/A ;
; BYTE_ADDR[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[6] ; N/A ;
; BYTE_ADDR[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[6] ; N/A ;
; BYTE_ADDR[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[6] ; N/A ;
; BYTE_ADDR[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[7] ; N/A ;
; BYTE_ADDR[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[7] ; N/A ;
; BYTE_ADDR[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[7] ; N/A ;
; BYTE_ADDR[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[8] ; N/A ;
; BYTE_ADDR[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[8] ; N/A ;
; BYTE_ADDR[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[8] ; N/A ;
; BYTE_ADDR[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[9] ; N/A ;
; BYTE_ADDR[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[9] ; N/A ;
; BYTE_ADDR[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_ADDR[9] ; N/A ;
; BYTE_COUNT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[0] ; N/A ;
; BYTE_COUNT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[0] ; N/A ;
; BYTE_COUNT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[0] ; N/A ;
; BYTE_COUNT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[1] ; N/A ;
; BYTE_COUNT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[1] ; N/A ;
; BYTE_COUNT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[1] ; N/A ;
; BYTE_COUNT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[2] ; N/A ;
; BYTE_COUNT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[2] ; N/A ;
; BYTE_COUNT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[2] ; N/A ;
; BYTE_COUNT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[3] ; N/A ;
; BYTE_COUNT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[3] ; N/A ;
; BYTE_COUNT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; BYTE_COUNT[3] ; N/A ;
; DATA_READ_MUX[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[0]~89 ; N/A ;
; DATA_READ_MUX[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[0]~89 ; N/A ;
; DATA_READ_MUX[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[0]~89 ; N/A ;
; DATA_READ_MUX[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[10]~157 ; N/A ;
; DATA_READ_MUX[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[10]~157 ; N/A ;
; DATA_READ_MUX[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[10]~157 ; N/A ;
; DATA_READ_MUX[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[11]~194 ; N/A ;
; DATA_READ_MUX[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[11]~194 ; N/A ;
; DATA_READ_MUX[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[11]~194 ; N/A ;
; DATA_READ_MUX[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[12]~226 ; N/A ;
; DATA_READ_MUX[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[12]~226 ; N/A ;
; DATA_READ_MUX[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[12]~226 ; N/A ;
; DATA_READ_MUX[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[13]~258 ; N/A ;
; DATA_READ_MUX[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[13]~258 ; N/A ;
; DATA_READ_MUX[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[13]~258 ; N/A ;
; DATA_READ_MUX[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[14]~291 ; N/A ;
; DATA_READ_MUX[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[14]~291 ; N/A ;
; DATA_READ_MUX[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[14]~291 ; N/A ;
; DATA_READ_MUX[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[15]~323 ; N/A ;
; DATA_READ_MUX[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[15]~323 ; N/A ;
; DATA_READ_MUX[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[15]~323 ; N/A ;
; DATA_READ_MUX[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[16]~355 ; N/A ;
; DATA_READ_MUX[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[16]~355 ; N/A ;
; DATA_READ_MUX[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[16]~355 ; N/A ;
; DATA_READ_MUX[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[17]~387 ; N/A ;
; DATA_READ_MUX[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[17]~387 ; N/A ;
; DATA_READ_MUX[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[17]~387 ; N/A ;
; DATA_READ_MUX[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[18]~420 ; N/A ;
; DATA_READ_MUX[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[18]~420 ; N/A ;
; DATA_READ_MUX[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[18]~420 ; N/A ;
; DATA_READ_MUX[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[19]~452 ; N/A ;
; DATA_READ_MUX[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[19]~452 ; N/A ;
; DATA_READ_MUX[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[19]~452 ; N/A ;
; DATA_READ_MUX[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[1]~456 ; N/A ;
; DATA_READ_MUX[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[1]~456 ; N/A ;
; DATA_READ_MUX[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[1]~456 ; N/A ;
; DATA_READ_MUX[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[20]~488 ; N/A ;
; DATA_READ_MUX[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[20]~488 ; N/A ;
; DATA_READ_MUX[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[20]~488 ; N/A ;
; DATA_READ_MUX[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[21]~520 ; N/A ;
; DATA_READ_MUX[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[21]~520 ; N/A ;
; DATA_READ_MUX[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[21]~520 ; N/A ;
; DATA_READ_MUX[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[22]~553 ; N/A ;
; DATA_READ_MUX[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[22]~553 ; N/A ;
; DATA_READ_MUX[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[22]~553 ; N/A ;
; DATA_READ_MUX[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[23]~585 ; N/A ;
; DATA_READ_MUX[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[23]~585 ; N/A ;
; DATA_READ_MUX[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[23]~585 ; N/A ;
; DATA_READ_MUX[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[24]~617 ; N/A ;
; DATA_READ_MUX[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[24]~617 ; N/A ;
; DATA_READ_MUX[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[24]~617 ; N/A ;
; DATA_READ_MUX[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[25]~649 ; N/A ;
; DATA_READ_MUX[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[25]~649 ; N/A ;
; DATA_READ_MUX[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[25]~649 ; N/A ;
; DATA_READ_MUX[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[26]~681 ; N/A ;
; DATA_READ_MUX[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[26]~681 ; N/A ;
; DATA_READ_MUX[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[26]~681 ; N/A ;
; DATA_READ_MUX[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[27]~712 ; N/A ;
; DATA_READ_MUX[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[27]~712 ; N/A ;
; DATA_READ_MUX[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[27]~712 ; N/A ;
; DATA_READ_MUX[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[28]~743 ; N/A ;
; DATA_READ_MUX[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[28]~743 ; N/A ;
; DATA_READ_MUX[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[28]~743 ; N/A ;
; DATA_READ_MUX[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[29]~774 ; N/A ;
; DATA_READ_MUX[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[29]~774 ; N/A ;
; DATA_READ_MUX[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[29]~774 ; N/A ;
; DATA_READ_MUX[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[2]~776 ; N/A ;
; DATA_READ_MUX[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[2]~776 ; N/A ;
; DATA_READ_MUX[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[2]~776 ; N/A ;
; DATA_READ_MUX[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[30]~809 ; N/A ;
; DATA_READ_MUX[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[30]~809 ; N/A ;
; DATA_READ_MUX[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[30]~809 ; N/A ;
; DATA_READ_MUX[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[31]~840 ; N/A ;
; DATA_READ_MUX[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[31]~840 ; N/A ;
; DATA_READ_MUX[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[31]~840 ; N/A ;
; DATA_READ_MUX[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[3]~879 ; N/A ;
; DATA_READ_MUX[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[3]~879 ; N/A ;
; DATA_READ_MUX[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[3]~879 ; N/A ;
; DATA_READ_MUX[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[4]~912 ; N/A ;
; DATA_READ_MUX[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[4]~912 ; N/A ;
; DATA_READ_MUX[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[4]~912 ; N/A ;
; DATA_READ_MUX[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[5]~945 ; N/A ;
; DATA_READ_MUX[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[5]~945 ; N/A ;
; DATA_READ_MUX[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[5]~945 ; N/A ;
; DATA_READ_MUX[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[6]~977 ; N/A ;
; DATA_READ_MUX[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[6]~977 ; N/A ;
; DATA_READ_MUX[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[6]~977 ; N/A ;
; DATA_READ_MUX[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[7]~1008 ; N/A ;
; DATA_READ_MUX[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[7]~1008 ; N/A ;
; DATA_READ_MUX[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[7]~1008 ; N/A ;
; DATA_READ_MUX[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[8]~1039 ; N/A ;
; DATA_READ_MUX[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[8]~1039 ; N/A ;
; DATA_READ_MUX[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[8]~1039 ; N/A ;
; DATA_READ_MUX[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[9]~1070 ; N/A ;
; DATA_READ_MUX[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[9]~1070 ; N/A ;
; DATA_READ_MUX[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; DATA_READ_MUX[9]~1070 ; N/A ;
; DS1386_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; DS1386_CS ; N/A ;
; DS1386_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; DS1386_CS ; N/A ;
; DS1386_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; DS1386_CS ; N/A ;
; HACK_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; HACK_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; HACK_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; HAL2_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; HAL2_CS ; N/A ;
; HAL2_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; HAL2_CS ; N/A ;
; HAL2_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; HAL2_CS ; N/A ;
; HD0_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; HD0_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; HD0_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; HD_ENET_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; HD_ENET_CS ; N/A ;
; HD_ENET_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; HD_ENET_CS ; N/A ;
; HD_ENET_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; HD_ENET_CS ; N/A ;
; IOC_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; IOC_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; IOC_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; KEY[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; KEY[0] ; N/A ;
; KEY[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; KEY[0] ; N/A ;
; KEY[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; KEY[0] ; N/A ;
; MAINRAM2_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MAINRAM2_CS ; N/A ;
; MAINRAM2_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MAINRAM2_CS ; N/A ;
; MAINRAM2_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MAINRAM2_CS ; N/A ;
; MAINRAM_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MAINRAM_CS ; N/A ;
; MAINRAM_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MAINRAM_CS ; N/A ;
; MAINRAM_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MAINRAM_CS ; N/A ;
; MC_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MC_CS ; N/A ;
; MC_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MC_CS ; N/A ;
; MC_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; MC_CS ; N/A ;
; MIPS_INT ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; MIPS_INT ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; MIPS_INT ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; NEWPORT_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; NEWPORT_CS ; N/A ;
; NEWPORT_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; NEWPORT_CS ; N/A ;
; NEWPORT_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; NEWPORT_CS ; N/A ;
; PBUS4_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; PBUS4_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; PBUS4_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; PBUSDMA_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; PBUSDMA_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; PBUSDMA_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; PUTCHAR ; pre-synthesis ; connected ; Top ; post-synthesis ; PUTCHAR ; N/A ;
; PUTCHAR ; pre-synthesis ; connected ; Top ; post-synthesis ; PUTCHAR ; N/A ;
; PUTCHAR ; pre-synthesis ; connected ; Top ; post-synthesis ; PUTCHAR ; N/A ;
; READ_STATE ; pre-synthesis ; connected ; Top ; post-synthesis ; always2~0 ; N/A ;
; READ_STATE ; pre-synthesis ; connected ; Top ; post-synthesis ; always2~0 ; N/A ;
; READ_STATE ; pre-synthesis ; connected ; Top ; post-synthesis ; always2~0 ; N/A ;
; SCRATCH_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; SCRATCH_CS ; N/A ;
; SCRATCH_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; SCRATCH_CS ; N/A ;
; SCRATCH_CS ; pre-synthesis ; connected ; Top ; post-synthesis ; SCRATCH_CS ; N/A ;
; SMALLRAM_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; SMALLRAM_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; SMALLRAM_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; UNKBUS0_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; UNKBUS0_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; UNKBUS0_CS ; pre-synthesis ; missing ; Top ; post-synthesis ; GND ; The name does not exist in your design or refers to an invalid hierarchy or bus element. You may have modified your design after creating the debug instance. ;
; WRITE_DATA_BACKUP[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[0] ; N/A ;
; WRITE_DATA_BACKUP[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[0] ; N/A ;
; WRITE_DATA_BACKUP[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[0] ; N/A ;
; WRITE_DATA_BACKUP[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[10] ; N/A ;
; WRITE_DATA_BACKUP[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[10] ; N/A ;
; WRITE_DATA_BACKUP[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[10] ; N/A ;
; WRITE_DATA_BACKUP[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[11] ; N/A ;
; WRITE_DATA_BACKUP[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[11] ; N/A ;
; WRITE_DATA_BACKUP[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[11] ; N/A ;
; WRITE_DATA_BACKUP[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[12] ; N/A ;
; WRITE_DATA_BACKUP[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[12] ; N/A ;
; WRITE_DATA_BACKUP[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[12] ; N/A ;
; WRITE_DATA_BACKUP[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[13] ; N/A ;
; WRITE_DATA_BACKUP[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[13] ; N/A ;
; WRITE_DATA_BACKUP[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[13] ; N/A ;
; WRITE_DATA_BACKUP[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[14] ; N/A ;
; WRITE_DATA_BACKUP[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[14] ; N/A ;
; WRITE_DATA_BACKUP[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[14] ; N/A ;
; WRITE_DATA_BACKUP[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[15] ; N/A ;
; WRITE_DATA_BACKUP[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[15] ; N/A ;
; WRITE_DATA_BACKUP[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[15] ; N/A ;
; WRITE_DATA_BACKUP[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[16] ; N/A ;
; WRITE_DATA_BACKUP[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[16] ; N/A ;
; WRITE_DATA_BACKUP[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[16] ; N/A ;
; WRITE_DATA_BACKUP[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[17] ; N/A ;
; WRITE_DATA_BACKUP[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[17] ; N/A ;
; WRITE_DATA_BACKUP[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[17] ; N/A ;
; WRITE_DATA_BACKUP[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[18] ; N/A ;
; WRITE_DATA_BACKUP[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[18] ; N/A ;
; WRITE_DATA_BACKUP[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[18] ; N/A ;
; WRITE_DATA_BACKUP[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[19] ; N/A ;
; WRITE_DATA_BACKUP[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[19] ; N/A ;
; WRITE_DATA_BACKUP[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[19] ; N/A ;
; WRITE_DATA_BACKUP[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[1] ; N/A ;
; WRITE_DATA_BACKUP[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[1] ; N/A ;
; WRITE_DATA_BACKUP[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[1] ; N/A ;
; WRITE_DATA_BACKUP[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[20] ; N/A ;
; WRITE_DATA_BACKUP[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[20] ; N/A ;
; WRITE_DATA_BACKUP[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[20] ; N/A ;
; WRITE_DATA_BACKUP[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[21] ; N/A ;
; WRITE_DATA_BACKUP[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[21] ; N/A ;
; WRITE_DATA_BACKUP[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[21] ; N/A ;
; WRITE_DATA_BACKUP[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[22] ; N/A ;
; WRITE_DATA_BACKUP[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[22] ; N/A ;
; WRITE_DATA_BACKUP[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[22] ; N/A ;
; WRITE_DATA_BACKUP[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[23] ; N/A ;
; WRITE_DATA_BACKUP[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[23] ; N/A ;
; WRITE_DATA_BACKUP[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[23] ; N/A ;
; WRITE_DATA_BACKUP[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[24] ; N/A ;
; WRITE_DATA_BACKUP[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[24] ; N/A ;
; WRITE_DATA_BACKUP[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[24] ; N/A ;
; WRITE_DATA_BACKUP[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[25] ; N/A ;
; WRITE_DATA_BACKUP[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[25] ; N/A ;
; WRITE_DATA_BACKUP[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[25] ; N/A ;
; WRITE_DATA_BACKUP[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[26] ; N/A ;
; WRITE_DATA_BACKUP[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[26] ; N/A ;
; WRITE_DATA_BACKUP[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[26] ; N/A ;
; WRITE_DATA_BACKUP[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[27] ; N/A ;
; WRITE_DATA_BACKUP[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[27] ; N/A ;
; WRITE_DATA_BACKUP[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[27] ; N/A ;
; WRITE_DATA_BACKUP[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[28] ; N/A ;
; WRITE_DATA_BACKUP[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[28] ; N/A ;
; WRITE_DATA_BACKUP[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[28] ; N/A ;
; WRITE_DATA_BACKUP[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[29] ; N/A ;
; WRITE_DATA_BACKUP[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[29] ; N/A ;
; WRITE_DATA_BACKUP[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[29] ; N/A ;
; WRITE_DATA_BACKUP[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[2] ; N/A ;
; WRITE_DATA_BACKUP[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[2] ; N/A ;
; WRITE_DATA_BACKUP[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[2] ; N/A ;
; WRITE_DATA_BACKUP[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[30] ; N/A ;
; WRITE_DATA_BACKUP[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[30] ; N/A ;
; WRITE_DATA_BACKUP[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[30] ; N/A ;
; WRITE_DATA_BACKUP[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[31] ; N/A ;
; WRITE_DATA_BACKUP[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[31] ; N/A ;
; WRITE_DATA_BACKUP[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[31] ; N/A ;
; WRITE_DATA_BACKUP[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[3] ; N/A ;
; WRITE_DATA_BACKUP[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[3] ; N/A ;
; WRITE_DATA_BACKUP[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[3] ; N/A ;
; WRITE_DATA_BACKUP[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[4] ; N/A ;
; WRITE_DATA_BACKUP[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[4] ; N/A ;
; WRITE_DATA_BACKUP[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[4] ; N/A ;
; WRITE_DATA_BACKUP[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[5] ; N/A ;
; WRITE_DATA_BACKUP[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[5] ; N/A ;
; WRITE_DATA_BACKUP[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[5] ; N/A ;
; WRITE_DATA_BACKUP[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[6] ; N/A ;
; WRITE_DATA_BACKUP[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[6] ; N/A ;
; WRITE_DATA_BACKUP[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[6] ; N/A ;
; WRITE_DATA_BACKUP[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[7] ; N/A ;
; WRITE_DATA_BACKUP[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[7] ; N/A ;
; WRITE_DATA_BACKUP[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[7] ; N/A ;
; WRITE_DATA_BACKUP[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[8] ; N/A ;
; WRITE_DATA_BACKUP[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[8] ; N/A ;
; WRITE_DATA_BACKUP[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[8] ; N/A ;
; WRITE_DATA_BACKUP[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[9] ; N/A ;
; WRITE_DATA_BACKUP[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[9] ; N/A ;
; WRITE_DATA_BACKUP[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_DATA_BACKUP[9] ; N/A ;
; WRITE_STATE ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_STATE~0 ; N/A ;
; WRITE_STATE ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_STATE~0 ; N/A ;
; WRITE_STATE ; pre-synthesis ; connected ; Top ; post-synthesis ; WRITE_STATE~0 ; N/A ;
; aoR3000:aoR3000_inst|avm_read ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|memory_avalon:memory_avalon_inst|avm_read ; N/A ;
; aoR3000:aoR3000_inst|avm_read ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|memory_avalon:memory_avalon_inst|avm_read ; N/A ;
; aoR3000:aoR3000_inst|avm_read ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|memory_avalon:memory_avalon_inst|avm_read ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[0]~1 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[0]~1 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[0]~1 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[10]~3 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[10]~3 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[10]~3 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[11]~5 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[11]~5 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[11]~5 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[12]~7 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[12]~7 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[12]~7 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[13]~9 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[13]~9 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[13]~9 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[14]~11 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[14]~11 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[14]~11 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[15]~13 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[15]~13 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[15]~13 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[16]~15 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[16]~15 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[16]~15 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[17]~17 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[17]~17 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[17]~17 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[18]~19 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[18]~19 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[18]~19 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[19]~21 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[19]~21 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[19]~21 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[1]~23 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[1]~23 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[1]~23 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[20]~25 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[20]~25 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[20]~25 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[21]~27 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[21]~27 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[21]~27 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[22]~29 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[22]~29 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[22]~29 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[23]~31 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[23]~31 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[23]~31 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[24]~33 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[24]~33 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[24]~33 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[25]~35 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[25]~35 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[25]~35 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[26]~37 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[26]~37 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[26]~37 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[27]~39 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[27]~39 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[27]~39 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[28]~41 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[28]~41 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[28]~41 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[29]~43 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[29]~43 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[29]~43 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[2]~45 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[2]~45 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[2]~45 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[30]~47 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[30]~47 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[30]~47 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[31]~49 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[31]~49 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[31]~49 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[3]~51 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[3]~51 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[3]~51 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[4]~53 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[4]~53 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[4]~53 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[5]~55 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[5]~55 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[5]~55 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[6]~57 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[6]~57 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[6]~57 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[7]~59 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[7]~59 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[7]~59 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[8]~61 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[8]~61 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[8]~61 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[9]~63 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[9]~63 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdata[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; data_flipped[9]~63 ; N/A ;
; aoR3000:aoR3000_inst|avm_readdatavalid ; pre-synthesis ; connected ; Top ; post-synthesis ; avm_readdatavalid ; N/A ;
; aoR3000:aoR3000_inst|avm_readdatavalid ; pre-synthesis ; connected ; Top ; post-synthesis ; avm_readdatavalid ; N/A ;
; aoR3000:aoR3000_inst|avm_readdatavalid ; pre-synthesis ; connected ; Top ; post-synthesis ; avm_readdatavalid ; N/A ;
; aoR3000:aoR3000_inst|avm_waitrequest ; pre-synthesis ; connected ; Top ; post-synthesis ; avm_waitrequest~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|avm_waitrequest ; pre-synthesis ; connected ; Top ; post-synthesis ; avm_waitrequest~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|avm_waitrequest ; pre-synthesis ; connected ; Top ; post-synthesis ; avm_waitrequest~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|avm_write ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|memory_avalon:memory_avalon_inst|avm_write ; N/A ;
; aoR3000:aoR3000_inst|avm_write ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|memory_avalon:memory_avalon_inst|avm_write ; N/A ;
; aoR3000:aoR3000_inst|avm_write ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|memory_avalon:memory_avalon_inst|avm_write ; N/A ;
; aoR3000:aoR3000_inst|if_pc[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[0] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[0] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[0] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[10] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[10] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[10] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[11] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[11] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[11] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[0] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[0] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[0] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[1] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[1] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[1] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[2] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[2] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[2] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[3] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[3] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[3] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[4] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[4] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[4] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[5] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[5] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[5] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[6] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[6] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[6] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[7] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[7] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[7] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[1] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[1] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[1] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[8] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[8] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[8] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[9] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[9] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[9] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[10] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[10] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[10] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[11] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[11] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[11] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[12] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[12] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[12] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[13] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[13] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[13] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[14] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[14] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[14] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[15] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[15] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[15] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[16] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[16] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[16] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[17] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[17] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[17] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[2] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[2] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[2] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[18] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[18] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[18] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[19] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[19] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|micro_check_vpn[19] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[3] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[3] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[3] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[4] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[4] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[4] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[5] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[5] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[5] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[6] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[6] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[6] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[7] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[7] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[7] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[8] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[8] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[8] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[9] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[9] ; N/A ;
; aoR3000:aoR3000_inst|if_pc[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_if:pipeline_if_inst|if_pc[9] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[0] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[0] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[0] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[10] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[10] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[10] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[11] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[11] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[11] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[12] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[12] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[12] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[13] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[13] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[13] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[14] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[14] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[14] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[15] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[15] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[15] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[16] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[16] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[16] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[17] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[17] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[17] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[18] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[18] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[18] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[19] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[19] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[19] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[1] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[1] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[1] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[20] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[20] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[20] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[21] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[21] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[21] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[22] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[22] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[22] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[23] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[23] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[23] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[24] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[24] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[24] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[25] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[25] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[25] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[26] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[26] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[26] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[27] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[27] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[27] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[28] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[28] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[28] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[29] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[29] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[29] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[2] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[2] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[2] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[30] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[30] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[30] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[31] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[31] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[31] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[3] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[3] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[3] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[4] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[4] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[4] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[5] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[5] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[5] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[6] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[6] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[6] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[7] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[7] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[7] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[8] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[8] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[8] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[9] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[9] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|data_address[9] ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_load ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_load ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_load ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_load ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_load ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_load ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_store ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_store ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_store ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_store ; N/A ;
; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_store ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_exe:pipeline_exe_inst|exe_cmd_store ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[0]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[0]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[0]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[1]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[1]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[1]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[2]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[2]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[2]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[3]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[3]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[3]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[4]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[4]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|block_cp0:block_cp0_inst|cause_exccode[4]~_wirecell ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[0]~1 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[0]~1 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[0]~1 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[10]~3 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[10]~3 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[10]~3 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[11]~5 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[11]~5 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[11]~5 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[12]~7 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[12]~7 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[12]~7 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[13]~9 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[13]~9 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[13]~9 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[14]~11 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[14]~11 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[14]~11 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[15]~13 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[15]~13 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[15]~13 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[16]~15 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[16]~15 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[16]~15 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[17]~17 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[17]~17 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[17]~17 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[18]~19 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[18]~19 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[18]~19 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[19]~21 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[19]~21 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[19]~21 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[1]~23 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[1]~23 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[1]~23 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[20]~25 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[20]~25 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[20]~25 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[21]~27 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[21]~27 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[21]~27 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[22]~29 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[22]~29 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[22]~29 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[23]~31 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[23]~31 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[23]~31 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[24]~33 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[24]~33 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[24]~33 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[25]~35 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[25]~35 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[25]~35 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[26]~37 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[26]~37 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[26]~37 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[27]~39 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[27]~39 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[27]~39 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[28]~41 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[28]~41 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[28]~41 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[29]~43 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[29]~43 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[29]~43 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[2]~45 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[2]~45 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[2]~45 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[30]~47 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[30]~47 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[30]~47 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[31]~49 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[31]~49 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[31]~49 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[3]~51 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[3]~51 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[3]~51 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[4]~53 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[4]~53 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[4]~53 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[5]~55 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[5]~55 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[5]~55 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[6]~57 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[6]~57 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[6]~57 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[7]~59 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[7]~59 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[7]~59 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[8]~61 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[8]~61 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[8]~61 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[9]~63 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[9]~63 ; N/A ;
; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[9] ; pre-synthesis ; connected ; Top ; post-synthesis ; aoR3000:aoR3000_inst|pipeline_mem:pipeline_mem_inst|data_cache_data[9]~63 ; N/A ;
; r4300_interface:r4300_interface_inst|COLDRESET_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COLDRESET_N ; N/A ;
; r4300_interface:r4300_interface_inst|COLDRESET_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COLDRESET_N ; N/A ;
; r4300_interface:r4300_interface_inst|COLDRESET_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COLDRESET_N ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[0] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[0] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[0] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[1] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[1] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[1] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[2] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[2] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[2] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[3] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[3] ; N/A ;
; r4300_interface:r4300_interface_inst|COUNT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|COUNT[3] ; N/A ;
; r4300_interface:r4300_interface_inst|EOK_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|EOK_N~_wirecell ; N/A ;
; r4300_interface:r4300_interface_inst|EOK_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|EOK_N~_wirecell ; N/A ;
; r4300_interface:r4300_interface_inst|EOK_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|EOK_N~_wirecell ; N/A ;
; r4300_interface:r4300_interface_inst|EVALID_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|EVALID_N~_wirecell ; N/A ;
; r4300_interface:r4300_interface_inst|EVALID_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|EVALID_N~_wirecell ; N/A ;
; r4300_interface:r4300_interface_inst|EVALID_N ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|EVALID_N~_wirecell ; N/A ;
; r4300_interface:r4300_interface_inst|PVALID_N ; pre-synthesis ; connected ; Top ; post-synthesis ; GPIO_1[2]~0 ; N/A ;
; r4300_interface:r4300_interface_inst|PVALID_N ; pre-synthesis ; connected ; Top ; post-synthesis ; GPIO_1[2]~0 ; N/A ;
; r4300_interface:r4300_interface_inst|PVALID_N ; pre-synthesis ; connected ; Top ; post-synthesis ; GPIO_1[2]~0 ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[0] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[0] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[0] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[0] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[10] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[10] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[10] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[10] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[11] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[11] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[11] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[11] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[12] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[12] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[12] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[12] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[13] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[13] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[13] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[13] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[14] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[14] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[14] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[14] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[15] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[15] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[15] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[15] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[16] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[16] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[16] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[16] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[17] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[17] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[17] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[17] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[18] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[18] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[18] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[18] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[19] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[19] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[19] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[19] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[1] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[1] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[1] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[1] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[20] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[20] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[20] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[20] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[21] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[21] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[21] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[21] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[22] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[22] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[22] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[22] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[23] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[23] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[23] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[23] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[24] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[24] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[24] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[24] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[25] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[25] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[25] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[25] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[26] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[26] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[26] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[26] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[27] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[27] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[27] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[27] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[28] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[28] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[28] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[28] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[29] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[29] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[29] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[29] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[2] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[2] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[2] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[2] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[30] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[30] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[30] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[30] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[31] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[31] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[31] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[31] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[3] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[3] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[3] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[3] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[4] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[4] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[4] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[4] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[5] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[5] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[5] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[5] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[6] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[6] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[6] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[6] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[7] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[7] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[7] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[7] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[8] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[8] ; N/A ;
; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[8] ; pre-synthesis ; connected ; Top ; post-synthesis ; r4300_interface:r4300_interface_inst|R4300_ADDR_OUT[8] ; N/A ;