-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathfireemblem8.cfg
14346 lines (14345 loc) · 280 KB
/
fireemblem8.cfg
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
#
arm_func 0x8000000 _start
#
arm_func 0x80000fc intr_main
#
arm_func 0x8000234 sub_8000234
#
arm_func 0x8000304 Store160To80Structs
#
arm_func 0x8000360 sub_8000360
#
arm_func 0x80003a8 ARM_FillRect
#
arm_func 0x80003e0 sub_80003E0
#
arm_func 0x800043c sub_800043C
#
arm_func 0x8000494 IRAMARM_CopyToSecondaryOAM
#
arm_func 0x8000534 IRAMARM_CopyToPrimaryOAM
#
arm_func 0x8000564 IRAMARM_Func3_DrawGlyph
#
arm_func 0x80006e4 IRAMARM_DecompText
#
arm_func 0x8000784 IRAMARM_Func5
#
arm_func 0x8000874 IRAMARM_FillMovementMap
#
thumb_func 0x8000a20 AgbMain
#
thumb_func 0x8000b10 sub_8000B10
#
thumb_func 0x8000b34 StoreIRQToIRAM
#
thumb_func 0x8000b74 DummyIRQRoutine
#
thumb_func 0x8000b78 SetIRQHandler
#
thumb_func 0x8000b88 NextRN
#
thumb_func 0x8000bc8 sub_8000BC8
#
thumb_func 0x8000c34 LoadRNState
#
thumb_func 0x8000c4c StoreRNState
#
thumb_func 0x8000c64 NextRN_100
#
thumb_func 0x8000c80 NextRN_N
#
thumb_func 0x8000ca0 Roll1RN
#
thumb_func 0x8000cb8 Roll2RN
#
thumb_func 0x8000cdc SetOtherRNState
#
thumb_func 0x8000ce8 GetOtherRN
#
thumb_func 0x8000d00 sub_8000D00
#
thumb_func 0x8000d0c sub_8000D0C
#
thumb_func 0x8000d18 sub_8000D18
#
thumb_func 0x8000d34 SetGlobalClock
#
thumb_func 0x8000d40 IncrementGlobalClock
#
thumb_func 0x8000d64 sub_8000D64
#
thumb_func 0x8000db8 CopyToPaletteBuffer
#
thumb_func 0x8000E14
thumb_func 0x8000e9c FlushLCDControl
#
thumb_func 0x8000f44 GetBackgroundControlBuffer
#
thumb_func 0x8000f8c GetBackgroundTileDataOffset
#
thumb_func 0x8000fa4 GetTileIndex
#
thumb_func 0x8000fdc SetBackgroundTileDataOffset
#
thumb_func 0x8001004 SetBackgroundMapDataOffset
#
thumb_func 0x800104c SetBackgroundScreenSize
#
thumb_func 0x8001094 FlushPalettesAdditive
#
thumb_func 0x80010f0 FlushPalettesSubstractive
#
thumb_func 0x800114c FlushBackgrounds
#
thumb_func 0x8001220 BG_Fill
#
thumb_func 0x8001240 RegisterBlankTile
#
thumb_func 0x8001258 SetInterrupt_LCDVBlank
#
thumb_func 0x80012ac SetInterrupt_LCDVCountMatch
#
thumb_func 0x8001308 sub_8001308
#
thumb_func 0x800131c SetLCDVCountSetting
#
thumb_func 0x8001328 SetMainUpdateRoutine
#
thumb_func 0x8001334 ExecMainUpdate
#
thumb_func 0x800134c _UpdateKeyStatus
#
thumb_func 0x80013e0 UpdateKeyStatus
#
thumb_func 0x8001420 ResetKeyStatus
#
thumb_func 0x8001440 SetKeyStatus_IgnoreMask
#
thumb_func 0x800144c GetKeyStatus_IgnoreMask
#
thumb_func 0x8001458 KeyStatusSetter_Set
#
thumb_func 0x8001470 NewKeyStatusSetter
#
thumb_func 0x800148c BG_SetPosition
#
thumb_func 0x800154c sub_800154C
#
thumb_func 0x800159c sub_800159C
#
thumb_func 0x8001710 sub_8001710
#
thumb_func 0x800172c sub_800172C
#
thumb_func 0x80017b4 sub_80017B4
#
thumb_func 0x800183c sub_800183C
#
thumb_func 0x8001860 sub_8001860
#
thumb_func 0x80018e4 sub_80018E4
#
thumb_func 0x8001964 sub_8001964
#
thumb_func 0x80019e8 sub_80019E8
#
thumb_func 0x8001b58 SetupBackgrounds
#
thumb_func 0x8001c4c BG_GetMapBuffer
#
thumb_func 0x8001c5c sub_8001C5C
#
thumb_func 0x8001c68 ShouldSkipHSScreen
#
thumb_func 0x8001c78 sub_8001C78
#
thumb_func 0x8001cb0 sub_8001CB0
#
thumb_func 0x8001cfc sub_8001CFC
#
thumb_func 0x8001d28 UpdateHBlankHandlerState
#
thumb_func 0x8001dd8 SetPrimaryHBlankHandler
#
thumb_func 0x8001dec SetSecondaryHBlankHandler
#
thumb_func 0x8001e00 GetBackgroundFromBufferPointer
#
thumb_func 0x8001e6c BG_SetDepth
#
thumb_func 0x8001e8c BG_GetDepth
#
thumb_func 0x8001ea0 SetSpecialColorEffectsParameters
#
thumb_func 0x8001ed0 sub_8001ED0
#
thumb_func 0x8001f0c sub_8001F0C
#
thumb_func 0x8001f48 sub_8001F48
#
thumb_func 0x8001f64 sub_8001F64
#
thumb_func 0x8001f80 SetDefaultColorEffects
#
thumb_func 0x8001f94 EnablePaletteSync
#
thumb_func 0x8001fa0 DisablePaletteSync
#
thumb_func 0x8001fac BG_EnableSyncByMask
#
thumb_func 0x8001fbc BG_EnableSync
#
thumb_func 0x8001fe0 ClearTileRigistry
#
thumb_func 0x8002014 RegisterTileGraphics
#
thumb_func 0x8002054 RegisterFillTile
#
thumb_func 0x8002088 FlushTiles
#
thumb_func 0x80020fc SetupOAMBufferSplice
#
thumb_func 0x8002138 FlushSecondaryOAM
#
thumb_func 0x800217c FlushPrimaryOAM
#
thumb_func 0x80021b0 WriteOAMRotScaleData
#
thumb_func 0x800224c GetPrimaryOAMSize
#
thumb_func 0x8002258 sub_8002258
#
thumb_func 0x8002264 sub_8002264
#
thumb_func 0x8002274 SomethingSoundRelated_8002274
#
thumb_func 0x80022ec SomethingSoundRelated_80022EC
#
thumb_func 0x800231c SoundStuff_800231C
#
thumb_func 0x80023e0 SoundStuff_80023E0
#
thumb_func 0x8002448 sub_8002448
#
thumb_func 0x8002478 sub_8002478
#
thumb_func 0x80024d4 sub_80024D4
#
thumb_func 0x80024e4 sub_80024E4
#
thumb_func 0x80024f0 sub_80024F0
#
thumb_func 0x8002574 sub_8002574
#
thumb_func 0x8002620 sub_8002620
#
thumb_func 0x8002670 sub_8002670
#
thumb_func 0x80026bc sub_80026BC
#
thumb_func 0x800270c sub_800270C
#
thumb_func 0x8002730 ISuspectThisToBeMusicRelated_8002730
#
thumb_func 0x8002788 sub_8002788
#
thumb_func 0x800281c Some6CMusicRelatedWaitCallback
#
thumb_func 0x8002858 Exec6CSomeWaitIfMusicOn
#
thumb_func 0x8002890 sub_8002890
#
thumb_func 0x80028d0 sub_80028D0
#
thumb_func 0x80028e8 sub_80028E8
#
thumb_func 0x80028fc sub_80028FC
#
thumb_func 0x8002950 sub_8002950
#
thumb_func 0x800296c sub_800296C
#
thumb_func 0x80029bc sub_80029BC
#
thumb_func 0x80029e8 sub_80029E8
#
thumb_func 0x8002a6c sub_8002A6C
#
thumb_func 0x8002ab8 DeleteAll6CWaitMusicRelated
#
thumb_func 0x8002ac8 sub_8002AC8
#
thumb_func 0x8002af8 StoreRoutinesToIRAM
#
thumb_func 0x8002b90 CallARM_Func3
#
thumb_func 0x8002ba4 CallARM_DecompText
#
thumb_func 0x8002bb8 CallARM_PushToSecondaryOAM
#
thumb_func 0x8002bcc CallARM_PushToPrimaryOAM
#
thumb_func 0x8002be0 CallARM_Func5
#
thumb_func 0x8002bf4 CallARM_FillMovementMap
#
thumb_func 0x8002c08 Initialize6CEngine
#
thumb_func 0x8002c7c New6C
#
thumb_func 0x8002ce0 NewBlocking6C
#
thumb_func 0x8002d10 Delete6CInternal
#
thumb_func 0x8002d6c Delete6C
#
thumb_func 0x8002d84 Allocate6C
#
thumb_func 0x8002d94 Free6C
#
thumb_func 0x8002da4 InsertMain6C
#
thumb_func 0x8002dc8 InsertChild6C
#
thumb_func 0x8002de0 Isolate6C
#
thumb_func 0x8002e28 Exec6C_
#
thumb_func 0x8002e84 Exec6C
#
thumb_func 0x8002e94 Break6CLoop
#
thumb_func 0x8002e9c Find6C
#
thumb_func 0x8002f24 Goto6CLabel
#
thumb_func 0x8002f5c Goto6CPointer
#
thumb_func 0x8002f64 Set6CMark
#
thumb_func 0x8002f6c Set6CDestructor
#
thumb_func 0x8002f70 ForAll6C
#
thumb_func 0x8002f98 ForEach6C
#
thumb_func 0x8002fec BlockEach6CMarked
#
thumb_func 0x8003014 UnblockEach6CMarked
#
thumb_func 0x8003040 DeleteEach6CMarked
#
thumb_func 0x800306c Delete6C_
#
thumb_func 0x8003078 DeleteEach6C
#
thumb_func 0x8003088 Clear6CLoopWrapper
#
thumb_func 0x8003094 ClearCallbackAll6CMatch
#
thumb_func 0x80030a4 ForAllFollowing6C
#
thumb_func 0x80030e8 Call6C_00Delete
#
thumb_func 0x80030f4 Call6C_01Name
#
thumb_func 0x8003104 Call6C_02CallAndContinue
#
thumb_func 0x8003118 Call6C_16Call
#
thumb_func 0x8003130 Call6C_18CallWithArg
#
thumb_func 0x8003150 Call6C_14While
#
thumb_func 0x800317c Call6C_03SetLoop
#
thumb_func 0x800318c Call6C_04SetDestructor
#
thumb_func 0x80031a8 Call6C_05AddChild
#
thumb_func 0x80031c4 Call6C_06AddBlockingChild
#
thumb_func 0x80031e0 Call6C_07AddGlobal_BuggedMaybe
#
thumb_func 0x8003200 Call6C_08WhileExists
#
thumb_func 0x8003228 Call6C_09DeleteEach6C
#
thumb_func 0x8003244 Call6C_0AClearLoopForEach6C
#
thumb_func 0x8003260 Call6C_0BOr19Label
#
thumb_func 0x800326c Call6C_0DJump
#
thumb_func 0x800327c Call6C_0CGotoLabel
#
thumb_func 0x8003290 _6CSleepLoop
#
thumb_func 0x80032ac Call6C_0ESleep
#
thumb_func 0x80032d4 Call6C_0FMark
#
thumb_func 0x80032e8 Call6C_13Blank
#
thumb_func 0x80032f4 Call6C_10Block
#
thumb_func 0x80032f8 Call6C_11DeleteIfDuplicate
#
thumb_func 0x8003338 Call6C_17DeleteOtherDuplicates
#
thumb_func 0x8003370 Call6C_15Blank
#
thumb_func 0x800337c Call6C_12SetBit4
#
thumb_func 0x8003394 Call6CCode
#
thumb_func 0x80033dc nullsub_2
#
thumb_func 0x80033e0 ForEach6CDoNothing
#
thumb_func 0x8003450 Set6CLoop
#
thumb_func 0x800346c Find6C_
#
thumb_func 0x80034a0 sub_80034A0
#
thumb_func 0x80034fc sub_80034FC
#
thumb_func 0x8003530 sub_8003530
#
thumb_func 0x8003540 sub_8003540
#
thumb_func 0x8003578 ResetIconGraphics_
#
thumb_func 0x8003584 ResetIconGraphics
#
thumb_func 0x80035bc LoadIconPalettes
#
thumb_func 0x80035d4 LoadIconPalette
#
thumb_func 0x8003610 GetIconGfxTileIndex
#
thumb_func 0x8003624 GetIconGfxIndex
#
thumb_func 0x8003650 GetIconTileIndex
#
thumb_func 0x80036bc DrawIcon
#
thumb_func 0x800370c ClearIconGfx
#
thumb_func 0x800372c LoadIconObjectGraphics
#
thumb_func 0x800378c SetupDebugFontForBG
#
thumb_func 0x8003804 PrintDebugStringToBG
#
thumb_func 0x80038c8 ClearSmallStringBuffer
#
thumb_func 0x80038e0 StoreNumberStringToSmallBuffer
#
thumb_func 0x800391c StoreNumberStringOrDashesToSmallBuffer
#
thumb_func 0x8003968 StoreNumberHexStringToSmallBuffer
#
thumb_func 0x80039d0 PrintStringToDBG
#
thumb_func 0x8003a3c FlushDBGToBG2
#
thumb_func 0x8003b24 SetupDebugFontForOBJ
#
thumb_func 0x8003bb0 PrintDebugStringAsOBJ
#
thumb_func 0x8003c7c GetSomeByte
#
thumb_func 0x8003c88 SetSomeByte
#
thumb_func 0x8003c94 Font_InitForUIDefault
#
thumb_func 0x8003cb8 Font_InitForUI
#
thumb_func 0x8003cf4 SetFontGlyphSet
#
thumb_func 0x8003d20 sub_8003D20
#
thumb_func 0x8003d38 SetFont
#
thumb_func 0x8003d5c Text_Init
#
thumb_func 0x8003d84 Text_Allocate
#
thumb_func 0x8003dac InitTextBatch
#
thumb_func 0x8003dc8 Text_Clear
#
thumb_func 0x8003e00 sub_8003E00
#
thumb_func 0x8003e50 Text_GetXCursor
#
thumb_func 0x8003e54 Text_SetXCursor
#
thumb_func 0x8003e58 Text_Advance
#
thumb_func 0x8003e60 Text_SetColorId
#
thumb_func 0x8003e64 Text_GetColorId
#
thumb_func 0x8003e68 Text_SetParameters
#
thumb_func 0x8003e70 Text_Draw
#
thumb_func 0x8003ebc Text_DrawBlank
#
thumb_func 0x8003edc GetStringTextWidth
#
thumb_func 0x8003f3c GetCharTextWidth
#
thumb_func 0x8003f90 GetStringTextCenteredPos
#
thumb_func 0x8003fac sub_8003FAC
#
thumb_func 0x8003ff4 String_GetEnd
#
thumb_func 0x8004004 Text_AppendString
#
thumb_func 0x8004074 Text_AppendDecNumber
#
thumb_func 0x80040c0 sub_80040C0
#
thumb_func 0x8004144 Text_AppendNumberOr2Dashes
#
thumb_func 0x8004180 Text_AppendChar
#
thumb_func 0x80041e8 GetVRAMPointerForTextMaybe
#
thumb_func 0x8004208 GetSomeTextDrawingRelatedTablePointer
#
thumb_func 0x8004218 Font_StandardGlyphDrawer
#
thumb_func 0x8004268 Font_SpecializedGlyphDrawer
#
thumb_func 0x80043a8 Font_LoadForUI
#
thumb_func 0x80043e8 Font_LoadForDialogue
#
thumb_func 0x8004428 Font_SetSomeSpecialDrawingRoutine
#
thumb_func 0x800443c DrawTextInline
#
thumb_func 0x8004480 Text_InsertString
#
thumb_func 0x80044a4 Text_InsertNumberOr2Dashes
#
thumb_func 0x80044c8 Text_AppendStringSimple
#
thumb_func 0x8004504 Text_AppendCharSimple
#
thumb_func 0x8004538 GetCharTextWidthSimple
#
thumb_func 0x8004568 GetStringTextWidthSimple
#
thumb_func 0x800459c InitSomeOtherGraphicsRelatedStruct
#
thumb_func 0x80045d8 Text_Init3
#
thumb_func 0x80045fc sub_80045FC
#
thumb_func 0x800465c sub_800465C
#
thumb_func 0x80046b4 Text_80046B4
#
thumb_func 0x80046e0 sub_80046E0
#
thumb_func 0x8004700 sub_8004700
#
thumb_func 0x80048b0 sub_80048B0
#
thumb_func 0x8004984 sub_8004984
#
thumb_func 0x80049ac NewGreenTextColorManager
#
thumb_func 0x80049d0 EndGreenTextColorManager
#
thumb_func 0x8004a34 sub_8004A34
#
thumb_func 0x8004a90 sub_8004A90
#
thumb_func 0x8004acc sub_8004ACC
#
thumb_func 0x8004b0c sub_8004B0C
#
thumb_func 0x8004b48 sub_8004B48
#
thumb_func 0x8004b88 sub_8004B88
#
thumb_func 0x8004b94 DrawDecNumber
#
thumb_func 0x8004bb4 sub_8004BB4
#
thumb_func 0x8004be4 sub_8004BE4
#
thumb_func 0x8004bf0 sub_8004BF0
#
thumb_func 0x8004c68 sub_8004C68
#
thumb_func 0x8004d5c sub_8004D5C
#
thumb_func 0x8004d7c sub_8004D7C
#
thumb_func 0x8004e40 AIS_ExecAll
#
thumb_func 0x8004eb8 ClearAISArray
#
thumb_func 0x8004f48 AIS_New
#
thumb_func 0x8004fac AISArray_Sort
#
thumb_func 0x8005004 AIS_Free
#
thumb_func 0x8005034 AIS_Display
#
thumb_func 0x8005040 HandleNextAISFrame
#
thumb_func 0x80051c0 LinkAIS
#
thumb_func 0x8005208 _AIS_Display
#
thumb_func 0x80053a4 ClearIntermediateOAMBuffers
#
thumb_func 0x80053e8 RegisterObjectAttributes_SafeMaybe
#
thumb_func 0x8005428 RegisterObjectAttributes
#
thumb_func 0x8005458 FlushIntermediateOAMBuffer
#
thumb_func 0x8005488 sub_8005488
#
thumb_func 0x80054b0 sub_80054B0
#
thumb_func 0x80054f4 sub_80054F4
#
thumb_func 0x8005514 GetPortraitStructPointer
#
thumb_func 0x8005528 ResetFaces
#
thumb_func 0x8005544 SetupFaceGfxData
#
thumb_func 0x8005570 sub_8005570
#
thumb_func 0x8005594 Load6CFACEGraphics
#
thumb_func 0x80055bc sub_80055BC
#
thumb_func 0x8005610 sub_8005610
#
thumb_func 0x800563c NewFace
#
thumb_func 0x8005738 DeleteE_FACEByPointer
#
thumb_func 0x8005758 DeleteFaceByIndex
#
thumb_func 0x8005770 sub_8005770
#
thumb_func 0x800578c sub_800578C
#
thumb_func 0x80057a4 sub_80057A4
#
thumb_func 0x80057a8 sub_80057A8
#
thumb_func 0x80057c0 sub_80057C0
#
thumb_func 0x8005894 sub_8005894
#
thumb_func 0x8005924 sub_8005924
#
thumb_func 0x8005988 sub_8005988
#
thumb_func 0x80059cc sub_80059CC
#
thumb_func 0x8005ad4 sub_8005AD4
#
thumb_func 0x8005b78 sub_8005B78
#
thumb_func 0x8005bcc sub_8005BCC
#
thumb_func 0x8005c24 ShouldPortraitBeSmol
#
thumb_func 0x8005ca4 sub_8005CA4
#
thumb_func 0x8005d64 sub_8005D64
#
thumb_func 0x8005d70 sub_8005D70
#
thumb_func 0x8005d98 sub_8005D98
#
thumb_func 0x8005e98 sub_8005E98
#
thumb_func 0x8005ecc sub_8005ECC
#
thumb_func 0x8005ed8 sub_8005ED8
#
thumb_func 0x8005ef0 sub_8005EF0
#
thumb_func 0x8005f38 sub_8005F38
#
thumb_func 0x8005f6c sub_8005F6C
#
thumb_func 0x8005f9c sub_8005F9C
#
thumb_func 0x8005fd4 sub_8005FD4
#
thumb_func 0x8005fe0 sub_8005FE0
#
thumb_func 0x8006134 sub_8006134
#
thumb_func 0x800623c sub_800623C
#
thumb_func 0x8006280 sub_8006280
#
thumb_func 0x80062b8 sub_80062B8
#
thumb_func 0x8006324 sub_8006324
#
thumb_func 0x800632c sub_800632C
#
thumb_func 0x8006370 sub_8006370
#
thumb_func 0x8006378 sub_8006378
#
thumb_func 0x80063bc sub_80063BC
#
thumb_func 0x80063c4 sub_80063C4
#
thumb_func 0x8006438 sub_8006438
#
thumb_func 0x8006458 sub_8006458
#
thumb_func 0x8006470 sub_8006470
#
thumb_func 0x80064d4 sub_80064D4
#
thumb_func 0x80064dc sub_80064DC
#
thumb_func 0x80064f4 sub_80064F4
#
thumb_func 0x8006618 sub_8006618
#
thumb_func 0x800662c sub_800662C
#
thumb_func 0x8006650 sub_8006650
#
thumb_func 0x80066a8 sub_80066A8
#
thumb_func 0x80066e0 sub_80066E0
#
thumb_func 0x80066fc sub_80066FC
#
thumb_func 0x800671c sub_800671C
#
thumb_func 0x8006738 sub_8006738
#
thumb_func 0x80067e8 sub_80067E8
#
thumb_func 0x800680c sub_800680C
#
thumb_func 0x80068ac sub_80068AC
#
thumb_func 0x8006978 sub_8006978
#
thumb_func 0x800698c sub_800698C
#
thumb_func 0x8006a30 sub_8006A30
#
thumb_func 0x8006a70 sub_8006A70
#
thumb_func 0x8006a7c sub_8006A7C
#
thumb_func 0x8006a98 sub_8006A98
#
thumb_func 0x8006aa8 sub_8006AA8
#
thumb_func 0x8006ac8 sub_8006AC8
#
thumb_func 0x8006adc sub_8006ADC
#
thumb_func 0x8006af0 sub_8006AF0
#
thumb_func 0x8006b10 sub_8006B10
#
thumb_func 0x8006b4c sub_8006B4C
#
thumb_func 0x8006c00 sub_8006C00
#
thumb_func 0x8006c34 sub_8006C34
#
thumb_func 0x8006da0 sub_8006DA0
#
thumb_func 0x8006e8c sub_8006E8C
#
thumb_func 0x8006ec4 sub_8006EC4
#
thumb_func 0x8006ed8 sub_8006ED8
#
thumb_func 0x8006ef0 sub_8006EF0
#
thumb_func 0x8006f00 sub_8006F00
#
thumb_func 0x8006f8c sub_8006F8C
#
thumb_func 0x8006fd0 sub_8006FD0
#
thumb_func 0x8007838 sub_8007838
#
thumb_func 0x8007844 sub_8007844
#
thumb_func 0x8007854 sub_8007854
#
thumb_func 0x8007938 sub_8007938
#
thumb_func 0x8007958 sub_8007958
#
thumb_func 0x800798c sub_800798C
#
thumb_func 0x80079e4 sub_80079E4
#
thumb_func 0x8007a3c sub_8007A3C
#
thumb_func 0x8007a58 sub_8007A58
#
thumb_func 0x8007ab0 sub_8007AB0
#
thumb_func 0x8007b0c sub_8007B0C
#
thumb_func 0x8007c0c sub_8007C0C
#
thumb_func 0x8007c28 _Loop6CBlockingTimer
#
thumb_func 0x8007c4c sub_8007C4C
#
thumb_func 0x8007cd8 sub_8007CD8
#
thumb_func 0x8007d04 sub_8007D04
#
thumb_func 0x8007d38 sub_8007D38
#
thumb_func 0x8007da4 sub_8007DA4
#
thumb_func 0x8007de8 sub_8007DE8
#
thumb_func 0x8007e9c sub_8007E9C
#
thumb_func 0x8007f9c sub_8007F9C
#
thumb_func 0x8007fdc sub_8007FDC
#
thumb_func 0x80080d0 sub_80080D0
#
thumb_func 0x8008108 sub_8008108
#
thumb_func 0x800815c sub_800815C
#
thumb_func 0x8008198 sub_8008198
#
thumb_func 0x80081a8 sub_80081A8
#
thumb_func 0x80081ec sub_80081EC
#
thumb_func 0x8008250 sub_8008250
#
thumb_func 0x80082a4 sub_80082A4
#
thumb_func 0x80083e0 sub_80083E0
#
thumb_func 0x80083f8 sub_80083F8
#
thumb_func 0x8008464 sub_8008464
#
thumb_func 0x80084e0 sub_80084E0
#
thumb_func 0x8008668 sub_8008668
#
thumb_func 0x80087a8 sub_80087A8
#
thumb_func 0x800880c sub_800880C
#
thumb_func 0x8008840 sub_8008840
#
thumb_func 0x80088a8 sub_80088A8
#
thumb_func 0x800890c sub_800890C
#
thumb_func 0x8008934 sub_8008934
#
thumb_func 0x8008960 sub_8008960
#
thumb_func 0x80089b8 sub_80089B8
#
thumb_func 0x80089c4 sub_80089C4
#
thumb_func 0x80089d0 sub_80089D0
#
thumb_func 0x80089e8 Face6CExists
#
thumb_func 0x8008a0c sub_8008A0C
#
thumb_func 0x8008a18 sub_8008A18
#
thumb_func 0x8008a24 sub_8008A24
#
thumb_func 0x8008a3c sub_8008A3C
#
thumb_func 0x8008b24 sub_8008B24
#
thumb_func 0x8008b44 sub_8008B44
#
thumb_func 0x8008f18 GetZero
#
thumb_func 0x8008f20 sub_8008F20
#
thumb_func 0x8008f3c sub_8008F3C
#
thumb_func 0x8008f54 sub_8008F54
#
thumb_func 0x8008f64 sub_8008F64
#
thumb_func 0x8008fac sub_8008FAC
#
thumb_func 0x8008fb4 sub_8008FB4
#
thumb_func 0x8009038 nullsub_15
#
thumb_func 0x800903c sub_800903C
#
thumb_func 0x800904c sub_800904C
#
thumb_func 0x8009100 sub_8009100
#
thumb_func 0x800915c sub_800915C
#
thumb_func 0x8009198 sub_8009198
#
thumb_func 0x8009200 sub_8009200
#
thumb_func 0x8009250 sub_8009250
#
thumb_func 0x8009260 TCS_ClearAll
#
thumb_func 0x800927c TCS_New
#
thumb_func 0x80092a4 TCS_Free
#
thumb_func 0x80092bc TCS_Update
#
thumb_func 0x80092e4 TCS_RegisterGraphics
#
thumb_func 0x8009340 TCS_Exec
#
thumb_func 0x8009430 TCS_QueueRotScaleData
#
thumb_func 0x8009518 TCS_SetAnim
#
thumb_func 0x8009548 TCS_SetROMTCS
#
thumb_func 0x8009568 TCS_QueueTileGfx
#
thumb_func 0x8009674 TCS_Load
#
thumb_func 0x8009698 TCS_ExecOneFrame
#
thumb_func 0x80096b8 TCS_Init
#
thumb_func 0x80096f0 TCS_Alloc
#
thumb_func 0x8009718 TCSWrapper_New
#
thumb_func 0x8009760 TCSWrapper_OnUpdate
#
thumb_func 0x800978c TCSWrapper_OnDelete
#
thumb_func 0x8009798 TCSWrapper_SetParameters
#
thumb_func 0x80097b4 TCSWrapper_Delete
#
thumb_func 0x80097c0 DeleteAllTCSWrappers
#
thumb_func 0x80097d0 DoesTCSWrapperExist
#
thumb_func 0x80097e8 sub_80097E8
#
thumb_func 0x8009950 sub_8009950
#
thumb_func 0x80099e4 sub_80099E4
#
thumb_func 0x8009a00 Goto6CLabel12IfSomething
#
thumb_func 0x8009a24 sub_8009A24
#
thumb_func 0x8009a58 sub_8009A58
#
thumb_func 0x8009a60 Null6CCallback
#
thumb_func 0x8009a6c Delete6CIfNotMarkedB
#
thumb_func 0x8009a84 sub_8009A84
#
thumb_func 0x8009abc sub_8009ABC
#
thumb_func 0x8009ad8 sub_8009AD8
#
thumb_func 0x8009aec sub_8009AEC
#
thumb_func 0x8009b64 sub_8009B64
#
thumb_func 0x8009b88 GAMECTRL_MasterSwitch
#
thumb_func 0x8009ce0 sub_8009CE0
#
thumb_func 0x8009d1c sub_8009D1C
#
thumb_func 0x8009d44 sub_8009D44
#