forked from zeldaret/oot-vc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsymbols.txt
More file actions
9436 lines (9436 loc) · 726 KB
/
symbols.txt
File metadata and controls
9436 lines (9436 loc) · 726 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
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
__check_pad3 = .init:0x80004000; // type:function size:0x28 scope:local
__set_debug_bba = .init:0x80004028; // type:function size:0xC scope:local
__get_debug_bba = .init:0x80004034; // type:function size:0x8 scope:local
__start = .init:0x8000403C; // type:function size:0x16C scope:weak
__init_registers = .init:0x800041A8; // type:function size:0x90 scope:local
__init_data = .init:0x80004238; // type:function size:0xA8 scope:local
__init_hardware = .init:0x800042E0; // type:function size:0x24 scope:global
__flush_cache = .init:0x80004304; // type:function size:0x34 scope:global
memcpy = .init:0x80004338; // type:function size:0x50 scope:global
__fill_mem = .init:0x80004388; // type:function size:0xB4 scope:global
memset = .init:0x8000443C; // type:function size:0x30 scope:global
TRK_memset = .init:0x8000446C; // type:function size:0x30
TRK_memcpy = .init:0x8000449C; // type:function size:0x24
gTRKInterruptVectorTable = .init:0x800044C0; // type:label scope:global
__TRKreset = .init:0x800063F4; // type:function size:0x2C
gTRKInterruptVectorTableEnd = .init:0x800063F4; // type:label scope:global
_rom_copy_info = .init:0x80006420; // type:object size:0x84 scope:global data:4byte
_bss_init_info = .init:0x800064A4; // type:object size:0x20 scope:global data:4byte
@etb_800064E0 = extab:0x800064E0; // type:object size:0x8 scope:local hidden
@etb_800064E8 = extab:0x800064E8; // type:object size:0x8 scope:local hidden
@etb_800064F0 = extab:0x800064F0; // type:object size:0x8 scope:local hidden
@etb_800064F8 = extab:0x800064F8; // type:object size:0x8 scope:local hidden
@etb_80006500 = extab:0x80006500; // type:object size:0x8 scope:local hidden
@etb_80006508 = extab:0x80006508; // type:object size:0x8 scope:local hidden
@etb_80006510 = extab:0x80006510; // type:object size:0x8 scope:local hidden
@etb_80006518 = extab:0x80006518; // type:object size:0x8 scope:local hidden
@etb_80006520 = extab:0x80006520; // type:object size:0x8 scope:local hidden
@etb_80006528 = extab:0x80006528; // type:object size:0x8 scope:local hidden
@etb_80006530 = extab:0x80006530; // type:object size:0x8 scope:local hidden
@etb_80006538 = extab:0x80006538; // type:object size:0x8 scope:local hidden
@etb_80006540 = extab:0x80006540; // type:object size:0x8 scope:local hidden
@etb_80006548 = extab:0x80006548; // type:object size:0x8 scope:local hidden
@etb_80006550 = extab:0x80006550; // type:object size:0x8 scope:local hidden
@etb_80006558 = extab:0x80006558; // type:object size:0x8 scope:local hidden
@etb_80006560 = extab:0x80006560; // type:object size:0x8 scope:local hidden
@etb_80006568 = extab:0x80006568; // type:object size:0x8 scope:local hidden
@etb_80006570 = extab:0x80006570; // type:object size:0x8 scope:local hidden
@etb_80006578 = extab:0x80006578; // type:object size:0x8 scope:local hidden
@etb_80006580 = extab:0x80006580; // type:object size:0x8 scope:local hidden
@etb_80006588 = extab:0x80006588; // type:object size:0x8 scope:local hidden
@etb_80006590 = extab:0x80006590; // type:object size:0x8 scope:local hidden
@etb_80006598 = extab:0x80006598; // type:object size:0x8 scope:local hidden
@etb_800065A0 = extab:0x800065A0; // type:object size:0x8 scope:local hidden
@etb_800065A8 = extab:0x800065A8; // type:object size:0x8 scope:local hidden
@etb_800065B0 = extab:0x800065B0; // type:object size:0x8 scope:local hidden
@etb_800065B8 = extab:0x800065B8; // type:object size:0x8 scope:local hidden
@etb_800065C0 = extab:0x800065C0; // type:object size:0x8 scope:local hidden
@etb_800065C8 = extab:0x800065C8; // type:object size:0x8 scope:local hidden
@etb_800065D0 = extab:0x800065D0; // type:object size:0x8 scope:local hidden
@etb_800065D8 = extab:0x800065D8; // type:object size:0x8 scope:local hidden
@etb_800065E0 = extab:0x800065E0; // type:object size:0x8 scope:local hidden
@etb_800065E8 = extab:0x800065E8; // type:object size:0x8 scope:local hidden
@etb_800065F0 = extab:0x800065F0; // type:object size:0x8 scope:local hidden
@etb_800065F8 = extab:0x800065F8; // type:object size:0x8 scope:local hidden
@etb_80006600 = extab:0x80006600; // type:object size:0x8 scope:local hidden
@etb_80006608 = extab:0x80006608; // type:object size:0x8 scope:local hidden
@etb_80006610 = extab:0x80006610; // type:object size:0x8 scope:local hidden
@etb_80006618 = extab:0x80006618; // type:object size:0x8 scope:local hidden
@etb_80006620 = extab:0x80006620; // type:object size:0x8 scope:local hidden
@etb_80006628 = extab:0x80006628; // type:object size:0x8 scope:local hidden
@etb_80006630 = extab:0x80006630; // type:object size:0x8 scope:local hidden
@etb_80006638 = extab:0x80006638; // type:object size:0x8 scope:local hidden
@etb_80006640 = extab:0x80006640; // type:object size:0x8 scope:local hidden
@etb_80006648 = extab:0x80006648; // type:object size:0x8 scope:local hidden
@etb_80006650 = extab:0x80006650; // type:object size:0x8 scope:local hidden
@etb_80006658 = extab:0x80006658; // type:object size:0x8 scope:local hidden
@etb_80006660 = extab:0x80006660; // type:object size:0x8 scope:local hidden
@etb_80006668 = extab:0x80006668; // type:object size:0x8 scope:local hidden
@etb_80006670 = extab:0x80006670; // type:object size:0x8 scope:local hidden
@etb_80006678 = extab:0x80006678; // type:object size:0x8 scope:local hidden
@etb_80006680 = extab:0x80006680; // type:object size:0x8 scope:local hidden
@etb_80006688 = extab:0x80006688; // type:object size:0x2C scope:local hidden
@etb_800066B4 = extab:0x800066B4; // type:object size:0x8 scope:local hidden
@etb_800066BC = extab:0x800066BC; // type:object size:0x18 scope:local hidden
@etb_800066D4 = extab:0x800066D4; // type:object size:0x8 scope:local hidden
@etb_800066DC = extab:0x800066DC; // type:object size:0x18 scope:local hidden
@etb_800066F4 = extab:0x800066F4; // type:object size:0x8 scope:local hidden
@etb_800066FC = extab:0x800066FC; // type:object size:0x8 scope:local hidden
@etb_80006704 = extab:0x80006704; // type:object size:0x8 scope:local hidden
@etb_8000670C = extab:0x8000670C; // type:object size:0x8 scope:local hidden
@etb_80006714 = extab:0x80006714; // type:object size:0x14 scope:local hidden
@etb_80006728 = extab:0x80006728; // type:object size:0x2C scope:local hidden
@etb_80006754 = extab:0x80006754; // type:object size:0x8 scope:local hidden
@etb_8000675C = extab:0x8000675C; // type:object size:0x14 scope:local hidden
@800 = extab:0x80006770; // type:object size:0x8 scope:local hidden
@848 = extab:0x80006778; // type:object size:0x8 scope:local hidden
@864 = extab:0x80006780; // type:object size:0x8 scope:local hidden
@968 = extab:0x80006788; // type:object size:0x8 scope:local hidden
@996 = extab:0x80006790; // type:object size:0x8 scope:local hidden
@1039 = extab:0x80006798; // type:object size:0x8 scope:local hidden
@1058 = extab:0x800067A0; // type:object size:0x8 scope:local hidden
@122 = extab:0x800067A8; // type:object size:0x8 scope:local hidden
@128 = extab:0x800067B0; // type:object size:0x8 scope:local hidden
@835 = extab:0x800067B8; // type:object size:0x8 scope:local hidden
@866 = extab:0x800067C0; // type:object size:0x8 scope:local hidden
@917 = extab:0x800067C8; // type:object size:0x8 scope:local hidden
@1044 = extab:0x800067D0; // type:object size:0x8 scope:local hidden
@1062 = extab:0x800067D8; // type:object size:0x8 scope:local hidden
@1094 = extab:0x800067E0; // type:object size:0x8 scope:local hidden
@1201 = extab:0x800067E8; // type:object size:0x8 scope:local hidden
@118 = extab:0x800067F0; // type:object size:0x8 scope:local hidden
@143 = extab:0x800067F8; // type:object size:0x8 scope:local hidden
@59 = extab:0x80006800; // type:object size:0x8 scope:local hidden
@62 = extab:0x80006808; // type:object size:0x8 scope:local hidden
@202 = extab:0x80006810; // type:object size:0x8 scope:local hidden
@272 = extab:0x80006818; // type:object size:0x8 scope:local hidden
@286 = extab:0x80006820; // type:object size:0x8 scope:local hidden
@332 = extab:0x80006828; // type:object size:0x8 scope:local hidden
@164 = extab:0x80006830; // type:object size:0x8 scope:local hidden
@157 = extab:0x80006838; // type:object size:0x8 scope:local hidden
@173 = extab:0x80006840; // type:object size:0x8 scope:local hidden
@98 = extab:0x80006848; // type:object size:0x8 scope:local hidden
@110 = extab:0x80006850; // type:object size:0x8 scope:local hidden
@1641 = extab:0x80006858; // type:object size:0x8 scope:local hidden
@1715 = extab:0x80006860; // type:object size:0x8 scope:local hidden
@1781 = extab:0x80006868; // type:object size:0x8 scope:local hidden
@1960 = extab:0x80006870; // type:object size:0x8 scope:local hidden
@2098 = extab:0x80006878; // type:object size:0x8 scope:local hidden
@2107 = extab:0x80006880; // type:object size:0x8 scope:local hidden
@2120 = extab:0x80006888; // type:object size:0x8 scope:local hidden
@2125 = extab:0x80006890; // type:object size:0x8 scope:local hidden
@2131 = extab:0x80006898; // type:object size:0x8 scope:local hidden
@2137 = extab:0x800068A0; // type:object size:0x8 scope:local hidden
@2147 = extab:0x800068A8; // type:object size:0x8 scope:local hidden
@2156 = extab:0x800068B0; // type:object size:0x8 scope:local hidden
@2165 = extab:0x800068B8; // type:object size:0x8 scope:local hidden
@2173 = extab:0x800068C0; // type:object size:0x8 scope:local hidden
@139 = extab:0x800068C8; // type:object size:0x8 scope:local hidden
@1103 = extab:0x800068D0; // type:object size:0x8 scope:local hidden
@1358 = extab:0x800068D8; // type:object size:0x8 scope:local hidden
@1375 = extab:0x800068E0; // type:object size:0x8 scope:local hidden
@38 = extab:0x800068E8; // type:object size:0x8 scope:local hidden
@418 = extab:0x800068F0; // type:object size:0x8 scope:local hidden
@432 = extab:0x800068F8; // type:object size:0x8 scope:local hidden
@446 = extab:0x80006900; // type:object size:0x8 scope:local hidden
@1218 = extab:0x80006908; // type:object size:0x8 scope:local hidden
@617 = extab:0x80006910; // type:object size:0x8 scope:local hidden
@721 = extab:0x80006918; // type:object size:0x8 scope:local hidden
@733 = extab:0x80006920; // type:object size:0x8 scope:local hidden
@755 = extab:0x80006928; // type:object size:0x8 scope:local hidden
@776 = extab:0x80006930; // type:object size:0x8 scope:local hidden
@797 = extab:0x80006938; // type:object size:0x8 scope:local hidden
@820 = extab:0x80006940; // type:object size:0x8 scope:local hidden
@858 = extab:0x80006948; // type:object size:0x8 scope:local hidden
@892 = extab:0x80006950; // type:object size:0x8 scope:local hidden
@920 = extab:0x80006958; // type:object size:0x8 scope:local hidden
@936 = extab:0x80006960; // type:object size:0x8 scope:local hidden
@943 = extab:0x80006968; // type:object size:0x8 scope:local hidden
@954 = extab:0x80006970; // type:object size:0x8 scope:local hidden
@972 = extab:0x80006978; // type:object size:0x8 scope:local hidden
@1107 = extab:0x80006980; // type:object size:0x8 scope:local hidden
@453 = extab:0x80006988; // type:object size:0x8 scope:local hidden
@8 = extab:0x80006990; // type:object size:0x8 scope:local hidden
@215 = extab:0x80006998; // type:object size:0x8 scope:local hidden
@eti_800069A0 = extabindex:0x800069A0; // type:object size:0xC scope:local hidden
@eti_800069AC = extabindex:0x800069AC; // type:object size:0xC scope:local hidden
@eti_800069B8 = extabindex:0x800069B8; // type:object size:0xC scope:local hidden
@eti_800069C4 = extabindex:0x800069C4; // type:object size:0xC scope:local hidden
@eti_800069D0 = extabindex:0x800069D0; // type:object size:0xC scope:local hidden
@eti_800069DC = extabindex:0x800069DC; // type:object size:0xC scope:local hidden
@eti_800069E8 = extabindex:0x800069E8; // type:object size:0xC scope:local hidden
@eti_800069F4 = extabindex:0x800069F4; // type:object size:0xC scope:local hidden
@eti_80006A00 = extabindex:0x80006A00; // type:object size:0xC scope:local hidden
@eti_80006A0C = extabindex:0x80006A0C; // type:object size:0xC scope:local hidden
@eti_80006A18 = extabindex:0x80006A18; // type:object size:0xC scope:local hidden
@eti_80006A24 = extabindex:0x80006A24; // type:object size:0xC scope:local hidden
@eti_80006A30 = extabindex:0x80006A30; // type:object size:0xC scope:local hidden
@eti_80006A3C = extabindex:0x80006A3C; // type:object size:0xC scope:local hidden
@eti_80006A48 = extabindex:0x80006A48; // type:object size:0xC scope:local hidden
@eti_80006A54 = extabindex:0x80006A54; // type:object size:0xC scope:local hidden
@eti_80006A60 = extabindex:0x80006A60; // type:object size:0xC scope:local hidden
@eti_80006A6C = extabindex:0x80006A6C; // type:object size:0xC scope:local hidden
@eti_80006A78 = extabindex:0x80006A78; // type:object size:0xC scope:local hidden
@eti_80006A84 = extabindex:0x80006A84; // type:object size:0xC scope:local hidden
@eti_80006A90 = extabindex:0x80006A90; // type:object size:0xC scope:local hidden
@eti_80006A9C = extabindex:0x80006A9C; // type:object size:0xC scope:local hidden
@eti_80006AA8 = extabindex:0x80006AA8; // type:object size:0xC scope:local hidden
@eti_80006AB4 = extabindex:0x80006AB4; // type:object size:0xC scope:local hidden
@eti_80006AC0 = extabindex:0x80006AC0; // type:object size:0xC scope:local hidden
@eti_80006ACC = extabindex:0x80006ACC; // type:object size:0xC scope:local hidden
@eti_80006AD8 = extabindex:0x80006AD8; // type:object size:0xC scope:local hidden
@eti_80006AE4 = extabindex:0x80006AE4; // type:object size:0xC scope:local hidden
@eti_80006AF0 = extabindex:0x80006AF0; // type:object size:0xC scope:local hidden
@eti_80006AFC = extabindex:0x80006AFC; // type:object size:0xC scope:local hidden
@eti_80006B08 = extabindex:0x80006B08; // type:object size:0xC scope:local hidden
@eti_80006B14 = extabindex:0x80006B14; // type:object size:0xC scope:local hidden
@eti_80006B20 = extabindex:0x80006B20; // type:object size:0xC scope:local hidden
@eti_80006B2C = extabindex:0x80006B2C; // type:object size:0xC scope:local hidden
@eti_80006B38 = extabindex:0x80006B38; // type:object size:0xC scope:local hidden
@eti_80006B44 = extabindex:0x80006B44; // type:object size:0xC scope:local hidden
@eti_80006B50 = extabindex:0x80006B50; // type:object size:0xC scope:local hidden
@eti_80006B5C = extabindex:0x80006B5C; // type:object size:0xC scope:local hidden
@eti_80006B68 = extabindex:0x80006B68; // type:object size:0xC scope:local hidden
@eti_80006B74 = extabindex:0x80006B74; // type:object size:0xC scope:local hidden
@eti_80006B80 = extabindex:0x80006B80; // type:object size:0xC scope:local hidden
@eti_80006B8C = extabindex:0x80006B8C; // type:object size:0xC scope:local hidden
@eti_80006B98 = extabindex:0x80006B98; // type:object size:0xC scope:local hidden
@eti_80006BA4 = extabindex:0x80006BA4; // type:object size:0xC scope:local hidden
@eti_80006BB0 = extabindex:0x80006BB0; // type:object size:0xC scope:local hidden
@eti_80006BBC = extabindex:0x80006BBC; // type:object size:0xC scope:local hidden
@eti_80006BC8 = extabindex:0x80006BC8; // type:object size:0xC scope:local hidden
@eti_80006BD4 = extabindex:0x80006BD4; // type:object size:0xC scope:local hidden
@eti_80006BE0 = extabindex:0x80006BE0; // type:object size:0xC scope:local hidden
@eti_80006BEC = extabindex:0x80006BEC; // type:object size:0xC scope:local hidden
@eti_80006BF8 = extabindex:0x80006BF8; // type:object size:0xC scope:local hidden
@eti_80006C04 = extabindex:0x80006C04; // type:object size:0xC scope:local hidden
@eti_80006C10 = extabindex:0x80006C10; // type:object size:0xC scope:local hidden
@eti_80006C1C = extabindex:0x80006C1C; // type:object size:0xC scope:local hidden
@eti_80006C28 = extabindex:0x80006C28; // type:object size:0xC scope:local hidden
@eti_80006C34 = extabindex:0x80006C34; // type:object size:0xC scope:local hidden
@eti_80006C40 = extabindex:0x80006C40; // type:object size:0xC scope:local hidden
@eti_80006C4C = extabindex:0x80006C4C; // type:object size:0xC scope:local hidden
@eti_80006C58 = extabindex:0x80006C58; // type:object size:0xC scope:local hidden
@eti_80006C64 = extabindex:0x80006C64; // type:object size:0xC scope:local hidden
@eti_80006C70 = extabindex:0x80006C70; // type:object size:0xC scope:local hidden
@eti_80006C7C = extabindex:0x80006C7C; // type:object size:0xC scope:local hidden
@eti_80006C88 = extabindex:0x80006C88; // type:object size:0xC scope:local hidden
@eti_80006C94 = extabindex:0x80006C94; // type:object size:0xC scope:local hidden
@eti_80006CA0 = extabindex:0x80006CA0; // type:object size:0xC scope:local hidden
@eti_80006CAC = extabindex:0x80006CAC; // type:object size:0xC scope:local hidden
@801 = extabindex:0x80006CB8; // type:object size:0xC scope:local hidden
@849 = extabindex:0x80006CC4; // type:object size:0xC scope:local hidden
@865 = extabindex:0x80006CD0; // type:object size:0xC scope:local hidden
@969 = extabindex:0x80006CDC; // type:object size:0xC scope:local hidden
@997 = extabindex:0x80006CE8; // type:object size:0xC scope:local hidden
@1040 = extabindex:0x80006CF4; // type:object size:0xC scope:local hidden
@1059 = extabindex:0x80006D00; // type:object size:0xC scope:local hidden
@123 = extabindex:0x80006D0C; // type:object size:0xC scope:local hidden
@129 = extabindex:0x80006D18; // type:object size:0xC scope:local hidden
@836 = extabindex:0x80006D24; // type:object size:0xC scope:local hidden
@867 = extabindex:0x80006D30; // type:object size:0xC scope:local hidden
@918 = extabindex:0x80006D3C; // type:object size:0xC scope:local hidden
@1045 = extabindex:0x80006D48; // type:object size:0xC scope:local hidden
@1063 = extabindex:0x80006D54; // type:object size:0xC scope:local hidden
@1095 = extabindex:0x80006D60; // type:object size:0xC scope:local hidden
@1202 = extabindex:0x80006D6C; // type:object size:0xC scope:local hidden
@119 = extabindex:0x80006D78; // type:object size:0xC scope:local hidden
@144 = extabindex:0x80006D84; // type:object size:0xC scope:local hidden
@60 = extabindex:0x80006D90; // type:object size:0xC scope:local hidden
@63 = extabindex:0x80006D9C; // type:object size:0xC scope:local hidden
@203 = extabindex:0x80006DA8; // type:object size:0xC scope:local hidden
@273 = extabindex:0x80006DB4; // type:object size:0xC scope:local hidden
@287 = extabindex:0x80006DC0; // type:object size:0xC scope:local hidden
@333 = extabindex:0x80006DCC; // type:object size:0xC scope:local hidden
@165 = extabindex:0x80006DD8; // type:object size:0xC scope:local hidden
@158 = extabindex:0x80006DE4; // type:object size:0xC scope:local hidden
@174 = extabindex:0x80006DF0; // type:object size:0xC scope:local hidden
@99 = extabindex:0x80006DFC; // type:object size:0xC scope:local hidden
@111 = extabindex:0x80006E08; // type:object size:0xC scope:local hidden
@1642 = extabindex:0x80006E14; // type:object size:0xC scope:local hidden
@1716 = extabindex:0x80006E20; // type:object size:0xC scope:local hidden
@1782 = extabindex:0x80006E2C; // type:object size:0xC scope:local hidden
@1961 = extabindex:0x80006E38; // type:object size:0xC scope:local hidden
@2099 = extabindex:0x80006E44; // type:object size:0xC scope:local hidden
@2108 = extabindex:0x80006E50; // type:object size:0xC scope:local hidden
@2121 = extabindex:0x80006E5C; // type:object size:0xC scope:local hidden
@2126 = extabindex:0x80006E68; // type:object size:0xC scope:local hidden
@2132 = extabindex:0x80006E74; // type:object size:0xC scope:local hidden
@2138 = extabindex:0x80006E80; // type:object size:0xC scope:local hidden
@2148 = extabindex:0x80006E8C; // type:object size:0xC scope:local hidden
@2157 = extabindex:0x80006E98; // type:object size:0xC scope:local hidden
@2166 = extabindex:0x80006EA4; // type:object size:0xC scope:local hidden
@2174 = extabindex:0x80006EB0; // type:object size:0xC scope:local hidden
@140 = extabindex:0x80006EBC; // type:object size:0xC scope:local hidden
@1104 = extabindex:0x80006EC8; // type:object size:0xC scope:local hidden
@1359 = extabindex:0x80006ED4; // type:object size:0xC scope:local hidden
@1376 = extabindex:0x80006EE0; // type:object size:0xC scope:local hidden
@39 = extabindex:0x80006EEC; // type:object size:0xC scope:local hidden
@419 = extabindex:0x80006EF8; // type:object size:0xC scope:local hidden
@433 = extabindex:0x80006F04; // type:object size:0xC scope:local hidden
@447 = extabindex:0x80006F10; // type:object size:0xC scope:local hidden
@1219 = extabindex:0x80006F1C; // type:object size:0xC scope:local hidden
@618 = extabindex:0x80006F28; // type:object size:0xC scope:local hidden
@722 = extabindex:0x80006F34; // type:object size:0xC scope:local hidden
@734 = extabindex:0x80006F40; // type:object size:0xC scope:local hidden
@756 = extabindex:0x80006F4C; // type:object size:0xC scope:local hidden
@777 = extabindex:0x80006F58; // type:object size:0xC scope:local hidden
@798 = extabindex:0x80006F64; // type:object size:0xC scope:local hidden
@821 = extabindex:0x80006F70; // type:object size:0xC scope:local hidden
@859 = extabindex:0x80006F7C; // type:object size:0xC scope:local hidden
@893 = extabindex:0x80006F88; // type:object size:0xC scope:local hidden
@921 = extabindex:0x80006F94; // type:object size:0xC scope:local hidden
@937 = extabindex:0x80006FA0; // type:object size:0xC scope:local hidden
@944 = extabindex:0x80006FAC; // type:object size:0xC scope:local hidden
@955 = extabindex:0x80006FB8; // type:object size:0xC scope:local hidden
@973 = extabindex:0x80006FC4; // type:object size:0xC scope:local hidden
@1108 = extabindex:0x80006FD0; // type:object size:0xC scope:local hidden
@454 = extabindex:0x80006FDC; // type:object size:0xC scope:local hidden
@9 = extabindex:0x80006FE8; // type:object size:0xC scope:local hidden
@216 = extabindex:0x80006FF4; // type:object size:0xC scope:local hidden
_eti_init_info = extabindex:0x80007000; // type:object size:0x20 scope:global
simulatorDEMODoneRender = .text:0x80007020; // type:function size:0xA4
simulatorDVDShowError = .text:0x800070C4; // type:function size:0x8
simulatorDVDOpen = .text:0x800070CC; // type:function size:0x8
simulatorDVDRead = .text:0x800070D4; // type:function size:0x8
simulatorShowLoad = .text:0x800070DC; // type:function size:0x8
simulatorParseArguments = .text:0x800070E4; // type:function size:0x184 scope:local
simulatorGetArgument = .text:0x80007268; // type:function size:0x3C
xlMain = .text:0x800072A4; // type:function size:0x228
systemSetStorageDevice = .text:0x800074CC; // type:function size:0x154
systemCreateStorageDevice = .text:0x80007620; // type:function size:0x174
systemSetupGameRAM = .text:0x80007794; // type:function size:0x1A8 scope:local
systemSetupGameALL = .text:0x8000793C; // type:function size:0x276C scope:local
systemGetException = .text:0x8000A0A8; // type:function size:0x1DC scope:local
systemGet8 = .text:0x8000A284; // type:function size:0x40 scope:local
systemGet16 = .text:0x8000A2C4; // type:function size:0x40 scope:local
systemGet32 = .text:0x8000A304; // type:function size:0x40 scope:local
systemGet64 = .text:0x8000A344; // type:function size:0x44 scope:local
systemPut8 = .text:0x8000A388; // type:function size:0x38 scope:local
systemPut16 = .text:0x8000A3C0; // type:function size:0x38 scope:local
systemPut32 = .text:0x8000A3F8; // type:function size:0x38 scope:local
systemPut64 = .text:0x8000A430; // type:function size:0x38 scope:local
systemGetBlock = .text:0x8000A468; // type:function size:0x9C scope:local
fn_8000A504 = .text:0x8000A504; // type:function size:0x1A0
fn_8000A6A4 = .text:0x8000A6A4; // type:function size:0xBC
systemSetMode = .text:0x8000A760; // type:function size:0x6C
systemGetMode = .text:0x8000A7CC; // type:function size:0x64
fn_8000A830 = .text:0x8000A830; // type:function size:0x78
fn_8000A8A8 = .text:0x8000A8A8; // type:function size:0x7C
systemReset = .text:0x8000A924; // type:function size:0x2E0
systemExecute = .text:0x8000AC04; // type:function size:0xE4
systemCheckInterrupts = .text:0x8000ACE8; // type:function size:0x168
systemExceptionPending = .text:0x8000AE50; // type:function size:0x30
systemEvent = .text:0x8000AE80; // type:function size:0x290
aiPut8 = .text:0x8000B110; // type:function size:0x8
aiPut16 = .text:0x8000B118; // type:function size:0x8
aiPut32 = .text:0x8000B120; // type:function size:0x13C
aiPut64 = .text:0x8000B25C; // type:function size:0x8
aiGet8 = .text:0x8000B264; // type:function size:0x8
aiGet16 = .text:0x8000B26C; // type:function size:0x8
aiGet32 = .text:0x8000B274; // type:function size:0xF4
aiGet64 = .text:0x8000B368; // type:function size:0x8
aiEnable = .text:0x8000B370; // type:function size:0x4C
aiEvent = .text:0x8000B3BC; // type:function size:0x120
viPut8 = .text:0x8000B4DC; // type:function size:0x8
viPut16 = .text:0x8000B4E4; // type:function size:0x8
viPut32 = .text:0x8000B4EC; // type:function size:0x2BC
viPut64 = .text:0x8000B7A8; // type:function size:0x8
viGet8 = .text:0x8000B7B0; // type:function size:0x8
viGet16 = .text:0x8000B7B8; // type:function size:0x8
viGet32 = .text:0x8000B7C0; // type:function size:0x118
viGet64 = .text:0x8000B8D8; // type:function size:0x8
viForceRetrace = .text:0x8000B8E0; // type:function size:0x6C
viEvent = .text:0x8000B94C; // type:function size:0x150
siPut8 = .text:0x8000BA9C; // type:function size:0x8
siPut16 = .text:0x8000BAA4; // type:function size:0x8
siPut32 = .text:0x8000BAAC; // type:function size:0x13C
siPut64 = .text:0x8000BBE8; // type:function size:0x8
siGet8 = .text:0x8000BBF0; // type:function size:0x8
siGet16 = .text:0x8000BBF8; // type:function size:0x8
siGet32 = .text:0x8000BC00; // type:function size:0xA0
siGet64 = .text:0x8000BCA0; // type:function size:0x8
siEvent = .text:0x8000BCA8; // type:function size:0xEC
piDMA_Complete = .text:0x8000BD94; // type:function size:0xA8
piPut8 = .text:0x8000BE3C; // type:function size:0x8
piPut16 = .text:0x8000BE44; // type:function size:0x8
piPut32 = .text:0x8000BE4C; // type:function size:0x288
piPut64 = .text:0x8000C0D4; // type:function size:0x8
piGet8 = .text:0x8000C0DC; // type:function size:0x8
piGet16 = .text:0x8000C0E4; // type:function size:0x8
piGet32 = .text:0x8000C0EC; // type:function size:0xF4
piGet64 = .text:0x8000C1E0; // type:function size:0x8
piEvent = .text:0x8000C1E8; // type:function size:0x10C
miSetInterrupt = .text:0x8000C2F4; // type:function size:0xE8
miResetInterrupt = .text:0x8000C3DC; // type:function size:0xA0
miPut8 = .text:0x8000C47C; // type:function size:0x8
miPut16 = .text:0x8000C484; // type:function size:0x8
miPut32 = .text:0x8000C48C; // type:function size:0x204
miPut64 = .text:0x8000C690; // type:function size:0x8
miGet8 = .text:0x8000C698; // type:function size:0x8
miGet16 = .text:0x8000C6A0; // type:function size:0x8
miGet32 = .text:0x8000C6A8; // type:function size:0x68
miGet64 = .text:0x8000C710; // type:function size:0x8
miEvent = .text:0x8000C718; // type:function size:0x110
diskPutROM8 = .text:0x8000C828; // type:function size:0x8
diskPutROM16 = .text:0x8000C830; // type:function size:0x8
diskPutROM32 = .text:0x8000C838; // type:function size:0x8
diskPutROM64 = .text:0x8000C840; // type:function size:0x8
diskGetROM8 = .text:0x8000C848; // type:function size:0x10
diskGetROM16 = .text:0x8000C858; // type:function size:0x10
diskGetROM32 = .text:0x8000C868; // type:function size:0x10
diskGetROM64 = .text:0x8000C878; // type:function size:0x14
diskPutDrive8 = .text:0x8000C88C; // type:function size:0x8
diskPutDrive16 = .text:0x8000C894; // type:function size:0x8
diskPutDrive32 = .text:0x8000C89C; // type:function size:0x2C
diskPutDrive64 = .text:0x8000C8C8; // type:function size:0x8
diskGetDrive8 = .text:0x8000C8D0; // type:function size:0x8
diskGetDrive16 = .text:0x8000C8D8; // type:function size:0x8
diskGetDrive32 = .text:0x8000C8E0; // type:function size:0x38
diskGetDrive64 = .text:0x8000C918; // type:function size:0x8
diskGetBlock = .text:0x8000C920; // type:function size:0x4C
diskEvent = .text:0x8000C96C; // type:function size:0x1B0
cpuHackHandler = .text:0x8000CB1C; // type:function size:0x1FC
cpuFreeCachedAddress = .text:0x8000CD18; // type:function size:0x90
cpuFindCachedAddress = .text:0x8000CDA8; // type:function size:0x1D4
cpuTestInterrupt = .text:0x8000CF7C; // type:function size:0x80
cpuException = .text:0x8000CFFC; // type:function size:0x254
cpuMakeDevice = .text:0x8000D250; // type:function size:0x330
cpuMapAddress = .text:0x8000D580; // type:function size:0x16C
cpuSetTLB = .text:0x8000D6EC; // type:function size:0x7D0
cpuGetMode = .text:0x8000DEBC; // type:function size:0x9C
cpuGetSize = .text:0x8000DF58; // type:function size:0xFC
cpuSetCP0_Status = .text:0x8000E054; // type:function size:0x94
cpuSetRegisterCP0 = .text:0x8000E0E8; // type:function size:0x1C8
cpuGetRegisterCP0 = .text:0x8000E2B0; // type:function size:0x18C
__cpuERET = .text:0x8000E43C; // type:function size:0x68
__cpuBreak = .text:0x8000E4A4; // type:function size:0x14
cpuFindBranchOffset = .text:0x8000E4B8; // type:function size:0x6C
cpuCheckDelaySlot = .text:0x8000E524; // type:function size:0x130
cpuCompileNOP = .text:0x8000E654; // type:function size:0xE0
fn_8000E734 = .text:0x8000E734; // type:function size:0xE8
fn_8000E81C = .text:0x8000E81C; // type:function size:0x28C
cpuGetPPC = .text:0x8000EAA8; // type:function size:0x232A4
fn_80031D4C = .text:0x80031D4C; // type:function size:0x8
cpuMakeFunction = .text:0x80031D54; // type:function size:0x4F4
cpuFindAddress = .text:0x80032248; // type:function size:0x488
cpuCutStoreLoad = .text:0x800326D0; // type:function size:0xB0
cpuCutStoreLoadF = .text:0x80032780; // type:function size:0xB0
cpuStackOffset = .text:0x80032830; // type:function size:0xBC
cpuNextInstruction = .text:0x800328EC; // type:function size:0x288
cpuRetraceCallback = .text:0x80032B74; // type:function size:0x24
cpuExecuteUpdate = .text:0x80032B98; // type:function size:0x34C
cpuCompile_DSLLV = .text:0x80032EE4; // type:function size:0x164
cpuCompile_DSRLV = .text:0x80033048; // type:function size:0x164
cpuCompile_DSRAV = .text:0x800331AC; // type:function size:0x170
cpuCompile_DMULT = .text:0x8003331C; // type:function size:0x358
cpuCompile_DMULTU = .text:0x80033674; // type:function size:0x238
cpuCompile_DDIV = .text:0x800338AC; // type:function size:0x3B8
cpuCompile_DDIVU = .text:0x80033C64; // type:function size:0x2C0
cpuCompile_S_SQRT = .text:0x80033F24; // type:function size:0x21C
cpuCompile_D_SQRT = .text:0x80034140; // type:function size:0x2B8
cpuCompile_W_CVT_SD = .text:0x800343F8; // type:function size:0x134
cpuCompile_L_CVT_SD = .text:0x8003452C; // type:function size:0x3C4
cpuCompile_CEIL_W = .text:0x800348F0; // type:function size:0x148
cpuCompile_FLOOR_W = .text:0x80034A38; // type:function size:0x148
cpuCompile_LB = .text:0x80034B80; // type:function size:0x110
cpuCompile_LH = .text:0x80034C90; // type:function size:0x110
cpuCompile_LW = .text:0x80034DA0; // type:function size:0x104
cpuCompile_LBU = .text:0x80034EA4; // type:function size:0x104
cpuCompile_LHU = .text:0x80034FA8; // type:function size:0x104
cpuCompile_SB = .text:0x800350AC; // type:function size:0x108
cpuCompile_SH = .text:0x800351B4; // type:function size:0x108
cpuCompile_SW = .text:0x800352BC; // type:function size:0x108
cpuCompile_LDC = .text:0x800353C4; // type:function size:0x124
cpuCompile_SDC = .text:0x800354E8; // type:function size:0x124
cpuCompile_LWL = .text:0x8003560C; // type:function size:0x124
cpuCompile_LWR = .text:0x80035730; // type:function size:0x120
cpuExecuteOpcode = .text:0x80035850; // type:function size:0x43D4
cpuExecuteIdle = .text:0x80039C24; // type:function size:0xE0
cpuExecuteJump = .text:0x80039D04; // type:function size:0xA0
cpuExecuteCall = .text:0x80039DA4; // type:function size:0x240
cpuExecuteLoadStore = .text:0x80039FE4; // type:function size:0xDE0
cpuExecuteLoadStoreF = .text:0x8003ADC4; // type:function size:0xAB8
cpuMakeLink = .text:0x8003B87C; // type:function size:0x234
cpuExecute = .text:0x8003BAB0; // type:function size:0xB64
cpuMapObject = .text:0x8003C614; // type:function size:0xF4
cpuGetBlock = .text:0x8003C708; // type:function size:0x9C
cpuSetGetBlock = .text:0x8003C7A4; // type:function size:0xC
cpuSetDeviceGet = .text:0x8003C7B0; // type:function size:0x18
cpuSetDevicePut = .text:0x8003C7C8; // type:function size:0x18
cpuSetCodeHack = .text:0x8003C7E0; // type:function size:0x6C
cpuReset = .text:0x8003C84C; // type:function size:0x704
cpuGetXPC = .text:0x8003CF50; // type:function size:0xB4
cpuSetXPC = .text:0x8003D004; // type:function size:0x84
cpuEvent = .text:0x8003D088; // type:function size:0x2BC
cpuGetAddressOffset = .text:0x8003D344; // type:function size:0x6C
cpuGetAddressBuffer = .text:0x8003D3B0; // type:function size:0xCC
cpuGetOffsetAddress = .text:0x8003D47C; // type:function size:0x180
cpuInvalidateCache = .text:0x8003D5FC; // type:function size:0x80
cpuGetFunctionChecksum = .text:0x8003D67C; // type:function size:0x1D8
cpuHeapTake = .text:0x8003D854; // type:function size:0x244
cpuHeapFree = .text:0x8003DA98; // type:function size:0xEC
cpuTreeTake = .text:0x8003DB84; // type:function size:0xC8
cpuFindFunction = .text:0x8003DC4C; // type:function size:0x9B8
cpuDMAUpdateFunction = .text:0x8003E604; // type:function size:0x150
treeCallerCheck = .text:0x8003E754; // type:function size:0x108
treeInit = .text:0x8003E85C; // type:function size:0x58
treeInitNode = .text:0x8003E8B4; // type:function size:0x11C
treeKill = .text:0x8003E9D0; // type:function size:0x2D0
treeKillNodes = .text:0x8003ECA0; // type:function size:0x318
treeDeleteNode = .text:0x8003EFB8; // type:function size:0x378
fn_8003F330 = .text:0x8003F330; // type:function size:0x6C
treeInsert = .text:0x8003F39C; // type:function size:0x110
treeInsertNode = .text:0x8003F4AC; // type:function size:0xE0
treeBalance = .text:0x8003F58C; // type:function size:0x190
treeAdjustRoot = .text:0x8003F71C; // type:function size:0x1E4
treeSearchNode = .text:0x8003F900; // type:function size:0x64
treeKillRange = .text:0x8003F964; // type:function size:0x7E4
treeTimerCheck = .text:0x80040148; // type:function size:0x110
treeCleanUpCheck = .text:0x80040258; // type:function size:0x14C
treeCleanUp = .text:0x800403A4; // type:function size:0x12C
treeCleanNodes = .text:0x800404D0; // type:function size:0x2D4
treeForceCleanNodes = .text:0x800407A4; // type:function size:0x1D0
treePrintNode = .text:0x80040974; // type:function size:0x1B0
pifContDataCrc = .text:0x80040B24; // type:function size:0xD0 scope:local
fn_80040BF4 = .text:0x80040BF4; // type:function size:0xB0
pifExecuteCommand = .text:0x80040CA4; // type:function size:0x338
pifProcessInputData = .text:0x80040FDC; // type:function size:0x19C
pifProcessOutputData = .text:0x80041178; // type:function size:0x1A8
pifPut8 = .text:0x80041320; // type:function size:0x24 scope:local
pifPut16 = .text:0x80041344; // type:function size:0x28 scope:local
pifPut32 = .text:0x8004136C; // type:function size:0x28 scope:local
pifPut64 = .text:0x80041394; // type:function size:0x34 scope:local
pifGet8 = .text:0x800413C8; // type:function size:0x34 scope:local
pifGet16 = .text:0x800413FC; // type:function size:0x3C scope:local
pifGet32 = .text:0x80041438; // type:function size:0x3C scope:local
pifGet64 = .text:0x80041474; // type:function size:0x4C scope:local
pifSetData = .text:0x800414C0; // type:function size:0x58
pifGetData = .text:0x80041518; // type:function size:0x64
pifSetControllerType = .text:0x8004157C; // type:function size:0x114
pifEvent = .text:0x80041690; // type:function size:0x1B4
ramPutControl8 = .text:0x80041844; // type:function size:0x8 scope:local
ramPutControl16 = .text:0x8004184C; // type:function size:0x8 scope:local
ramPutControl32 = .text:0x80041854; // type:function size:0xAC scope:local
ramPutControl64 = .text:0x80041900; // type:function size:0x8 scope:local
ramGetControl8 = .text:0x80041908; // type:function size:0x8 scope:local
ramGetControl16 = .text:0x80041910; // type:function size:0x8 scope:local
ramGetControl32 = .text:0x80041918; // type:function size:0xB4 scope:local
ramGetControl64 = .text:0x800419CC; // type:function size:0x8 scope:local
ramPutRI8 = .text:0x800419D4; // type:function size:0x8 scope:local
ramPutRI16 = .text:0x800419DC; // type:function size:0x8 scope:local
ramPutRI32 = .text:0x800419E4; // type:function size:0x80 scope:local
ramPutRI64 = .text:0x80041A64; // type:function size:0x8 scope:local
ramGetRI8 = .text:0x80041A6C; // type:function size:0x8 scope:local
ramGetRI16 = .text:0x80041A74; // type:function size:0x8 scope:local
ramGetRI32 = .text:0x80041A7C; // type:function size:0x8C scope:local
ramGetRI64 = .text:0x80041B08; // type:function size:0x8 scope:local
ramPut8 = .text:0x80041B10; // type:function size:0x24 scope:local
ramPut16 = .text:0x80041B34; // type:function size:0x28 scope:local
ramPut32 = .text:0x80041B5C; // type:function size:0x28 scope:local
ramPut64 = .text:0x80041B84; // type:function size:0x34 scope:local
ramGet8 = .text:0x80041BB8; // type:function size:0x30 scope:local
ramGet16 = .text:0x80041BE8; // type:function size:0x34 scope:local
ramGet32 = .text:0x80041C1C; // type:function size:0x34 scope:local
ramGet64 = .text:0x80041C50; // type:function size:0x40 scope:local
ramGetBlock = .text:0x80041C90; // type:function size:0x4C scope:local
ramGetBuffer = .text:0x80041CDC; // type:function size:0x58
ramWipe = .text:0x80041D34; // type:function size:0x48
ramSetSize = .text:0x80041D7C; // type:function size:0x70
ramGetSize = .text:0x80041DEC; // type:function size:0x18
ramEvent = .text:0x80041E04; // type:function size:0x260
fn_80042064 = .text:0x80042064; // type:function size:0x18
romFindFreeCache = .text:0x8004207C; // type:function size:0x1DC scope:local
romFindOldestBlock = .text:0x80042258; // type:function size:0xF0 scope:local
romMakeFreeCache = .text:0x80042348; // type:function size:0x1FC scope:local
romSetBlockCache = .text:0x80042544; // type:function size:0x19C scope:local
__romLoadBlock_Complete = .text:0x800426E0; // type:function size:0xE4 scope:local
__romLoadBlock_CompleteGCN = .text:0x800427C4; // type:function size:0x1C scope:local
romLoadBlock = .text:0x800427E0; // type:function size:0xEC scope:local
__romLoadUpdate_Complete = .text:0x800428CC; // type:function size:0x1C scope:local
romLoadUpdate = .text:0x800428E8; // type:function size:0x14C scope:local
__romCopyUpdate_Complete = .text:0x80042A34; // type:function size:0x1C scope:local
romCopyUpdate = .text:0x80042A50; // type:function size:0x248 scope:local
fn_80042C98 = .text:0x80042C98; // type:function size:0x16C
__ROMEntry = .text:0x80042E04; // type:function size:0x2C scope:local
fn_80042E30 = .text:0x80042E30; // type:function size:0x38
romLoadFullOrPart = .text:0x80042E68; // type:function size:0x36C scope:local
romGetPC = .text:0x800431D4; // type:function size:0x218
romGetCode = .text:0x800433EC; // type:function size:0x30
romPut8 = .text:0x8004341C; // type:function size:0x8 scope:local
romPut16 = .text:0x80043424; // type:function size:0x8 scope:local
romPut32 = .text:0x8004342C; // type:function size:0x8 scope:local
romPut64 = .text:0x80043434; // type:function size:0x8 scope:local
romGet8 = .text:0x8004343C; // type:function size:0x68 scope:local
romGet16 = .text:0x800434A4; // type:function size:0x68 scope:local
romGet32 = .text:0x8004350C; // type:function size:0x68 scope:local
romGet64 = .text:0x80043574; // type:function size:0x70 scope:local
romGetBlock = .text:0x800435E4; // type:function size:0xB8 scope:local
romPutDebug8 = .text:0x8004369C; // type:function size:0x8 scope:local
romPutDebug16 = .text:0x800436A4; // type:function size:0x8 scope:local
romPutDebug32 = .text:0x800436AC; // type:function size:0x8 scope:local
romPutDebug64 = .text:0x800436B4; // type:function size:0x8 scope:local
romGetDebug8 = .text:0x800436BC; // type:function size:0x10 scope:local
romGetDebug16 = .text:0x800436CC; // type:function size:0x10 scope:local
romGetDebug32 = .text:0x800436DC; // type:function size:0x10 scope:local
romGetDebug64 = .text:0x800436EC; // type:function size:0x14 scope:local
romCopy = .text:0x80043700; // type:function size:0x28C
romUpdate = .text:0x8004398C; // type:function size:0x144
romSetImage = .text:0x80043AD0; // type:function size:0x2F4
romGetImage = .text:0x80043DC4; // type:function size:0x48
romGetBuffer = .text:0x80043E0C; // type:function size:0x64
romEvent = .text:0x80043E70; // type:function size:0x238
rdbPut8 = .text:0x800440A8; // type:function size:0x8 scope:local
rdbPut16 = .text:0x800440B0; // type:function size:0x8 scope:local
rdbPut32 = .text:0x800440B8; // type:function size:0x468 scope:local
rdbPut64 = .text:0x80044520; // type:function size:0x8 scope:local
rdbGet8 = .text:0x80044528; // type:function size:0x8 scope:local
rdbGet16 = .text:0x80044530; // type:function size:0x8 scope:local
rdbGet32 = .text:0x80044538; // type:function size:0x34 scope:local
rdbGet64 = .text:0x8004456C; // type:function size:0x8 scope:local
rdbEvent = .text:0x80044574; // type:function size:0x108
pakPut8 = .text:0x8004467C; // type:function size:0x8 scope:local
pakPut16 = .text:0x80044684; // type:function size:0x8 scope:local
pakPut32 = .text:0x8004468C; // type:function size:0x8 scope:local
pakPut64 = .text:0x80044694; // type:function size:0x8 scope:local
pakGet8 = .text:0x8004469C; // type:function size:0x8 scope:local
pakGet16 = .text:0x800446A4; // type:function size:0x8 scope:local
pakGet32 = .text:0x800446AC; // type:function size:0x8 scope:local
pakGet64 = .text:0x800446B4; // type:function size:0x8 scope:local
pakGetBlock = .text:0x800446BC; // type:function size:0x4C scope:local
fn_80044708 = .text:0x80044708; // type:function size:0x74
fn_8004477C = .text:0x8004477C; // type:function size:0x84
pakEvent = .text:0x80044800; // type:function size:0x1B8
sramPut8 = .text:0x800449B8; // type:function size:0x38 scope:local
sramPut16 = .text:0x800449F0; // type:function size:0x38 scope:local
sramPut32 = .text:0x80044A28; // type:function size:0x38 scope:local
sramPut64 = .text:0x80044A60; // type:function size:0x38 scope:local
sramGet8 = .text:0x80044A98; // type:function size:0x38 scope:local
sramGet16 = .text:0x80044AD0; // type:function size:0x38 scope:local
sramGet32 = .text:0x80044B08; // type:function size:0x38 scope:local
sramGet64 = .text:0x80044B40; // type:function size:0x38 scope:local
sramGetBlock = .text:0x80044B78; // type:function size:0xF4 scope:local
sramEvent = .text:0x80044C6C; // type:function size:0x194
flashPut8 = .text:0x80044E00; // type:function size:0x8 scope:local
flashPut16 = .text:0x80044E08; // type:function size:0x8 scope:local
flashPut32 = .text:0x80044E10; // type:function size:0x2FC scope:local
flashPut64 = .text:0x8004510C; // type:function size:0x8 scope:local
flashGet8 = .text:0x80045114; // type:function size:0x8 scope:local
flashGet16 = .text:0x8004511C; // type:function size:0x8 scope:local
flashGet32 = .text:0x80045124; // type:function size:0x2C scope:local
flashGet64 = .text:0x80045150; // type:function size:0x8 scope:local
flashGetBlock = .text:0x80045158; // type:function size:0x108 scope:local
fn_80045260 = .text:0x80045260; // type:function size:0x50
fn_800452B0 = .text:0x800452B0; // type:function size:0x50
flashGetSize = .text:0x80045300; // type:function size:0x10
flashEvent = .text:0x80045310; // type:function size:0x1DC
SetTableTevStages = .text:0x800454EC; // type:function size:0x3B4
SetNumTexGensChans = .text:0x800458A0; // type:function size:0x164
SetTevStages = .text:0x80045A04; // type:function size:0x344
SetTevStageTable = .text:0x80045D48; // type:function size:0x84
SetColor = .text:0x80045DCC; // type:function size:0xFC
SetAlpha = .text:0x80045EC8; // type:function size:0x10C
AddAlphaTevOrder = .text:0x80045FD4; // type:function size:0x120
SetupStage = .text:0x800460F4; // type:function size:0x2A58
BuildCycle = .text:0x80048B4C; // type:function size:0xE8
BuildCombineModeTev = .text:0x80048C34; // type:function size:0x73C
frameConvertYUVtoRGB = .text:0x80049370; // type:function size:0xC8
packTakeBlocks = .text:0x80049438; // type:function size:0xB4
frameMakeTexture = .text:0x800494EC; // type:function size:0xD0
frameResetCache = .text:0x800495BC; // type:function size:0x2E0
frameSetupCache = .text:0x8004989C; // type:function size:0x10C
frameUpdateCache = .text:0x800499A8; // type:function size:0x254
frameLoadTile = .text:0x80049BFC; // type:function size:0x424
fn_8004A020 = .text:0x8004A020; // type:function size:0x2F4
fn_8004A314 = .text:0x8004A314; // type:function size:0x388
frameDrawSetupFog_StarFox = .text:0x8004A69C; // type:function size:0x200
frameDrawSetupFog_Default = .text:0x8004A89C; // type:function size:0x200
ZeldaDrawFrame = .text:0x8004AA9C; // type:function size:0x324
ZeldaGreyScaleConvert = .text:0x8004ADC0; // type:function size:0x3D8
fn_8004B198 = .text:0x8004B198; // type:function size:0x320
frameHackTIMG_Zelda = .text:0x8004B4B8; // type:function size:0x180
frameHackCIMG_Zelda = .text:0x8004B638; // type:function size:0x308
fn_8004B940 = .text:0x8004B940; // type:function size:0x220
fn_8004BB60 = .text:0x8004BB60; // type:function size:0x128
CopyAndConvertCFB = .text:0x8004BC88; // type:function size:0x16C
fn_8004BDF4 = .text:0x8004BDF4; // type:function size:0x150
fn_8004BF44 = .text:0x8004BF44; // type:function size:0x14
fn_8004BF58 = .text:0x8004BF58; // type:function size:0x2F4
frameDrawDone = .text:0x8004C24C; // type:function size:0x7C
fn_8004C2C8 = .text:0x8004C2C8; // type:function size:0x108
frameMakePixels = .text:0x8004C3D0; // type:function size:0x1790
frameLoadTexture = .text:0x8004DB60; // type:function size:0x2E4
frameDrawSetup2D = .text:0x8004DE44; // type:function size:0x1B0
frameDrawSetupSP = .text:0x8004DFF4; // type:function size:0x728
frameDrawSetupDP = .text:0x8004E71C; // type:function size:0x8C0
frameDrawTriangle_C0T0 = .text:0x8004EFDC; // type:function size:0x120
frameDrawTriangle_C1T0 = .text:0x8004F0FC; // type:function size:0x1A4
frameDrawTriangle_C3T0 = .text:0x8004F2A0; // type:function size:0x2A8
frameDrawTriangle_C0T3 = .text:0x8004F548; // type:function size:0x174
frameDrawTriangle_C1T3 = .text:0x8004F6BC; // type:function size:0x1F8
frameCheckTriangleDivide = .text:0x8004F8B4; // type:function size:0xE5C
frameDrawTriangle_C3T3 = .text:0x80050710; // type:function size:0xD0
frameDrawTriangle_Setup = .text:0x800507E0; // type:function size:0xCC
frameDrawLine_C0T0 = .text:0x800508AC; // type:function size:0x164
frameDrawLine_C1T0 = .text:0x80050A10; // type:function size:0x1C8
frameDrawLine_C2T0 = .text:0x80050BD8; // type:function size:0x1C8
frameDrawLine_C0T2 = .text:0x80050DA0; // type:function size:0x1A8
frameDrawLine_C1T2 = .text:0x80050F48; // type:function size:0x20C
frameDrawLine_C2T2 = .text:0x80051154; // type:function size:0x20C
frameDrawLine_Setup = .text:0x80051360; // type:function size:0xCC
frameDrawRectFill = .text:0x8005142C; // type:function size:0x2B8
frameDrawRectFill_Setup = .text:0x800516E4; // type:function size:0xA0
frameDrawRectTexture = .text:0x80051784; // type:function size:0x3E4
frameDrawRectTexture_Setup = .text:0x80051B68; // type:function size:0x340
frameShow = .text:0x80051EA8; // type:function size:0x8
frameSetScissor = .text:0x80051EB0; // type:function size:0x198
frameSetDepth = .text:0x80052048; // type:function size:0x10
frameSetColor = .text:0x80052058; // type:function size:0x11C
fn_80052174 = .text:0x80052174; // type:function size:0x1C8
frameBeginOK = .text:0x8005233C; // type:function size:0x10
frameBegin = .text:0x8005234C; // type:function size:0x258
frameEnd = .text:0x800525A4; // type:function size:0x7C4
frameGetDepth = .text:0x80052D68; // type:function size:0x244
frameLoadTexturePack = .text:0x80052FAC; // type:function size:0x2F0
fn_8005329C = .text:0x8005329C; // type:function size:0x64
frameEvent = .text:0x80053300; // type:function size:0x400
frameDrawReset = .text:0x80053700; // type:function size:0x44
frameSetFill = .text:0x80053744; // type:function size:0x2C
frameSetSize = .text:0x80053770; // type:function size:0x124
frameSetMode = .text:0x80053894; // type:function size:0x170
frameGetMode = .text:0x80053A04; // type:function size:0x18
frameSetMatrix = .text:0x80053A1C; // type:function size:0x2C4
frameGetMatrix = .text:0x80053CE0; // type:function size:0x118
frameLoadVertex = .text:0x80053DF8; // type:function size:0xB50
frameCullDL = .text:0x80054948; // type:function size:0x140
frameLoadTLUT = .text:0x80054A88; // type:function size:0x174
fn_80054BFC = .text:0x80054BFC; // type:function size:0x294
frameLoadTMEM = .text:0x80054E90; // type:function size:0x750
frameSetLightCount = .text:0x800555E0; // type:function size:0xC
frameSetLight = .text:0x800555EC; // type:function size:0x100
frameSetLookAt = .text:0x800556EC; // type:function size:0x80
frameSetViewport = .text:0x8005576C; // type:function size:0x19C
frameResetUCode = .text:0x80055908; // type:function size:0x74
frameSetBuffer = .text:0x8005597C; // type:function size:0x38
frameSetMatrixHint = .text:0x800559B4; // type:function size:0x10C
frameInvalidateCache = .text:0x80055AC0; // type:function size:0x1D8
frameGetTextureInfo = .text:0x80055C98; // type:function size:0xDC
__osException = .text:0x80055D74; // type:function size:0xB80 scope:local
send_mesg = .text:0x800568F4; // type:function size:0x370 scope:local
__osEnqueueAndYield = .text:0x80056C64; // type:function size:0x2A0 scope:local
__osEnqueueThread = .text:0x80056F04; // type:function size:0x220 scope:local
__osPopThread = .text:0x80057124; // type:function size:0xD4 scope:local
__osDispatchThread = .text:0x800571F8; // type:function size:0x4B8 scope:local
osGetMemSize = .text:0x800576B0; // type:function size:0x54 scope:local
osInvalICache = .text:0x80057704; // type:function size:0x74 scope:local
__osDisableInt = .text:0x80057778; // type:function size:0x8C scope:local
__osRestoreInt = .text:0x80057804; // type:function size:0x7C
__osSpSetStatus = .text:0x80057880; // type:function size:0x48
__cosf = .text:0x800578C8; // type:function size:0x38 scope:local
__sinf = .text:0x80057900; // type:function size:0x38 scope:local
_bzero = .text:0x80057938; // type:function size:0x54
_bcopy = .text:0x8005798C; // type:function size:0x80
_memcpy = .text:0x80057A0C; // type:function size:0x80
osPhysicalToVirtual = .text:0x80057A8C; // type:function size:0x10
osVirtualToPhysical = .text:0x80057A9C; // type:function size:0x74
guOrthoF = .text:0x80057B10; // type:function size:0x254
guOrtho = .text:0x80057D64; // type:function size:0x1F0
guPerspectiveF = .text:0x80057F54; // type:function size:0x2A4
guPerspective = .text:0x800581F8; // type:function size:0x270
GenPerspective_1080 = .text:0x80058468; // type:function size:0xB4
guScaleF = .text:0x8005851C; // type:function size:0x12C
guScale = .text:0x80058648; // type:function size:0x148
guTranslateF = .text:0x80058790; // type:function size:0x124
guTranslate = .text:0x800588B4; // type:function size:0x148
guRotateF = .text:0x800589FC; // type:function size:0x2F8
guRotate = .text:0x80058CF4; // type:function size:0x258
guLookAtF = .text:0x80058F4C; // type:function size:0x344
guLookAt = .text:0x80059290; // type:function size:0x338
guLookAtHiliteF = .text:0x800595C8; // type:function size:0x7EC
guLookAtHilite = .text:0x80059DB4; // type:function size:0x7E0
guLookAtReflectF = .text:0x8005A594; // type:function size:0x508
guLookAtReflect = .text:0x8005AA9C; // type:function size:0x4F4
osAiSetFrequency = .text:0x8005AF90; // type:function size:0x130
osAiSetNextBuffer = .text:0x8005B0C0; // type:function size:0x108
__osEepStatus = .text:0x8005B1C8; // type:function size:0xEC
osEepromRead = .text:0x8005B2B4; // type:function size:0x78
osEepromWrite = .text:0x8005B32C; // type:function size:0x78
osEepromLongRead = .text:0x8005B3A4; // type:function size:0xB4
osEepromLongWrite = .text:0x8005B458; // type:function size:0xB4
fn_8005B50C = .text:0x8005B50C; // type:function size:0x20
fn_8005B52C = .text:0x8005B52C; // type:function size:0x10
fn_8005B53C = .text:0x8005B53C; // type:function size:0x10
fn_8005B54C = .text:0x8005B54C; // type:function size:0x8
fn_8005B554 = .text:0x8005B554; // type:function size:0x10
starfoxCopy = .text:0x8005B564; // type:function size:0x15C
fn_8005B6C0 = .text:0x8005B6C0; // type:function size:0x8
fn_8005B6C8 = .text:0x8005B6C8; // type:function size:0x8
fn_8005B6D0 = .text:0x8005B6D0; // type:function size:0x8
fn_8005B6D8 = .text:0x8005B6D8; // type:function size:0x8
fn_8005B6E0 = .text:0x8005B6E0; // type:function size:0x8
fn_8005B6E8 = .text:0x8005B6E8; // type:function size:0x8
fn_8005B6F0 = .text:0x8005B6F0; // type:function size:0x8
fn_8005B6F8 = .text:0x8005B6F8; // type:function size:0x8
fn_8005B700 = .text:0x8005B700; // type:function size:0x8
fn_8005B708 = .text:0x8005B708; // type:function size:0x8
fn_8005B710 = .text:0x8005B710; // type:function size:0x28
osViSwapBuffer_Entry = .text:0x8005B738; // type:function size:0x68
libraryFindException = .text:0x8005B7A0; // type:function size:0x320 scope:local
libraryFindVariables = .text:0x8005BAC0; // type:function size:0x734 scope:local
libraryFindFunctions = .text:0x8005C1F4; // type:function size:0x4D8 scope:local
libraryTestFunction = .text:0x8005C6CC; // type:function size:0x920
librarySearch = .text:0x8005CFEC; // type:function size:0x568 scope:local
libraryFunctionReplaced = .text:0x8005D554; // type:function size:0xC0
libraryCall = .text:0x8005D614; // type:function size:0xE8
libraryEvent = .text:0x8005D6FC; // type:function size:0xBA0
codeEvent = .text:0x8005E29C; // type:function size:0x34
helpMenuReadNAND = .text:0x8005E2D0; // type:function size:0x18C
helpMenuSetupTexturedQuad = .text:0x8005E45C; // type:function size:0x1DC
helpMenuSetupColoredQuad = .text:0x8005E638; // type:function size:0x1C8
helpMenu_8005E800 = .text:0x8005E800; // type:function size:0x2FC
helpMenu_8005EAFC = .text:0x8005EAFC; // type:function size:0x300
helpMenu_8005EDFC = .text:0x8005EDFC; // type:function size:0x358
helpMenuPowerCallback = .text:0x8005F154; // type:function size:0x4C
helpMenuResetCallback = .text:0x8005F1A0; // type:function size:0x4C
helpMenuSoundCallback = .text:0x8005F1EC; // type:function size:0x8
helpMenuInit = .text:0x8005F1F4; // type:function size:0x4D0
helpMenuSetupSize = .text:0x8005F6C4; // type:function size:0x100
helpMenuAllocateFile = .text:0x8005F7C4; // type:function size:0xF0
helpMenuUpdate = .text:0x8005F8B4; // type:function size:0xFCC
helpMenu_800607B0 = .text:0x80060880; // type:function size:0x14
helpMenu_800607C4 = .text:0x80060894; // type:function size:0xEC
helpMenuEvent = .text:0x80060980; // type:function size:0x19C
soundWipeBuffers = .text:0x80060B1C; // type:function size:0x10C
soundMakeRamp = .text:0x80060C28; // type:function size:0x44C scope:local
soundPlayBuffer = .text:0x80061074; // type:function size:0xC4
soundCallbackDMA = .text:0x80061138; // type:function size:0xC scope:local
soundMakeBuffer = .text:0x80061144; // type:function size:0x1EC
soundSetLength = .text:0x80061330; // type:function size:0x30
soundSetDACRate = .text:0x80061360; // type:function size:0x20
soundSetAddress = .text:0x80061380; // type:function size:0xC
soundGetDMABuffer = .text:0x8006138C; // type:function size:0x34
soundSetBufferSize = .text:0x800613C0; // type:function size:0x174
soundEvent = .text:0x80061534; // type:function size:0x25C
videoEvent = .text:0x80061790; // type:function size:0x34
fn_800616F4 = .text:0x800617C4; // type:function size:0x7C scope:local
fn_80061770 = .text:0x80061840; // type:function size:0x138
storeFreeObject = .text:0x80061978; // type:function size:0x2C
fn_800618D4 = .text:0x800619A4; // type:function size:0x2B4 scope:local
fn_80061B88 = .text:0x80061C58; // type:function size:0x38
fn_80061BC0 = .text:0x80061C90; // type:function size:0x48
fn_80061C08 = .text:0x80061CD8; // type:function size:0x44 scope:local
fn_80061C4C = .text:0x80061D1C; // type:function size:0x60 scope:local
fn_80061CAC = .text:0x80061D7C; // type:function size:0x10C scope:local
fn_80061DB8 = .text:0x80061E88; // type:function size:0x164
storeEvent = .text:0x80061FEC; // type:function size:0x94
fn_80061FB0 = .text:0x80062080; // type:function size:0x48 scope:local
fn_80061FF8 = .text:0x800620C8; // type:function size:0x30 scope:local
fn_80062028 = .text:0x800620F8; // type:function size:0x80
fn_800620A8 = .text:0x80062178; // type:function size:0x210 scope:local
fn_800622B8 = .text:0x80062388; // type:function size:0x13C scope:local
fn_800623F4 = .text:0x800624C4; // type:function size:0x808 scope:local
simulatorDetectController = .text:0x80062CCC; // type:function size:0x1C
fn_80062C18 = .text:0x80062CE8; // type:function size:0xCC
fn_80062CE4 = .text:0x80062DB4; // type:function size:0x20
simulatorSetControllerMap = .text:0x80062DD4; // type:function size:0xB0
simulatorCopyControllerMap = .text:0x80062E84; // type:function size:0xA8
fn_80062E5C = .text:0x80062F2C; // type:function size:0x2B0
controllerThread = .text:0x800631DC; // type:function size:0x34 scope:local
controllerVIPostRetrace = .text:0x80063210; // type:function size:0x78 scope:local
fn_800631B8 = .text:0x80063288; // type:function size:0x48
controllerEvent = .text:0x800632D0; // type:function size:0x1F8
DEMOGetRenderModeObj = .text:0x800634C8; // type:function size:0x8
errorDisplayDrawSetup = .text:0x800634D0; // type:function size:0x280 scope:local
fn_80063680 = .text:0x80063750; // type:function size:0x8 scope:local
fn_80063688 = .text:0x80063758; // type:function size:0xA8 scope:local
errorDisplayReturnToMenu = .text:0x80063800; // type:function size:0x34 scope:local
fn_80063764 = .text:0x80063834; // type:function size:0x1AC scope:local
fn_80063910 = .text:0x800639E0; // type:function size:0xC4 scope:local
errorDisplayPrintMessage = .text:0x80063AA4; // type:function size:0x128 scope:local
errorDisplayPrint = .text:0x80063BCC; // type:function size:0x12C scope:local
OSAllocFromHeap = .text:0x80063CF8; // type:function size:0x2C
OSFreeToHeap = .text:0x80063D24; // type:function size:0x28
errorDisplayInit = .text:0x80063D4C; // type:function size:0xFC
errorDisplayShow = .text:0x80063E48; // type:function size:0x1B8
fn_80063F30 = .text:0x80064000; // type:function size:0x18C
fn_800640BC = .text:0x8006418C; // type:function size:0x110
fn_800641CC = .text:0x8006429C; // type:function size:0x434
bannerNANDClose = .text:0x800646D0; // type:function size:0x34
bannerCreate = .text:0x80064704; // type:function size:0x23C
bannerWrite = .text:0x80064940; // type:function size:0xC0
bannerDelete = .text:0x80064A00; // type:function size:0x30
bannerGetBufferSize = .text:0x80064A30; // type:function size:0xC
fn_8006496C = .text:0x80064A3C; // type:function size:0x14
tableGetEntry = .text:0x80064A50; // type:function size:0x90
tableGetString = .text:0x80064AE0; // type:function size:0x54
fn_80064A64 = .text:0x80064B34; // type:function size:0x288
fn_80064CEC = .text:0x80064DBC; // type:function size:0xDA0
fn_80065A8C = .text:0x80065B5C; // type:function size:0x13C
fn_80065BC8 = .text:0x80065C98; // type:function size:0x14C
rspInitAudioDMEM1 = .text:0x80065DE4; // type:function size:0xF60
fn_80066C74 = .text:0x80066D44; // type:function size:0x46C
rspMultPolef = .text:0x800671B0; // type:function size:0x3E8
fn_800674C8 = .text:0x80067598; // type:function size:0x658
fn_80067B20 = .text:0x80067BF0; // type:function size:0x6E0
fn_80068200 = .text:0x800682D0; // type:function size:0xA34
fn_80068C34 = .text:0x80068D04; // type:function size:0x94
fn_80068CC8 = .text:0x80068D98; // type:function size:0x498
fn_80069160 = .text:0x80069230; // type:function size:0xC0
fn_80069220 = .text:0x800692F0; // type:function size:0x98
rspParseABI = .text:0x80069388; // type:function size:0x22C
fn_800694E4 = .text:0x800695B4; // type:function size:0x480
fn_80069964 = .text:0x80069A34; // type:function size:0xEF0
fn_8006A854 = .text:0x8006A924; // type:function size:0x64C
fn_8006AEA0 = .text:0x8006AF70; // type:function size:0x1F4
fn_8006B094 = .text:0x8006B164; // type:function size:0x64
fn_8006B0F8 = .text:0x8006B1C8; // type:function size:0x3C0
fn_8006B4B8 = .text:0x8006B588; // type:function size:0xAB4
fn_8006BF6C = .text:0x8006C03C; // type:function size:0x78
fn_8006BFE4 = .text:0x8006C0B4; // type:function size:0xD8
fn_8006C0BC = .text:0x8006C18C; // type:function size:0xE4
fn_8006C1A0 = .text:0x8006C270; // type:function size:0x2B4
fn_8006C454 = .text:0x8006C524; // type:function size:0x6B8
fn_8006CB0C = .text:0x8006CBDC; // type:function size:0x844
fn_8006D350 = .text:0x8006D420; // type:function size:0x106C
fn_8006E3BC = .text:0x8006E48C; // type:function size:0x210
fn_8006E5CC = .text:0x8006E69C; // type:function size:0x98
fn_8006E664 = .text:0x8006E734; // type:function size:0x6C0
fn_8006ED24 = .text:0x8006EDF4; // type:function size:0x1080
fn_8006FDA4 = .text:0x8006FE74; // type:function size:0x328
fn_800700CC = .text:0x8007019C; // type:function size:0x81C
fn_800708E8 = .text:0x800709B8; // type:function size:0x7F4
fn_800710DC = .text:0x800711AC; // type:function size:0x12C
fn_80071208 = .text:0x800712D8; // type:function size:0x5C0
fn_800717C8 = .text:0x80071898; // type:function size:0x264
fn_80071A2C = .text:0x80071AFC; // type:function size:0x184
fn_80071BB0 = .text:0x80071C80; // type:function size:0x18C
fn_80071D3C = .text:0x80071E0C; // type:function size:0x298
fn_80071FD4 = .text:0x800720A4; // type:function size:0x608
fn_800725DC = .text:0x800726AC; // type:function size:0x158
fn_80072734 = .text:0x80072804; // type:function size:0xC1C
fn_80073350 = .text:0x80073420; // type:function size:0xD14
fn_80074064 = .text:0x80074134; // type:function size:0x2F8
fn_8007435C = .text:0x8007442C; // type:function size:0x270
fn_800745CC = .text:0x8007469C; // type:function size:0x35C
fn_80074928 = .text:0x800749F8; // type:function size:0x420
fn_80074D48 = .text:0x80074E18; // type:function size:0x35C
fn_800750A4 = .text:0x80075174; // type:function size:0x420
fn_800754C4 = .text:0x80075594; // type:function size:0x280
rspUndoLoadColorBufferZ = .text:0x80075814; // type:function size:0x88
fn_800757CC = .text:0x8007589C; // type:function size:0x2E4
fn_80075AB0 = .text:0x80075B80; // type:function size:0x304
fn_80075DB4 = .text:0x80075E84; // type:function size:0xFC
fn_80075EB0 = .text:0x80075F80; // type:function size:0xFC
fn_80075FAC = .text:0x8007607C; // type:function size:0x50
rspFillObjSprite = .text:0x800760CC; // type:function size:0xCC
fn_800760C8 = .text:0x80076198; // type:function size:0xE4
rspFillObjBg = .text:0x8007627C; // type:function size:0xFC
fn_800762A8 = .text:0x80076378; // type:function size:0xFC
fn_800763A4 = .text:0x80076474; // type:function size:0xB0
fn_80076454 = .text:0x80076524; // type:function size:0x274
fn_800766C8 = .text:0x80076798; // type:function size:0x6F8
fn_80076DC0 = .text:0x80076E90; // type:function size:0x160
fn_80076F20 = .text:0x80076FF0; // type:function size:0x414
fn_80077334 = .text:0x80077404; // type:function size:0x52C
fn_80077860 = .text:0x80077930; // type:function size:0xAB8
fn_80078318 = .text:0x800783E8; // type:function size:0xA40
fn_80078D58 = .text:0x80078E28; // type:function size:0x198
fn_80078EF0 = .text:0x80078FC0; // type:function size:0x150
rspSetupS2DEX = .text:0x80079110; // type:function size:0x1A4
fn_800791E4 = .text:0x800792B4; // type:function size:0xC0
rspParseGBI_F3DEX1 = .text:0x80079374; // type:function size:0x15D4
rspGeometryMode = .text:0x8007A948; // type:function size:0xDC
rspParseGBI_F3DEX2 = .text:0x8007AA24; // type:function size:0x1AC8
rspSaveYield = .text:0x8007C4EC; // type:function size:0x168
rspLoadYield = .text:0x8007C654; // type:function size:0x17C
fn_8007C700 = .text:0x8007C7D0; // type:function size:0x14C
fn_8007C84C = .text:0x8007C91C; // type:function size:0x1B4
rspFrameComplete = .text:0x8007CAD0; // type:function size:0x54
rspUpdate = .text:0x8007CB24; // type:function size:0x1D0
rspPut8 = .text:0x8007CCF4; // type:function size:0x54
rspPut16 = .text:0x8007CD48; // type:function size:0x54
rspPut32 = .text:0x8007CD9C; // type:function size:0x610
rspPut64 = .text:0x8007D3AC; // type:function size:0x64
rspGet8 = .text:0x8007D410; // type:function size:0x54
rspGet16 = .text:0x8007D464; // type:function size:0x54
rspGet32 = .text:0x8007D4B8; // type:function size:0x14C
rspGet64 = .text:0x8007D604; // type:function size:0x64
rspInvalidateCache = .text:0x8007D668; // type:function size:0xD4
rspEnableABI = .text:0x8007D73C; // type:function size:0x1C
rspGetDMEM = .text:0x8007D758; // type:function size:0x18
rspGetIMEM = .text:0x8007D770; // type:function size:0x18
rspGetBuffer = .text:0x8007D788; // type:function size:0x4C
rspEvent = .text:0x8007D7D4; // type:function size:0x19C
rdpParseGBI = .text:0x8007D970; // type:function size:0x1AB0
rdpPut8 = .text:0x8007F420; // type:function size:0x8
rdpPut16 = .text:0x8007F428; // type:function size:0x8
rdpPut32 = .text:0x8007F430; // type:function size:0xF0
rdpPut64 = .text:0x8007F520; // type:function size:0x8
rdpGet8 = .text:0x8007F528; // type:function size:0x8
rdpGet16 = .text:0x8007F530; // type:function size:0x8
rdpGet32 = .text:0x8007F538; // type:function size:0xA4
rdpGet64 = .text:0x8007F5DC; // type:function size:0x8
rdpPutSpan8 = .text:0x8007F5E4; // type:function size:0x8
rdpPutSpan16 = .text:0x8007F5EC; // type:function size:0x8
rdpPutSpan32 = .text:0x8007F5F4; // type:function size:0x64
rdpPutSpan64 = .text:0x8007F658; // type:function size:0x8
rdpGetSpan8 = .text:0x8007F660; // type:function size:0x8
rdpGetSpan16 = .text:0x8007F668; // type:function size:0x8
rdpGetSpan32 = .text:0x8007F670; // type:function size:0x70
rdpGetSpan64 = .text:0x8007F6E0; // type:function size:0x8
rdpEvent = .text:0x8007F6E8; // type:function size:0x1A4
xlCoreInitRenderMode = .text:0x8007F88C; // type:function size:0x1C0 scope:local
xlCoreInitGX = .text:0x8007FA4C; // type:function size:0x158
xlCoreBeforeRender = .text:0x8007FBA4; // type:function size:0xCC
xlCoreGetArgumentCount = .text:0x8007FC70; // type:function size:0x8
xlCoreGetArgument = .text:0x8007FC78; // type:function size:0x34
xlCoreHiResolution = .text:0x8007FCAC; // type:function size:0x8
fn_8007FC84 = .text:0x8007FCB4; // type:function size:0x4C
xlExit = .text:0x8007FD00; // type:function size:0x18
main = .text:0x8007FD18; // type:function size:0x3CC scope:global
xlPostSetup = .text:0x800800E4; // type:function size:0x8
xlPostReset = .text:0x800800EC; // type:function size:0x8
xlFileSetOpen = .text:0x800800F4; // type:function size:0x8
xlFileSetRead = .text:0x800800FC; // type:function size:0x8
xlFileOpen = .text:0x80080104; // type:function size:0xE8
xlFileClose = .text:0x800801EC; // type:function size:0x2C
xlFileGet = .text:0x80080218; // type:function size:0x1B4
xlFileSetPosition = .text:0x800803CC; // type:function size:0x28
xlFileEvent = .text:0x800803F4; // type:function size:0x170
xlTextGetLength = .text:0x80080564; // type:function size:0x24