forked from RenaKunisaki/StarFoxAdventures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathramdump.map
1527 lines (1527 loc) · 66.7 KB
/
ramdump.map
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
.text
00000000 00000000 80000000 0 RAM_START
00000004 00000000 80000004 0 companyCode
00000006 00000000 80000006 0 discID
00000007 00000000 80000007 0 gameVersion
00000008 00000000 80000008 0 streamingFlag
00000009 00000000 80000009 0 streamBufSize
0000000a 00000000 8000000a 0 padding
0000001c 00000000 8000001c 0 magicBootCode
00000020 00000000 80000020 0 bootFlag
00000024 00000000 80000024 0 appldrVersion
00000028 00000000 80000028 0 systemMemorySize
0000002c 00000000 8000002c 0 consoleType
00000030 00000000 80000030 0 arenaLo
00000034 00000000 80000034 0 arenaHi
0000003c 00000000 8000003c 0 fstLength
00000040 00000000 80000040 0 isDebuggerPresent
00000044 00000000 80000044 0 debugExceptionMask
00000048 00000000 80000048 0 exceptionHookDest
0000004c 00000000 8000004c 0 exceptionHookLrSave
00000050 00000000 80000050 0 padding
00000060 00000000 80000060 0 debuggerHookCode
000000c0 00000000 800000c0 0 osContextPhysical
000000c4 00000000 800000c4 0 prevIntrMask
000000c8 00000000 800000c8 0 curIntrMask
000000cc 00000000 800000cc 0 tvMode
000000d0 00000000 800000d0 0 aramSize
000000d4 00000000 800000d4 0 osContextLogical
000000d8 00000000 800000d8 0 defaultOsThread
000000dc 00000000 800000dc 0 activeThreadQueueHead
000000e0 00000000 800000e0 0 activeThreadQueueTail
000000e4 00000000 800000e4 0 curThread
000000e8 00000000 800000e8 0 debugMonitorSize
000000ec 00000000 800000ec 0 debugMonitorAddr
000000f0 00000000 800000f0 0 simulatedMemSize
000000f4 00000000 800000f4 0 dvdBI2Addr
000000f8 00000000 800000f8 0 busClockMhz
000000fc 00000000 800000fc 0 cpuClockMhz
00000100 00000000 80000100 0 irqReset
00000200 00000000 80000200 0 irqMachineCheck
00000300 00000000 80000300 0 irqDSI
00000400 00000000 80000400 0 irqISI
00000500 00000000 80000500 0 irqExternal
00000600 00000000 80000600 0 irqAlignment
00000700 00000000 80000700 0 irqProgram
00000800 00000000 80000800 0 irqFpUnavailable
00000900 00000000 80000900 0 irqDecrementer
00000c00 00000000 80000c00 0 irqSyscall
00000d00 00000000 80000d00 0 irqTrace
00000f00 00000000 80000f00 0 irqPerfMon
00001300 00000000 80001300 0 irqIABR
00001400 00000000 80001400 0 reserved
00001700 00000000 80001700 0 irqThermal
00003000 00000000 80003000 0 exceptionVector
0000303c 00000000 8000303c 0 padding
00003040 00000000 80003040 0 extIrqVectors
000030c0 00000000 800030c0 0 exiVar_800030c0
000030c4 00000000 800030c4 0 exiVar_800030C4
000030c8 00000000 800030c8 0 firstModuleHeader
000030cc 00000000 800030cc 0 lastModuleHeader
000030d0 00000000 800030d0 0 moduleStringTable
000030d4 00000000 800030d4 0 dolSize
000030d8 00000000 800030d8 0 systemBootTime
000030e8 00000000 800030e8 0 default_dvd_bi2
000030f2 00000000 800030f2 0 isBooted
00003100 00000040 80003100 0 __check_pad3
00003140 00000000 80003140 0 _start
00003278 00000000 80003278 0 __init_registers
00003294 000000c0 80003294 0 __init_data
00003354 00000000 80003354 0 __init_hardware
00003374 00000034 80003374 0 __flush_cache
000033a8 00000000 800033a8 0 memset_
000033d8 00000000 800033d8 0 memset
00003494 00000050 80003494 0 memcpy
000034e4 00000030 800034e4 0 TRK_memset
00003514 00000024 80003514 0 TRK_memcpy
0000546c 00000000 8000546c 0 metrowerksInit
00005570 00000000 80005570 0 data_sections
000055f4 00000000 800055f4 0 bss_sections
00009014 00000000 80009014 0 sampleBufferSLoadedCallback
000090c4 00000000 800090c4 0 sampleDirectorySLoadedCallback
00009174 00000000 80009174 0 projectDataSLoadedCallback
00009224 00000000 80009224 0 poolDataSLoadedCallback
000092d4 00000000 800092d4 0 sampleBufferMLoadedCallback
00009384 00000000 80009384 0 sampleDirectoryMLoadedCallback
00009434 00000000 80009434 0 projectDataMLoadedCallback
000094e4 00000000 800094e4 0 poolDataMLoadedCallback
00009594 00000000 80009594 0 streamsLoadedCallback
000096ac 00000000 800096ac 0 sfxTriggersLoadedCallback
0000975c 00000000 8000975c 0 musicTriggersLoadedCallback
0000980c 00000000 8000980c 0 loadAudioFiles
00009b14 00000000 80009b14 0 audioQuit
00009b4c 00000000 80009b4c 0 resetFn_80009b4c
00009bd0 00000028 80009bd0 0 glxSwapWaitDrawDone(void)
00009bf8 00000000 80009bf8 0 loadOpeningSounds
0000a200 00000000 8000a200 0 concatThreeStrings
0000a264 00000000 8000a264 0 MIDIWADLoadedCallback
0000a518 00000000 8000a518 0 musicFn_8000a518
0000ae90 00000000 8000ae90 0 audioFn_8000ae90
0000b714 00000000 8000b714 0 maybeFadeInOut
0000cfe4 00000000 8000cfe4 0 dvdCommandBlockCallback_8000cfe4
0000d01c 00000000 8000d01c 0 stopSound_8000d01c
0000d200 00000000 8000d200 0 streamsFn_8000d200
0000d5dc 00000000 8000d5dc 0 dvdCallback_8000d5dc
0000d734 00000000 8000d734 0 mainLoopFn_8000d734
0000e034 00000000 8000e034 0 multVectorByObjMtx
0000e0a0 00000000 8000e0a0 0 multVectorByObjMtx
0000e380 00000000 8000e380 0 mathFn_8000e380
0000e944 00000000 8000e944 0 screenFn_8000e944
0000f0b8 00000000 8000f0b8 0 screenFn_8000f0b8
0000faac 00000000 8000faac 0 screenFn_8000faac
00010904 00000000 80010904 0 curvesSetupMoveNetworkCurve
00010a6c 00000000 80010a6c 0 curvesMove
00010ff4 00000000 80010ff4 0 voxmapsFn_80010ff4
000132c0 00000000 800132c0 0 voxmapsFn_800132c0
00013434 00000000 80013434 0 countThings_80013434
00013754 00000000 80013754 0 readShortFromParam
00013e2c 00000000 80013e2c 0 unloadFile
00013ec8 00000000 80013ec8 0 loadFile
0001476c 00000000 8001476c 0 callFptr9708
000147a4 00000000 800147a4 0 fileFn_800147a4
0001485c 00000000 8001485c 0 fileFn_8001485c
00014940 00000000 80014940 0 gxFn_80014940
00014948 00000000 80014948 0 fileFn_80014948
000149f8 00000000 800149f8 0 clearSomePtrs
00014a28 00000000 80014a28 0 maybeTurnScreenOn
00014bc4 00000000 80014bc4 0 joypadFn_80014bc4
00014c18 00000000 80014c18 0 joypadFn_80014c18
00014c6c 00000000 80014c6c 0 joypadFn_80014c6c
00014cc0 00000000 80014cc0 0 getButtons_80014cc0
00014d14 00000000 80014d14 0 joypadFn_80014d14
00014d58 00000000 80014d58 0 joypadFn_80014d58
00014e70 00000000 80014e70 0 getButtons
00014f40 00000000 80014f40 0 maybeYield
000154a4 00000000 800154a4 0 setScreenFlag9729
000154ac 00000000 800154ac 0 readControllers
00015624 00000000 80015624 0 screenOnOff_80015624
00015850 00000000 80015850 0 waitForFileRead
00015954 00000000 80015954 0 fileReadCb_80015954
0001595c 00000000 8001595c 0 stw_r3_-0x688c(r13)
00015964 00000000 80015964 0 loadFile
00015d70 00000000 80015d70 0 lookupSomething
00016c9c 00000000 80016c9c 0 textFn_80016c9c
000186f0 00000000 800186f0 0 textFn_800186f0
000191c4 00000000 800191c4 0 textFn_800191c4
00019570 00000000 80019570 0 textFn_80019570
00019908 00000000 80019908 0 maybeColorFn_80019908
00019970 00000000 80019970 0 gameTextFn_80019970
00019bf0 00000000 80019bf0 0 getFileIdx_80019bf0
00019c24 00000000 80019c24 0 runGameText
0001a234 00000000 8001a234 0 dvdInit_8001a234
0001a420 00000000 8001a420 0 initLanguage
0001a66c 00000000 8001a66c 0 loadGameText
0001a918 00000000 8001a918 0 dvdSetup
0001b39c 00000000 8001b39c 0 dvdCancelCallback_8001b39c
0001b3d0 00000000 8001b3d0 0 gameTextOpenCallback_8001b3d0
0001b44c 00000000 8001b44c 0 gameTextFn_8001b44c
0001bcb4 00000000 8001bcb4 0 gameTextFn_8001bcb4
0001f54c 00000000 8001f54c 0 loadObject
0001f678 00000000 8001f678 0 doNothing_8001f678
0001f67c 00000000 8001f67c 0 doNothing_8001f67c
0001f680 00000000 8001f680 0 loadObjectType7
0001f6d8 00000000 8001f6d8 0 loadFn_8001f6d8
0001f71c 00000000 8001f71c 0 fileFn_8001f71c
0001f768 00000000 8001f768 0 loadFn_8001f768
0001fa4c 00000000 8001fa4c 0 doSomethingUntilApressed
0001fd98 00000000 8001fd98 0 gameBitsFn_8001fd98
0001fee8 00000000 8001fee8 0 mainCheckAndClearBit
0001ffb4 00000000 8001ffb4 0 mainGetBit
000200e8 00000000 800200e8 0 mainSetBits
000202cc 00000000 800202cc 0 runGame
00020614 00000000 80020614 0 setGameState
00020620 00000000 80020620 0 getGameState
00020634 00000000 80020634 0 screenOnOffFn_80020634
000206e8 00000000 800206e8 0 maybeTurnScreenOnOff
0002070c 00000000 8002070c 0 maybeFadeOut
00020748 00000000 80020748 0 prepLoad_80020748
00020770 00000000 80020770 0 loadFn_80020770
000207f4 00000000 800207f4 0 doQueuedLoads
00020958 00000000 80020958 0 mainLoopFn_80020958
00020c2c 00000000 80020c2c 0 gameLoop
00020d8c 00000000 80020d8c 0 init
0002133c 00000000 8002133c 0 main
0002166c 00000000 8002166c 0 getXZDistance
000217c0 00000000 800217c0 0 getAngle
000226cc 00000000 800226cc 0 multVectorByMatrix
00022a6c 00000000 80022a6c 0 mmAllocateFromFBMemoryStore
00022b50 00000000 80022b50 0 mmCreateMemoryStore
00022d3c 00000000 80022d3c 0 addToSomeCounter
00022d58 00000000 80022d58 0 printHeapStats
00022e84 00000000 80022e84 0 somethingHeapSlot
00023008 00000000 80023008 0 changeHeapSlot
00023134 00000000 80023134 0 free
000232b8 00000000 800232b8 0 getHeapIndexOf
0002330c 00000000 8002330c 0 stbfPush
000233e8 00000000 800233e8 0 tryFree
000234a4 00000000 800234a4 0 tryFree
000234ec 00000000 800234ec 0 maybeCheckHeap
00023800 00000000 80023800 0 free
00023850 00000000 80023850 0 heapAlloc
000238bc 00000000 800238bc 0 prt_800238bc_a93db4e0
00023b0c 00000000 80023b0c 0 prt_80023b0c_f9b70c52
00023c28 00000000 80023c28 0 getHeapItemSize
00023cc8 00000000 80023cc8 0 getBufferForFile
000240d8 00000000 800240d8 0 fileFn_800240d8
00024134 00000000 80024134 0 fileFn_80024134
00024e7c 00000000 80024e7c 0 loadObj7Fn_80024e7c
00024ec8 00000000 80024ec8 0 mapLoadFn_80024ec8
00025420 00000000 80025420 0 modelAnimFn_80025420
000280b4 00000000 800280b4 0 loadFromTable_800280b4
00028204 00000000 80028204 0 loadObjType7
0002853c 00000000 8002853c 0 installCallback_8002853c
00029570 00000000 80029570 0 modelAnimFn_80029570
0002969c 00000000 8002969c 0 dummyLoadFile
0002b588 00000000 8002b588 0 gameObjectFn_8002b588
0002b5a0 00000000 8002b5a0 0 tryLoadObject
0002ba2c 00000000 8002ba2c 0 objLoadFn_8002ba2c
0002be88 00000000 8002be88 0 maybeFreeObjDef
0002c2a8 00000000 8002c2a8 0 prt_8002c2a8_e0d8bb81
0002c36c 00000000 8002c36c 0 objLoadFn_8002c36c
0002c450 00000000 8002c450 0 objLoadFn_8002c450
0002cbc4 00000000 8002cbc4 0 maybeFreeObject
0002cdfc 00000000 8002cdfc 0 prt_8002cdfc_cb49e131
0002d118 00000000 8002d118 0 modelFn_8002d118
0002d30c 00000000 8002d30c 0 setupObject
0002d55c 00000000 8002d55c 0 loadCharacter
0002e02c 00000000 8002e02c 0 prt_8002e02c_13f24ac1
0002e294 00000000 8002e294 0 objFreeAll
0002e2d0 00000000 8002e2d0 0 prt_8002e2d0_cb49e131
0002e34c 00000000 8002e34c 0 prt_8002e34c_cb49e131
0002e3fc 00000000 8002e3fc 0 objFreeFn_8002e3fc
0002e438 00000000 8002e438 0 prt_8002e438_cb49e131
0002eb54 00000000 8002eb54 0 setBlendMove
0002f23c 00000000 8002f23c 0 objAnimFn_8002f23c
000325c0 00000000 800325c0 0 hitDetectFn_800325c0
000353a4 00000000 800353a4 0 hitDetectFn_800353a4
00035410 00000000 80035410 0 prt_80035410_42616ad2
000354f0 00000000 800354f0 0 prt_800354f0_e0d8bb81
00037200 00000000 80037200 0 addObjectType
000378c4 00000000 800378c4 0 objFn_800378c4
0003e1e8 00000000 8003e1e8 0 renderOpMatrix
0003e30c 00000000 8003e30c 0 prt_8003e30c_e0d8bb81
00041e24 00000000 80041e24 0 maybeStopLoadingScreen
00041e30 00000000 80041e30 0 maybeStartLoadingScreen
00041e3c 00000000 80041e3c 0 restructForMovie
00042240 00000000 80042240 0 mapReadCallback_80042240
000425d8 00000000 800425d8 0 fileCallback_800425d8
00042e74 00000000 80042e74 0 maybeLoadMap
00042f78 00000000 80042f78 0 maybeLoadMapIfneeded
000430ac 00000000 800430ac 0 getLoadFlags
000430e0 00000000 800430e0 0 loadFn_800430e0
00043588 00000000 80043588 0 voxLoadVoxMapActual
00043ce8 00000000 80043ce8 0 loadFn_80043ce8
00044394 00000000 80044394 0 isCurrentOrPreviousMap
000443cc 00000000 800443cc 0 loadSomeResource
000464c8 00000000 800464c8 0 mapLoadFn_800464c8
000481b0 00000000 800481b0 0 lookupMapNo
000481d4 00000000 800481d4 0 loadFn_800481d4
00048328 00000000 80048328 0 romListFn_80048328
000484dc 00000000 800484dc 0 fileFn_800484dc
00048d78 00000000 80048d78 0 maybeDecompress
00048f10 00000000 80048f10 0 getMapFileSize
00048f48 00000000 80048f48 0 loadFileById
0004908c 00000000 8004908c 0 loadFileById
00049144 00000000 80049144 0 loadFileById
00049200 00000000 80049200 0 loadLotsOfFiles
00049504 00000000 80049504 0 tvInit
00049550 00000000 80049550 0 reportGpuHang
00049894 00000000 80049894 0 videoFn_80049894
000499e8 00000000 800499e8 0 videoFn_800499e8
00049b2c 00000000 80049b2c 0 maybeMatrixFn_80049b2c
00049b6c 00000000 80049b6c 0 maybeVideoInit
0004a3c0 00000000 8004a3c0 0 setColor83f0
0004a43c 00000000 8004a43c 0 GX_flush
0004a77c 00000000 8004a77c 0 gxFn_8004a77c
0004a83c 00000000 8004a83c 0 gxFn_8004a83c
0004a868 00000000 8004a868 0 maybeWaitNextFrame
0004b628 00000000 8004b628 0 loadFile20
0004b658 00000000 8004b658 0 facefeedFn_8004b658
00053700 00000000 80053700 0 restructTextures
000544a4 00000000 800544a4 0 loadObjType3
00054d54 00000000 80054d54 0 objLoadFn_80054d54
000550d0 00000000 800550d0 0 gxRectOrScissor_800550d0
000552e8 00000000 800552e8 0 fileFn_800552e8
000555dc 00000000 800555dc 0 mathFn_800555dc
00055980 00000000 80055980 0 maybePlaceObject
00055a54 00000000 80055a54 0 repeat
00055cd0 00000000 80055cd0 0 prt_80055cd0_42616ad2
00055cf4 00000000 80055cf4 0 done
00055d24 00000000 80055d24 0 loop_80055d24
000567a8 00000000 800567a8 0 texAnimFn_800567a8
00056cec 00000000 80056cec 0 trackLoadBlockEnd
000573f0 00000000 800573f0 0 prepLoad_800573f0
00057404 00000000 80057404 0 getMapType
00057410 00000000 80057410 0 loadFn_80057410
00058094 00000000 80058094 0 mapLoadFn_80058094
0005a45c 00000000 8005a45c 0 gridFn_8005a45c
0005a6d8 00000000 8005a6d8 0 prt_8005a6d8_800c2f94
0005c750 00000000 8005c750 0 screenFn_8005c750
000633a8 00000000 800633a8 0 doLotsOfMath
000640cc 00000000 800640cc 0 objBboxFn_800640cc
00064c8c 00000000 80064c8c 0 trackIntersect
0006547c 00000000 8006547c 0 prt_8006547c_e0d8bb81
000667ec 00000000 800667ec 0 hitDetect_800667ec
00069990 00000000 80069990 0 loadSomeFiles
0006cad0 00000000 8006cad0 0 findSomething
0006fed4 00000000 8006fed4 0 getScreenResolution
00073d04 00000000 80073d04 0 modelCb_80073d04
00074110 00000000 80074110 0 gameObjectCb_80074110
00074518 00000000 80074518 0 modelCb_80074518
00074d04 00000000 80074d04 0 objCallback_80074d04
00076510 00000000 80076510 0 gxFn_80076510
0007d6dc 00000000 8007d6dc 0 OSReport
0007d99c 00000000 8007d99c 0 memCardFn_8007d99c
0007dd04 00000000 8007dd04 0 memCardFn_8007dd04
0007de0c 00000000 8007de0c 0 memCardFn_8007de0c
0007df10 00000000 8007df10 0 memCardFn_8007df10
0007e1ac 00000000 8007e1ac 0 maybeMemCardScreen
0007eb44 00000000 8007eb44 0 memCardFn_8007eb44
0007f2e0 00000000 8007f2e0 0 loadMemCardImages
0007f83c 00000000 8007f83c 0 memCardFn_8007f83c
0008016c 0000000c 8008016c 0 ColourBlendScreenTransition::Reset(void)
00088c0c 00000000 80088c0c 0 gameObjectFn_80088c0c
00090078 00000000 80090078 0 snowFreeSnowCloud
00090218 00000000 80090218 0 prt_80090218_e0d8bb81
00090270 00000000 80090270 0 doNothing_80090270
00090274 00000000 80090274 0 snowPrintSnowCloud
00090f88 00000000 80090f88 0 snowReposSnowCloud
000919c8 00000000 800919c8 0 newClouds
0009243c 00000000 8009243c 0 cloudFn_8009243c
00092444 00000000 80092444 0 cloudFn_80092444
0009251c 00000000 8009251c 0 cloudFn_8009251c
00092e64 00000000 80092e64 0 snowKillSnowCloud
00092ff4 00000000 80092ff4 0 prt_80092ff4_e0d8bb81
0009305c 00000000 8009305c 0 cloudFn_8009305c
00093110 00000000 80093110 0 cloudFn_80093110
00094494 00000000 80094494 0 doNothing_80094494
00094498 00000000 80094498 0 doNothing_80094498
0009449c 00000000 8009449c 0 doNothing_8009449c
000944a0 00000000 800944a0 0 doNothing_800944a0
000944a4 00000000 800944a4 0 doNothing_800944a4
000968c4 00000000 800968c4 0 initWaterFx
0009b6d4 00000000 8009b6d4 0 textureFn_8009b6d4
0009b9c8 00000000 8009b9c8 0 textureFn_8009b9c8
0009ddec 00000000 8009ddec 0 exptab_addToTable
0009efdc 00000000 8009efdc 0 expTabFn_8009efdc
0009f2cc 00000000 8009f2cc 0 exptabFn_8009f2cc
000a3a40 00000000 800a3a40 0 projgfx_rayhit
000a3a70 00000000 800a3a70 0 projgfx_setzscale
000a3ac0 00000000 800a3ac0 0 projgfx_release
000a433c 00000000 800a433c 0 doSomethingWithLotsaFloats
000b319c 00000000 800b319c 0 theBigOne_800b319c
000c2910 00000000 800c2910 0 doNothing_800c2910
000c2914 00000000 800c2914 0 doNothing_800c2914
000c2918 00000000 800c2918 0 doNothing_800c2918
000c4858 00000000 800c4858 0 doNothing_800c4858
000c485c 00000000 800c485c 0 doNothing_800c485c
000c4860 00000000 800c4860 0 doNothing_800c4860
000c4864 00000000 800c4864 0 maybeDrawFn_800c4864
000c56d0 00000000 800c56d0 0 doNothing_800c56d0
000c56d4 00000000 800c56d4 0 doNothing_800c56d4
000c56d8 00000000 800c56d8 0 doNothing_800c56d8
000c56dc 00000000 800c56dc 0 doNothing_800c56dc
000db3e4 00000000 800db3e4 0 walkGroupFn_800db3e4
000db8d8 00000000 800db8d8 0 isPointWithinPatchGroup
000dba4c 00000000 800dba4c 0 getPatchGroup
000dbba4 00000000 800dbba4 0 isInWalkGroupOrPatch
000dbff0 00000000 800dbff0 0 mathFn_800dbff0
000dc398 00000000 800dc398 0 walkgroupFn_800dc398
000e52e8 00000000 800e52e8 0 curveFn_800e52e8
000e542c 00000000 800e542c 0 doNothing_800e542c
000e5430 00000000 800e5430 0 doNothing_800e5430
000e8168 00000000 800e8168 0 playerFn_800e8168
000e8798 00000018 800e8798 0 glFontEnd(void)
000e87b0 00000000 800e87b0 0 isSaveGameLoading
000e9b70 00000010 800e9b70 0 dataARAMDefaultGetInfo
000e9bc4 00000010 800e9bc4 0 SaveLoad::DidGameIDChange(void)
000e9bd4 0000000c 800e9bd4 0 GetOneTimerLeadGroundContactAnims(void)
000e9c98 00000014 800e9c98 0 PlatAudio::IsEntireSampleFileInMem(void)
000ea04c 0000002c 800ea04c 0 EmissionManager::ResetLingerers(void)
000ea4c8 00000000 800ea4c8 0 loadTaskTexts
000eb618 00000000 800eb618 0 modgfxFn_800eb618
00100550 00000000 80100550 0 projdummy
00100c90 00000000 80100c90 0 gameObjectCb_80100c90
00100dcc 00000000 80100dcc 0 gameObjectCb_80100dcc
00100fa0 00000000 80100fa0 0 gameObjectFn_80100fa0
001028dc 0000000c 801028dc 0 systemCallbackFunc(MCCSysEvent)
0011383c 0000000c 8011383c 0 cGame::GetGameTime(void)
00115ec0 00000000 80115ec0 0 loadFn_80115ec0
00116224 00000000 80116224 0 attractMode_80116224
001165bc 00000000 801165bc 0 titleScreenFn_801165bc
001166c4 00000000 801166c4 0 doNothing_801166c4
001166c8 00000000 801166c8 0 maybeTitleScreen
00116f14 00000000 80116f14 0 titleScreenFn_80116f14
00116f84 00000000 80116f84 0 attractMode_80116f84
00117460 00000000 80117460 0 threadMainAlt_80117460
0011750c 00000000 8011750c 0 threadMain_8011750c
001175a4 00000000 801175a4 0 createSomeThread
00117b68 00000000 80117b68 0 movieFn_80117b68
00118960 00000000 80118960 0 prepareAttractMode
00119000 00000000 80119000 0 maybeLoadMovie
00119520 00000000 80119520 0 threadMain_80119520
00119688 00000000 80119688 0 createAnotherThread
001198e0 00000000 801198e0 0 threadMainAlt_801198e0
00119a1c 00000000 80119a1c 0 threadMain_80119a1c
00119b58 00000000 80119b58 0 createAnThread
0011fe0c 00000000 8011fe0c 0 monstrosity_8011fe0c
0012fdb8 00000000 8012fdb8 0 setFlag_8012fdb8
00130144 00000000 80130144 0 picmenuFn_80130144
001311ec 00000000 801311ec 0 linkFn_801311ec
001375c8 00000000 801375c8 0 mathFn_801375c8
001378a8 00000000 801378a8 0 printfWithRegDump
00137948 00000000 80137948 0 stubMaybePrintOnScreen
00137b80 00000000 80137b80 0 displayText
00137d28 00000000 80137d28 0 installBsodHandlers
00137df4 00000000 80137df4 0 maybeDisabledBsod
00137df8 00000000 80137df8 0 bsodThreadMain
001388d0 00000000 801388d0 0 bsod
00139a8c 00000000 80139a8c 0 moveTricky
0013b368 00000000 8013b368 0 trickyFn_8013b368
0013b4fc 00000000 8013b4fc 0 prt_8013b4fc_ce506a34
0013bc98 00000000 8013bc98 0 prt_8013bc98_e0d8bb81
0013be28 00000000 8013be28 0 prt_8013be28_66787c71
0013dc88 00000000 8013dc88 0 growlFn_8013dc88
0013ef8c 00000000 8013ef8c 0 trickyFn_8013ef8c
0013ffb8 00000000 8013ffb8 0 trickyFn_8013ffb8
0014460c 00000000 8014460c 0 areWeInWater
001459e0 00000000 801459e0 0 sideCommandEnable
00148b78 00000000 80148b78 0 print_80148b78
00148bc8 00000000 80148bc8 0 printf_80148bc8
00163f8c 0000000c 80163f8c 0 GameInfoManager::SetUserSelectedCupSidekick(eSidekickID)
00179d88 00000000 80179d88 0 prt_80179d88_42616ad2
0017c7a4 00000000 8017c7a4 0 newseqobj
0018a9c4 00000024 8018a9c4 0 SidelineExplodableManager::GetNumExplodables(void)
0019ae30 0000000c 8019ae30 0 __set_debug_bba
001c1618 0000000c 801c1618 0 DrawableTmModel::SetAnimationSpeed(float)
001d5174 00000000 801d5174 0 thorntailStateFunc
001f2290 00000000 801f2290 0 mathFn_801f2290
001feb30 00000000 801feb30 0 objectFn_801feb30
00209048 00000000 80209048 0 textblock_init
00209074 00000000 80209074 0 laser_init
0020fb00 0000002c 8020fb00 0 cCharacter::UpdateBlinking(float)
00216e98 0000000c 80216e98 0 cAIPad::__ct(void)
0021a008 00000000 8021a008 0 return4
0021a010 00000000 8021a010 0 return0_8021a010
00231014 0000000c 80231014 0 GoalOverlay::SceneCreated(void)
00231084 00000010 80231084 0 cCameraManager::PushWorldUpVector(void)
00233b40 00000000 80233b40 0 return8_80233b40
00233b48 00000000 80233b48 0 return0_80233b48
00233be0 00000000 80233be0 0 doNothing_80233be0
00234044 00000000 80234044 0 doNothing_80234044
00234048 00000000 80234048 0 doNothing_80234048
0023404c 00000000 8023404c 0 debugLightAdjust
002343c8 00000000 802343c8 0 return0x10_802343c8
002343d0 00000000 802343d0 0 return0_802343d0
002343d8 00000000 802343d8 0 maybeDebugFn_802343d8
00234408 00000000 80234408 0 thunk_FUN_8003b8f4
0023442c 00000000 8023442c 0 doNothing_8023442c
00234430 00000000 80234430 0 maybeDebugFn_80234430
00234740 00000000 80234740 0 doNothing_80234740
00234744 00000000 80234744 0 doNothing_80234744
00234748 00000000 80234748 0 return8_80234748
00234750 00000000 80234750 0 return0_80234750
00236aec 00000024 80236aec 0 udp_cc_shutdown
00239d80 00000010 80239d80 0 BIRDOSoundPropAccessor::ResetSoundPropTable(void)
0024034c 00000000 8024034c 0 mfmsr_r3
00240354 00000000 80240354 0 mtmsr_r3_0
0024035c 00000000 8024035c 0 readDBSR
00240364 00000000 80240364 0 setDBSR
0024036c 00000000 8024036c 0 mfspr_r3_spr3f9
00240374 00000000 80240374 0 mtspr_spr3f9_r3
00240384 00000000 80240384 0 read_spr398
0024038c 00000000 8024038c 0 write_spr398
00240394 00000000 80240394 0 read_spr399
002403a0 00000000 802403a0 0 write_spr399
002403a8 00000028 802403a8 0 PPCDisableSpeculation
002403d0 00000000 802403d0 0 mtfsb1_fp_ni
002403d8 00000028 802403d8 0 OSGetConsoleType
00240400 00000128 80240400 0 ClearArena
00240528 0000003c 80240528 0 InquiryCallback
00240564 00000000 80240564 0 _osInit
0024091c 00000280 8024091c 0 OSExceptionInit
00240b9c 00000024 80240b9c 0 __OSDBIntegrator
00240bc4 0000001c 80240bc4 0 __OSSetExceptionHandler
00240be0 00000014 80240be0 0 __OSGetExceptionHandler
00240ce8 00000000 80240ce8 0 initFn_80240ce8
00240d20 00000014 80240d20 0 __OSGetDIConfig
00240d34 00000000 80240d34 0 installInterruptHandler8
00240d80 00000000 80240d80 0 store_0_at_param
00240d8c 00000250 80240d8c 0 InsertAlarm
00240fdc 00000068 80240fdc 0 OSSetAlarm
00241044 0000011c 80241044 0 OSCancelAlarm
00241160 00000230 80241160 0 DecrementerExceptionCallback
00241390 00000000 80241390 0 irq_80241390
002413e0 000000ac 802413e0 0 DLInsert
0024148c 000000fc 8024148c 0 OSAllocFromHeap
00241588 0000007c 80241588 0 OSFreeToHeap
00241614 00000070 80241614 0 OSInitAlloc
00241684 0000006c 80241684 0 OSCreateHeap
002416f0 00000000 802416f0 0 getArenaStart
002416f8 00000000 802416f8 0 getArenaEnd
00241710 000001bc 80241710 0 __OSInitAudioSystem
002418cc 000000d8 802418cc 0 __OSStopAudioSystem
002419a4 00000014 802419a4 0 DCEnable
002419b8 00000000 802419b8 0 dataCacheInvalidate
002419e8 00000000 802419e8 0 dCacheFlush
00241a1c 00000000 80241a1c 0 dCacheStore
00241a50 00000000 80241a50 0 dCacheFlush
00241ae0 00000000 80241ae0 0 iCacheFlush
00241b18 00000010 80241b18 0 ICFlashInvalidate
00241b28 00000014 80241b28 0 ICEnable
00241b3c 000000cc 80241b3c 0 __LCEnable
00241c08 00000038 80241c08 0 LCEnable
00241c40 00000028 80241c40 0 LCDisable
00241c68 00000024 80241c68 0 LCStoreBlocks
00241cb0 000000ac 80241cb0 0 LCStoreData
00241d74 00000098 80241d74 0 L2GlobalInvalidate
00241e0c 00000160 80241e0c 0 DMAErrorHandler
00241f6c 000000f4 80241f6c 0 __OSCacheInit
00242060 00000124 80242060 0 __OSLoadFPUContext
00242184 00000128 80242184 0 __OSSaveFPUContext
002422ac 0000005c 802422ac 0 OSSetCurrentContext
00242308 0000000c 80242308 0 OSGetCurrentContext
00242314 00000080 80242314 0 OSSaveContext
00242394 000000e0 80242394 0 OSLoadContext
00242474 00000024 80242474 0 OSClearContext
00242554 000002a8 80242554 0 OSDumpContext
002427fc 000000cc 802427fc 0 OSSwitchFPUContext
00242880 00000048 80242880 0 __OSContextInit
002428c8 0000012c 802428c8 0 OSPanic
002429f4 00000000 802429f4 0 installCallback_802429f4
00242a10 00000000 80242a10 0 fatalException
00242f20 00000058 80242f20 0 OSGetFontEncode
0024377c 00000014 8024377c 0 OSDisableInterrupts
00243790 00000014 80243790 0 OSEnableInterrupts
002437a4 00000024 802437a4 0 OSRestoreInterrupts
002437c8 0000001c 802437c8 0 __OSSetInterruptHandler
002437e4 00000014 802437e4 0 __OSGetInterruptHandler
002437f8 00000074 802437f8 0 __OSInterruptInit
0024386c 000002d8 8024386c 0 SetInterruptMask
00243b44 00000088 80243b44 0 __OSMaskInterrupts
00243bcc 00000088 80243bcc 0 __OSUnmaskInterrupts
00243c54 00000344 80243c54 0 __OSDispatchInterrupt
00243f98 00000068 80243f98 0 ExternalInterruptHandler
00243fe8 00000018 80243fe8 0 __OSModuleInit
00244204 0000003c 80244204 0 OnReset
00244240 0000006c 80244240 0 MEMIntrruptHandler
002442ac 00000000 802442ac 0 memInitRetailHardware
0024432c 00000000 8024432c 0 memInitDebugHardware
002443ac 00000000 802443ac 0 setMemInitFunc
002443c4 00000000 802443c4 0 memInit
002444e4 00000070 802444e4 0 __OSUnlockAllMutex
00244594 0000000c 80244594 0 FEAudio::ResetRandomVoiceToggleSFX(void)
0024476c 00000084 8024476c 0 OSRegisterResetFunction
002447f0 000000b8 802447f0 0 Reset
00244810 00000000 80244810 0 thunk_FUN_802447f4
00244830 00000000 80244830 0 thunk_FUN_802447f4
00244850 00000000 80244850 0 thunk_FUN_802447f4
0024485c 00000000 8024485c 0 thunk_FUN_802447f4
00244860 00000048 80244860 0 __OSDoHotReset
002448a8 00000000 802448a8 0 initFn_802448a8
00244b50 000000f4 80244b50 0 __OSResetSWInterruptHandler
00244c44 00000298 80244c44 0 OSGetResetButtonState
00244edc 00000060 80244edc 0 WriteSramCallback
00244f3c 00000118 80244f3c 0 WriteSram
00245188 0000005c 80245188 0 __OSLockSram
002451e4 0000005c 802451e4 0 __OSLockSramEx
002456c4 00000080 802456c4 0 OSGetSoundMode
002457e8 00000070 802457e8 0 OSGetProgressiveMode
00245858 000000a4 80245858 0 OSSetSoundMode
002458fc 00000084 802458fc 0 OSGetWirelessID
00245980 000000ac 80245980 0 OSSetWirelessID
00245bcc 00000084 80245bcc 0 SystemCallVector
00245bec 00000064 80245bec 0 __OSInitSystemCall
00245c50 00000000 80245c50 0 threadInit_80245c50
00245d78 00000010 80245d78 0 nlListContainer<P8SaveData>::__ct(void)
00245d88 00000000 80245d88 0 OSGetCurrentThread
00245dd4 00000040 80245dd4 0 OSDisableScheduler
00245e14 00000068 80245e14 0 UnsetRun
00245e7c 0000003c 80245e7c 0 __OSGetEffectivePriority
00245eb8 000001c0 80245eb8 0 SetEffectivePriority
00246278 00000030 80246278 0 __OSReschedule
002462a8 00000000 802462a8 0 OSCreateThread
002464ac 000001bc 802464ac 0 OSCancelThread
00246668 00000288 80246668 0 OSResumeThread
002468f0 00000170 802468f0 0 OSSuspendThread
00246a60 000000ec 80246a60 0 OSSleepThread
00246b4c 00000104 80246b4c 0 OSWakeupThread
00246c50 00000018 80246c50 0 OSGetTime
00246c70 00000064 80246c70 0 __OSGetSystemTime
00246cd4 00000000 80246cd4 0 preInit
00246cf4 00000054 80246cf4 0 __init_cpp
00246d48 00000000 80246d48 0 hang_80246d48
00246d68 00000028 80246d68 0 DBInit
00246d90 00000048 80246d90 0 __DBExceptionDestinationAux
00246dd8 0000002c 80246dd8 0 __DBExceptionDestination
00246de8 0000001c 80246de8 0 __DBIsExceptionMarked
00246e04 00000000 80246e04 0 maybePrintf
00246e54 0000002c 80246e54 0 PSMTXIdentity
00246eb4 000000cc 80246eb4 0 PSMTXConcat
002472e4 00000034 802472e4 0 PSMTXTrans
00247318 00000028 80247318 0 PSMTXScale
002475c8 000000d0 802475c8 0 C_MTXPerspective
00247698 00000098 80247698 0 C_MTXOrtho
00247778 0000001c 80247778 0 PSQUATScale
0024782c 00000020 8024782c 0 PSQUATDotProduct
00247a1c 00000040 80247a1c 0 __DVDInitWA
00247a5c 00000000 80247a5c 0 dvdInterruptHandler
00247d50 00000084 80247d50 0 AlarmHandler
00247dd4 00000070 80247dd4 0 AlarmHandlerForTimeout
00247e44 00000110 80247e44 0 Read
00247f54 00000080 80247f54 0 SeekTwiceBeforeRead
00247fd4 00000298 80247fd4 0 DVDLowRead
0024826c 00000094 8024826c 0 DVDLowSeek
00248300 0000002c 80248300 0 DVDLowWaitCoverClose
0024832c 000000a4 8024832c 0 DVDLowReadDiskID
002483d0 0000008c 802483d0 0 DVDLowStopMotor
002484e8 0000009c 802484e8 0 DVDLowInquiry
00248584 00000098 80248584 0 DVDLowAudioStream
0024861c 0000008c 8024861c 0 DVDLowRequestAudioStatus
002486a8 0000009c 802486a8 0 DVDLowAudioBufferConfig
00248744 000000bc 80248744 0 DVDLowReset
00248800 00000014 80248800 0 DVDLowBreak
0024882c 00000044 8024882c 0 __DVDLowSetWAType
00248870 00000038 80248870 0 __DVDFSInit
002488a8 000002f4 802488a8 0 DVDConvertPathToEntrynum
00248b9c 00000000 80248b9c 0 DVDOpen
00248c64 00000024 80248c64 0 DVDClose
00248de8 00000000 80248de8 0 fixupPath
00248eac 000000c0 80248eac 0 DVDReadAsyncPrio
00248f6c 00000000 80248f6c 0 callFileCallback
002490d8 00000000 802490d8 0 DVDPrepareStreamAsync
002491c4 00000030 802491c4 0 cbForReadAsync
002491f4 00000000 802491f4 0 dvdInit
002492f0 00000000 802492f0 0 dvdReadFn_802492f0
00249344 00000000 80249344 0 dvdCallback_80249344
002493c4 00000000 802493c4 0 callback_802493c4
00249530 000000b4 80249530 0 CategorizeError
002495e4 00000294 802495e4 0 cbForStateGettingError
00249878 00000068 80249878 0 cbForUnrecoveredError
002498e0 00000098 802498e0 0 cbForUnrecoveredErrorRetry
002499a0 00000158 802499a0 0 cbForStateGoToRetry
00249bdc 00000034 80249bdc 0 stateCheckID3
00249c10 00000038 80249c10 0 stateCheckID2
00249c48 00000114 80249c48 0 cbForStateCheckID1
00249e00 000000fc 80249e00 0 cbForStateCheckID3
00249efc 00000044 80249efc 0 AlarmHandler
00249f40 000000cc 80249f40 0 stateCoverClosed
0024a00c 00000030 8024a00c 0 stateCoverClosed_CMD
0024a03c 00000070 8024a03c 0 cbForStateCoverClosed
0024a0ac 00000028 8024a0ac 0 stateGettingError
0024a0d4 000000e4 8024a0d4 0 cbForStateMotorStopped
0024a1b8 00000000 8024a1b8 0 dvdFn_8024a1b8
0024ac94 000000dc 8024ac94 0 DVDReadAbsAsyncPrio
0024ad70 000000d0 8024ad70 0 DVDReadAbsAsyncForBS
0024ae40 000000d4 8024ae40 0 DVDReadDiskID
0024afd8 00000000 8024afd8 0 DVDCancelStreamAsync
0024b150 000000bc 8024b150 0 DVDCancelStreamAsync
0024b20c 000000d0 8024b20c 0 DVDInquiryAsync
0024b2dc 00000044 8024b2dc 0 DVDReset
0024b320 0000004c 8024b320 0 DVDGetCommandBlockStatus
0024b36c 000000ac 8024b36c 0 DVDGetDriveStatus
0024b428 00000000 8024b428 0 DVDCancelAsync
0024b698 000000ac 8024b698 0 DVDCancel
0024b744 00000024 8024b744 0 cbForCancelSync
0024b768 00000000 8024b768 0 getDiscID
0024b854 0000011c 8024b854 0 __DVDPrepareResetAsync
0024b970 00000038 8024b970 0 __DVDClearWaitingQueue
0024b9a8 00000068 8024b9a8 0 __DVDPushWaitingQueue
0024ba10 000000a0 8024ba10 0 __DVDPopWaitingQueue
0024bab0 00000058 8024bab0 0 __DVDCheckWaitingQueue
0024bb08 00000060 8024bb08 0 __DVDDequeueWaitingQueue
0024bb68 0000011c 8024bb68 0 ErrorCode2Num
0024bc84 0000007c 8024bc84 0 __DVDStoreErrorCode
0024bd00 000000d8 8024bd00 0 cb
0024bdd8 00000168 8024bdd8 0 __fstLoad
0024bf40 00000000 8024bf40 0 videoIntrFunc_8024bf40
0024c168 00000000 8024c168 0 installCallback_8024c168
0024c1ac 00000000 8024c1ac 0 setGpuErrorHandler
0024c478 00000000 8024c478 0 videoInitFn_8024c478
0024c8f0 00000054 8024c8f0 0 VIWaitForRetrace
0024c944 000002d4 8024c944 0 setFbbRegs
0024cc18 00000000 8024cc18 0 tvFn_8024cc18
0024cdb8 00000000 8024cdb8 0 tvModeInit_8024cdb8
0024d670 0000006c 8024d670 0 VISetNextFrameBuffer
0024d6dc 0000007c 8024d6dc 0 VISetBlack
0024d758 00000068 8024d758 0 getCurrentFieldEvenOdd
0024d868 00000098 8024d868 0 VIGetCurrentLine
0024d97c 0000003c 8024d97c 0 VIGetDTVStatus
0024dae8 00000000 8024dae8 0 joypadFn_8024dae8
0024dbf0 000001a4 8024dbf0 0 UpdateOrigin
0024dd94 000000c4 8024dd94 0 PADOriginCallback
0024de58 00000000 8024de58 0 joypadCb_8024de58
0024df18 000000d8 8024df18 0 PADProbeCallback
0024dff0 0000032c 8024dff0 0 PADTypeAndStatusCallback
0024e654 00000000 8024e654 0 joypadInitFn_8024e654
0024e864 00000000 8024e864 0 readControllers
0024ecb4 00000060 8024ecb4 0 PADSetSpec
0024ee88 00000174 8024ee88 0 SPEC0_MakeStatus
0024f588 00000060 8024f588 0 SamplingHandler
0024f5e8 00000054 8024f5e8 0 PADSetSamplingCallback
0024f6fc 00000088 8024f6fc 0 AIInitDMA
0024f784 00000018 8024f784 0 AIStartDMA
0024f79c 00000018 8024f79c 0 AIStopDMA
0024f7b4 0000001c 8024f7b4 0 AIGetDMAStartAddr
0024f7d0 000000d8 8024f7d0 0 AISetStreamPlayState
0024f8a8 00000000 8024f8a8 0 getAudioCR
0024f8b8 000000e0 8024f8b8 0 AISetDSPSampleRate
0024f998 00000014 8024f998 0 AIGetDSPSampleRate
0024f9ac 000000d4 8024f9ac 0 __AI_set_stream_sample_rate
0024fa90 00000000 8024fa90 0 setAudioVolume
0024faac 00000010 8024faac 0 AIGetStreamPlayState
0024fabc 0000001c 8024fabc 0 AISetStreamVolLeft
0024fc58 0000007c 8024fc58 0 __AISHandler
0024fd64 00000058 8024fd64 0 __AICallbackStackSwitch
0024fdbc 000001e4 8024fdbc 0 __AI_SRC_INIT
0024ffa0 00000044 8024ffa0 0 AIRegisterDMACallback
0024ffe4 000000f0 8024ffe4 0 ARStartDMA
002501a0 00000078 802501a0 0 __ARHandler
00250b2c 00000100 80250b2c 0 __ARQServiceQueueLo
00250c30 000000cc 80250c30 0 __ARQInterruptServiceRoutine
00250d64 0000015c 80250d64 0 ARQPostRequest
00250ee0 00000018 80250ee0 0 DSPReadMailFromDSP
00250ef8 00000014 80250ef8 0 DSPSendMailToDSP
00250f0c 00000000 80250f0c 0 DSPInit
0025104c 00000010 8025104c 0 __ARGetInterruptStatus
0025105c 00000070 8025105c 0 DSPAddTask
002510cc 00000000 802510cc 0 print_802510cc
0025111c 00000424 8025111c 0 __DSPHandler
00251540 000001a0 80251540 0 __DSP_exec_task
002516e0 0000018c 802516e0 0 __DSP_boot_task
0025186c 000000a0 8025186c 0 __DSP_insert_task
0025190c 00000094 8025190c 0 __DSP_remove_task
002519a0 00000020 802519a0 0 SIBusy
002519c0 0000003c 802519c0 0 SIIsChanBusy
002519fc 000002fc 802519fc 0 CompleteTransfer
00251cf8 00000344 80251cf8 0 SIInterruptHandler
0025203c 00000098 8025203c 0 SIEnablePollingInterrupt
002520d4 000000cc 802520d4 0 SIRegisterPollingHandler
002521a0 000000f4 802521a0 0 SIUnregisterPollingHandler
00252294 00000000 80252294 0 siInit
00252338 0000020c 80252338 0 __SITransfer
00252544 0000007c 80252544 0 SIGetStatus
002525c0 00000014 802525c0 0 SISetCommand
002525d4 00000010 802525d4 0 SITransferCommands
002525e4 0000006c 802525e4 0 SISetXY
00252650 0000009c 80252650 0 SIEnablePolling
002526ec 0000006c 802526ec 0 SIDisablePolling
00252758 000000d4 80252758 0 SIGetResponseRaw
0025282c 000000c4 8025282c 0 SIGetResponse
002528f0 0000008c 802528f0 0 AlarmHandler
0025297c 0000016c 8025297c 0 SITransfer
00252ae8 00000298 80252ae8 0 GetTypeCallback
00252d80 000001c4 80252d80 0 SIGetType
00252f44 0000013c 80252f44 0 SIGetTypeAsync
00253080 000000e4 80253080 0 SISetSamplingRate
0025389c 00000048 8025389c 0 EXIClearInterrupts
00253960 00000000 80253960 0 exiFn_80253960
0025400c 00000000 8025400c 0 exiIntrFn_8025400c
002540d4 00000000 802540d4 0 exiIntrFn_802540d4
002542ec 00000000 802542ec 0 exiIntrFn_802542ec
002543bc 00000000 802543bc 0 exiInit
00254a5c 00000070 80254a5c 0 InitializeUART
00255ef8 0000006c 80255ef8 0 GXInitFifoBase
00255f64 00000070 80255f64 0 GXInitFifoPtrs
00256460 00000000 80256460 0 installCallback_80256460
002565a0 0000004c 802565a0 0 __GXFifoInit
00256978 00000000 80256978 0 maybeGxSetParam
00257444 00000000 80257444 0 maybeGxSetParam
00257f00 00000010 80257f00 0 GXInvalidateVtxCache
00257f10 00000000 80257f10 0 gxFn_80257f10
002581e0 00000000 802581e0 0 gxFn_802581e0
002585f0 00000014 802585f0 0 GXPokeAlphaMode
002590f4 00000000 802590f4 0 tvFn_802590f4
00259670 0000001c 80259670 0 GXInitLightAttn
00259848 000000d0 80259848 0 GXInitLightDistAttn
00259e58 00000000 80259e58 0 gxFn_80259e58
00259ea4 00000000 80259ea4 0 gxFn_80259ea4
0025a248 000000c8 8025a248 0 __GetImageTileCount
0025aaac 00000048 8025aaac 0 GXInvalidateTexAll
0025b1e8 00000000 8025b1e8 0 gxFn_8025b1e8
0025b71c 00000000 8025b71c 0 gxFn_8025b71c
0025b764 00000048 8025b764 0 GXSetTevDirect
0025b878 00000000 8025b878 0 gxFn_8025b878
0025bac0 00000000 8025bac0 0 gxFn_8025bac0
0025bcc4 00000000 8025bcc4 0 gxFn_8025bcc4
0025bdac 00000000 8025bdac 0 gxFn_8025bdac
0025be8c 00000000 8025be8c 0 gxFn_8025be8c
0025c0c4 00000000 8025c0c4 0 gxFn_8025c0c4
0025c584 00000000 8025c584 0 gxFn_8025c584
0025d01c 00000000 8025d01c 0 gxFn_8025d01c
0025d084 00000000 8025d084 0 gxFn_8025d084
0025d160 00000000 8025d160 0 gxFn_8025d160
0025d324 00000000 8025d324 0 maybeGxSetScissor
0025ddac 00000010 8025ddac 0 GXClearGPMetric
0025de84 00000000 8025de84 0 fileCb_8025de84
0025deb8 000000d8 8025deb8 0 __CARDExtHandler
0025df90 00000118 8025df90 0 __CARDExiHandler
0025e0a8 000000a8 8025e0a8 0 __CARDTxHandler
0025e150 00000084 8025e150 0 __CARDUnlockedHandler
0025e1d4 000000c0 8025e1d4 0 __CARDEnableInterrupt
0025e294 000000f0 8025e294 0 __CARDReadStatus
0025e384 000000ac 8025e384 0 __CARDClearStatus
0025e430 000000a4 8025e430 0 TimeoutHandler
0025e4d4 0000022c 8025e4d4 0 Retry
0025e700 00000110 8025e700 0 UnlockedCallback
0025e810 000001b4 8025e810 0 __CARDStart
0025e9c4 00000134 8025e9c4 0 __CARDReadSegment
0025eaf8 0000011c 8025eaf8 0 __CARDWritePage
0025ec14 000000e0 8025ec14 0 __CARDEraseSector
0025ed90 00000038 8025ed90 0 __CARDSetDiskID
0025edc8 000000b8 8025edc8 0 __CARDGetControlBlock
0025ee80 00000064 8025ee80 0 __CARDPutControlBlock
0025ef7c 00000050 8025ef7c 0 OnReset
0025efcc 0000016c 8025efcc 0 bitrev
0025f138 00000144 8025f138 0 ReadArrayUnlock
0025f27c 000000c4 8025f27c 0 DummyLen
0025f340 00000b58 8025f340 0 __CARDUnlock
0025fe98 00000070 8025fe98 0 InitCallback
0025ff08 00000324 8025ff08 0 DoneCallback
00260308 00000064 80260308 0 __CARDRead
0026036c 000000dc 8026036c 0 BlockReadCallback
002604b4 000000d4 802604b4 0 WriteCallback
00260650 00000118 80260650 0 __CARDAllocBlock
00260768 0000009c 80260768 0 __CARDFreeBlock
00260804 000000ac 80260804 0 __CARDUpdateFatBlock
002608b8 000000d0 802608b8 0 WriteCallback
00260988 000000c8 80260988 0 EraseCallback
00260a50 000000c4 80260a50 0 __CARDUpdateDir
00260b14 000001b0 80260b14 0 __CARDCheckSum
00260f48 00000240 80260f48 0 VerifyDir
00261188 00000284 80261188 0 VerifyFAT
0026140c 0000008c 8026140c 0 __CARDVerify
00261498 00000590 80261498 0 CARDCheckExAsync
00261a7c 000000cc 80261a7c 0 IsCard
00261b48 0000017c 80261b48 0 CARDProbeEx
00261cc4 00000410 80261cc4 0 DoMount
002620d4 00000138 802620d4 0 __CARDMountCallback
0026220c 000001a0 8026220c 0 CARDMountAsync
002623f4 0000009c 802623f4 0 DoUnmount
00262490 000000ac 80262490 0 CARDUnmount
0026253c 00000144 8026253c 0 FormatCallback
00262680 00000658 80262680 0 __CARDFormatRegionAsync
00262d2c 00000068 80262d2c 0 __CARDCompareFileName
00263124 00000054 80263124 0 CARDClose
00263180 00000130 80263180 0 CreateCallbackFat
002632b0 00000220 802632b0 0 CARDCreateAsync
00263518 000001b8 80263518 0 __CARDSeek
002636d0 00000130 802636d0 0 ReadCallback
00263990 00000170 80263990 0 WriteCallback
00263b00 000000b0 80263b00 0 EraseCallback
00263bb0 00000114 80263bb0 0 CARDWriteAsync
00263cc4 00000000 80263cc4 0 loadFn_80263cc4
00263d0c 000000a4 80263d0c 0 DeleteCallback
00263db0 00000110 80263db0 0 CARDDeleteAsync
00263ec0 00000000 80263ec0 0 loadFn_80263ec0
00263f08 000001f8 80263f08 0 UpdateIconOffsets
0026422c 00000174 8026422c 0 CARDSetStatusAsync
002644ac 00000244 802644ac 0 THPVideoDecode
002646f0 00000044 802646f0 0 __THPSetupBuffers
00264734 0000013c 80264734 0 __THPReadFrameHeader
00264870 0000011c 80264870 0 __THPReadScaneHeader
00264f28 000000f0 80264f28 0 __THPHuffGenerateSizeTable
00265018 00000068 80265018 0 __THPHuffGenerateCodeTable
00265080 000001bc 80265080 0 __THPHuffGenerateDecoderTables
0026523c 00000054 8026523c 0 __THPRestartDefinition
00265290 0000024c 80265290 0 __THPPrepBitStream
0026a5a8 0000067c 8026a5a8 0 __THPHuffDecodeDCTCompY
0026ac24 000006a8 8026ac24 0 __THPHuffDecodeDCTCompU
0026b2cc 000006a8 8026b2cc 0 __THPHuffDecodeDCTCompV
0026b9ec 00000464 8026b9ec 0 THPAudioDecode
0026be50 00000090 8026be50 0 __THPAudioGetNewSample
0026bee0 0000003c 8026bee0 0 __THPAudioInitialize
0026bf1c 00000000 8026bf1c 0 doNothing_8026bf1c
0026bf20 00000000 8026bf20 0 doNothing_8026bf20
0026bf24 00000000 8026bf24 0 return0_8026bf24
0026bf2c 00000000 8026bf2c 0 return0_8026bf2c
0026bf34 00000000 8026bf34 0 return0_8026bf34
0026bf3c 00000000 8026bf3c 0 doNothing_8026bf3c
0026bf40 00000000 8026bf40 0 doNothing_8026bf40
0026bf44 00000000 8026bf44 0 return1_8026bf44
0026bf4c 00000000 8026bf4c 0 return0_8026bf4c
0026c124 00000000 8026c124 0 thread_8026c124
002720a8 00000000 802720a8 0 audioFn_802720a8
002725ec 00000024 802725ec 0 SIRefreshSamplingRate
00278810 000000a4 80278810 0 TimeQueueAdd
0027938c 00000014 8027938c 0 vidMakeRoot
0027949c 00000050 8027949c 0 vidGetInternalId
0027b72c 00000000 8027b72c 0 sndPushGroup
0027efc0 00000060 8027efc0 0 salDeactivateVoice
002811a8 00000000 802811a8 0 sndIsInstalled
002811b0 000000ac 802811b0 0 salApplyMatrix
0028125c 000000b4 8028125c 0 salNormalizeVector
00282f80 00000010 80282f80 0 dGeomDisable
0028327c 00000014 8028327c 0 hwSetPriority
0028343c 00000050 8028343c 0 hwBreak
0028363c 00000020 8028363c 0 hwSetVirtualSampleLoopBuffer
0028365c 00000014 8028365c 0 hwGetVirtualSampleState
00283684 00000014 80283684 0 hwGetSampleID
00283698 00000014 80283698 0 hwSetStreamLoopPS
002836e8 00000028 802836e8 0 hwKeyOff
002837b4 0000002c 802837b4 0 hwSetSRCType
00283d34 00000024 80283d34 0 __OSUnlockSram
00283d58 00000000 80283d58 0 doNothing_80283d58
00283f58 00000028 80283f58 0 hwGetVirtualSampleID
00283f80 00000020 80283f80 0 hwVoiceInStartup
0028420c 00000018 8028420c 0 aramSyncTransferQueue
00284714 00000010 80284714 0 LooseBallAnims::Destroy(void)
00284bc0 00000000 80284bc0 0 audioCallback_80284bc0
0028504c 000003b4 8028504c 0 HandleReverb
00285424 00000298 80285424 0 DBGEXIImm
002856bc 000000ac 802856bc 0 DBGReadStatus
00285768 000000dc 80285768 0 DBGRead
00285844 000000dc 80285844 0 DBGWrite
002859cc 0000003c 802859cc 0 MWCallback
00285a08 00000040 80285a08 0 DBGHandler
00285a48 00000000 80285a48 0 exiFn_80285a48
00285ac0 00000054 80285ac0 0 DBInitInterrupts
00285c3c 00000260 80285c3c 0 DBWrite
00285e9c 00000000 80285e9c 0 doNothing_80285e9c
00285ea0 00000000 80285ea0 0 doNothing_80285ea0
00285ea4 000000c8 80285ea4 0 __va_arg
00285f6c 00000048 80285f6c 0 __destroy_global_chain
00285fb4 0000005c 80285fb4 0 __cvt_fp2unsigned
00286010 0000004c 80286010 0 __save_fpr
0028603c 00000000 8028603c 0 storeFloatRegs25
00286044 00000000 80286044 0 storeFloatRegs27
00286048 00000000 80286048 0 storeFloatRegs28
0028604c 00000000 8028604c 0 storeFloatRegs29
00286050 00000000 80286050 0 storeFloatRegs30
0028605c 0000004c 8028605c 0 __restore_fpr
00286088 00000000 80286088 0 restoreFloatRegs25
00286090 00000000 80286090 0 restoreFloatRegs27
00286094 00000000 80286094 0 restoreFloatRegs28
00286098 00000000 80286098 0 restoreFloatRegs29
0028609c 00000000 8028609c 0 restoreFloatRegs30
002860a8 0000004c 802860a8 0 __save_gpr
002860ac 00000000 802860ac 0 storeRegs15
002860b0 00000000 802860b0 0 storeRegs16
002860b4 00000000 802860b4 0 storeRegs17
002860b8 00000000 802860b8 0 storeRegs18
002860bc 00000000 802860bc 0 storeRegs19
002860c0 00000000 802860c0 0 storeRegs20
002860c4 00000000 802860c4 0 storeRegs21
002860c8 00000000 802860c8 0 storeRegs22
002860cc 00000000 802860cc 0 storeRegs23
002860d0 00000000 802860d0 0 storeRegs24
002860d4 00000000 802860d4 0 storeRegs25
002860d8 00000000 802860d8 0 storeRegs26
002860dc 00000000 802860dc 0 storeRegs27
002860f4 0000004c 802860f4 0 __restore_gpr
002860f8 00000000 802860f8 0 restoreRegs15
002860fc 00000000 802860fc 0 restoreRegs16
00286100 00000000 80286100 0 restoreRegs17
00286104 00000000 80286104 0 restoreRegs18
00286108 00000000 80286108 0 restoreRegs19
0028610c 00000000 8028610c 0 restoreRegs20
00286110 00000000 80286110 0 restoreRegs21
00286114 00000000 80286114 0 restoreRegs22
00286118 00000000 80286118 0 restoreRegs23
0028611c 00000000 8028611c 0 restoreRegs24
00286120 00000000 80286120 0 restoreRegs25
00286124 00000000 80286124 0 restoreRegs26
00286128 00000000 80286128 0 restoreRegs27
00286140 000000ec 80286140 0 __div2u
0028622c 00000138 8028622c 0 __div2i
00286364 000000e0 80286364 0 __mod2u
00286448 00000024 80286448 0 __shl2i
0028646c 00000024 8028646c 0 __shr2u
00286490 00000028 80286490 0 __shr2i
002864b8 000000b4 802864b8 0 __cvt_sll_flt
0028660c 000000cc 8028660c 0 __cvt_dbl_usll
002866d8 00000000 802866d8 0 getSP
002866e0 00000034 802866e0 0 __fini_cpp_exceptions
00286714 00000040 80286714 0 __init_cpp_exceptions
00286754 00000034 80286754 0 __unregister_fragment
00286788 00000034 80286788 0 __register_fragment
00286954 00000024 80286954 0 cFielder::UpdatePlay(float)
00286990 000000e0 80286990 0 TRKPostEvent
00286a70 000000b4 80286a70 0 TRKGetNextEvent
00286b24 00000058 80286b24 0 TRKInitializeEventQueue
00286b7c 00000028 80286b7c 0 TRKNubWelcome
00286ba4 00000000 80286ba4 0 return0_80286ba4
00286ed8 000000f0 80286ed8 0 TRKReadBuffer_ui32
00286fc8 00000098 80286fc8 0 TRKReadBuffer_ui8
00287060 000000e8 80287060 0 TRKReadBuffer1_ui64
002873f0 00000068 802873f0 0 TRKAppendBuffer_ui8
00287598 0000008c 80287598 0 TRKReadBuffer
00287624 000000a4 80287624 0 TRKAppendBuffer
002876c8 00000030 802876c8 0 TRKSetBufferPosition
00287738 00000064 80287738 0 TRKReleaseBuffer
0028779c 0000002c 8028779c 0 TRKGetBuffer
002877c8 000000c8 802877c8 0 TRKGetFreeBuffer
00287890 00000074 80287890 0 TRKInitializeMessageBuffers
00287904 00000000 80287904 0 return0_80287904
00287930 00000050 80287930 0 TRKProcessInput
00287cd4 00000088 80287cd4 0 usr_puts_serial
0028a63c 0000000c 8028a63c 0 SetTRKConnected
0028a648 00000000 8028a648 0 get_pStr_803d82f0
0028aef4 00000000 8028aef4 0 stub_endSomething