forked from PikalaxALT/ndsdisasm
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfireemblem8_ida.cfg
6990 lines (6990 loc) · 259 KB
/
fireemblem8_ida.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
# Fire Emblem 8 CFG
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 #
arm_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 #
arm_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 #
arm_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 #
arm_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 #
thumb_func 0x8009d6c sub_8009D6C #
thumb_func 0x8009d98 sub_8009D98 #
thumb_func 0x8009de0 CallActualSaveMenu #
thumb_func 0x8009e00 sub_8009E00 #
thumb_func 0x8009e28 sub_8009E28 #
thumb_func 0x8009e98 sub_8009E98 #
thumb_func 0x8009edc GetChapterIdTo6C #
thumb_func 0x8009eec SetChapterIdFrom6C #
thumb_func 0x8009efc sub_8009EFC #
thumb_func 0x8009f08 NewGameControl #
thumb_func 0x8009f40 GetGameControl6C #
thumb_func 0x8009f50 SetNextGameActionId #
thumb_func 0x8009f64 SetNextChapterId #
thumb_func 0x8009f8c RestartGameAndGoto8 #
thumb_func 0x8009fb0 RestartGameAndGoto12 #
arm_func 0x8009fd8 nullsub_9 #
thumb_func 0x8009fdc ForceEnableSoundEffects #
thumb_func 0x800a048 sub_800A048 #
thumb_func 0x800a160 sub_800A160 #
thumb_func 0x800a1c8 SomethingRelatedToText #
thumb_func 0x800a240 GetStringFromIndex #
thumb_func 0x800a280 GetStringFromIndexInBuffer #
thumb_func 0x800a2a4 sub_800A2A4 #
thumb_func 0x800a3b8 FilterSomeTextFromStandardBuffer #
thumb_func 0x800a42c sub_800A42C #
thumb_func 0x800a4e8 sub_800A4E8 #
thumb_func 0x800a518 sub_800A518 #
thumb_func 0x800a680 sub_800A680 #
thumb_func 0x800a7d8 sub_800A7D8 #
thumb_func 0x800a8d8 sub_800A8D8 #
thumb_func 0x800a950 sub_800A950 #
thumb_func 0x800af64 sub_800AF64 #
thumb_func 0x800b198 sub_800B198 #
thumb_func 0x800b388 sub_800B388 #
thumb_func 0x800b7e0 sub_800B7E0 #
thumb_func 0x800b84c sub_800B84C #
thumb_func 0x800b910 sub_800B910 #
thumb_func 0x800b954 sub_800B954 #
thumb_func 0x800b994 sub_800B994 #
thumb_func 0x800b9b8 sub_800B9B8 #
thumb_func 0x800ba04 sub_800BA04 #
thumb_func 0x800ba34 sub_800BA34 #
thumb_func 0x800ba5c SetSomeRealCamPos #
thumb_func 0x800baa8 sub_800BAA8 #
thumb_func 0x800baf8 TriggerMapChanges #
thumb_func 0x800bb48 sub_800BB48 #
thumb_func 0x800bb98 sub_800BB98 #
thumb_func 0x800bc1c HideAllUnits #
thumb_func 0x800bc50 GetUnitStructFromEventParameter #
thumb_func 0x800bcdc sub_800BCDC #
thumb_func 0x800bdcc Event80_ #
thumb_func 0x800bde8 Event81_ #
thumb_func 0x800be2c Event82_EndWM #
thumb_func 0x800be38 Event83_WM_SETCAM #
thumb_func 0x800be4c Event84_WM_SETCAMONLOC #
thumb_func 0x800be8c Event85_WM_SETCAMONSPRITE #
thumb_func 0x800bed4 Event86_WM_MOVECAM #
thumb_func 0x800bf38 Event87_ #
thumb_func 0x800bfd8 Event88_ #
thumb_func 0x800c084 Event89_ #
thumb_func 0x800c0b8 Event8A_ #
thumb_func 0x800c0c8 Event8B_ #
thumb_func 0x800c0d4 Event8C_ #
thumb_func 0x800c0f0 Event8D_ #
thumb_func 0x800c108 Event8E_ #
thumb_func 0x800c120 Event8F_ #
thumb_func 0x800c138 Event90_WM_DRAWPATH #
thumb_func 0x800c164 Event91_WM_DRAWPATH_Silent #
thumb_func 0x800c198 Event92_REMOVEPATH #
thumb_func 0x800c1cc Event93_ #
thumb_func 0x800c1e8 Event94_ #
thumb_func 0x800c204 Event95_ #
thumb_func 0x800c254 Event96_ #
thumb_func 0x800c2dc Event97_ #
thumb_func 0x800c36c Event98_ #
thumb_func 0x800c434 Event99_ #
thumb_func 0x800c468 Event9A_ #
thumb_func 0x800c4c8 Event9B_ #
thumb_func 0x800c4e4 Event9C_ #
thumb_func 0x800c528 Event9D_ #
thumb_func 0x800c55c Event9E_PUTSPRITE #
thumb_func 0x800c574 Event9F_ #
thumb_func 0x800c58c EventA0_REMSPRITE #
thumb_func 0x800c59c EventA1_ #
thumb_func 0x800c5ac EventA2_ #
thumb_func 0x800c5bc EventA3_ #
thumb_func 0x800c5f8 EventA4_ #
thumb_func 0x800c634 EventA5_ #
thumb_func 0x800c65c EventA6_ #
thumb_func 0x800c68c EventA7_ #
thumb_func 0x800c6c0 EventA8_ #
thumb_func 0x800c754 EventA9_ #
thumb_func 0x800c7b4 EventAA_ #
thumb_func 0x800c7e4 EventAB_ #
thumb_func 0x800c814 EventAC_ #
thumb_func 0x800c85c EventAD_ #
thumb_func 0x800c884 EventAE_ #
thumb_func 0x800c8b0 EventAF_ #
thumb_func 0x800c8d4 EventB0_ #
thumb_func 0x800c8f8 EventB1_ #
thumb_func 0x800c924 EventB2_ #
thumb_func 0x800c938 EventB3_ #
thumb_func 0x800c950 EventB4_ #
thumb_func 0x800c980 EventB5_ #
thumb_func 0x800c9a0 EventB6_ #
thumb_func 0x800c9f0 EventB7_ #
thumb_func 0x800ca18 EventB8_ #
thumb_func 0x800ca38 EventB9_ #
thumb_func 0x800ca60 EventBA_ #
thumb_func 0x800ca9c EventBB_ #
thumb_func 0x800cadc EventBC_ #
thumb_func 0x800cb48 EventBD_ #
thumb_func 0x800cb70 EventBE_ #
thumb_func 0x800cbac EventBF_ #
thumb_func 0x800cbd8 EventC0_ #
thumb_func 0x800cbf0 EventC1_SKIPWM #
thumb_func 0x800cc04 EventC2_ #
thumb_func 0x800cc18 EventC3_ #
thumb_func 0x800cc5c EventCE_ #
thumb_func 0x800cc74 EventCF_ #
thumb_func 0x800cc8c EventC4_ #
arm_func 0x800ccec nullsub_32 #
thumb_func 0x800ccf0 EventC5_ #
arm_func 0x800cd3c nullsub_34 #
thumb_func 0x800cd40 sub_800CD40 #
thumb_func 0x800cd50 EventC6_ #
thumb_func 0x800cd88 EventC7_ #
thumb_func 0x800cda8 EventC8_ #
thumb_func 0x800cdc8 EventC9_ #
arm_func 0x800cdec __malloc_unlock #
thumb_func 0x800cdf0 EventCA_ #
thumb_func 0x800cdf4 EventCB_ #
thumb_func 0x800cdf8 EventCC_ #
thumb_func 0x800ce28 EventCD_ #
thumb_func 0x800ce40 _MarkSomethingInMenu #
thumb_func 0x800ce4c EventEngine_Loop #
thumb_func 0x800cf5c EventEngine_Destructor #
thumb_func 0x800d00c EqueueEventEngineCall #
thumb_func 0x800d044 HandleNextEventEngineCall #
thumb_func 0x800d07c CallMapEventEngine #
thumb_func 0x800d0b0 NewMapEventEngine #
thumb_func 0x800d140 NewBattleEventEngine #
thumb_func 0x800d198 MapEventEngineExists #
thumb_func 0x800d1b0 BattleEventEngineExists #
thumb_func 0x800d1c8 DeleteEventEngines #
thumb_func 0x800d1f8 SetEventSlotC #
thumb_func 0x800d208 sub_800D208 #
thumb_func 0x800d284 CallBattleQuoteTextEvents #
thumb_func 0x800d2a4 sub_800D2A4 #
thumb_func 0x800d2d0 CallSomeOtherEvents #
thumb_func 0x800d304 sub_800D304 #
thumb_func 0x800d330 sub_800D330 #
thumb_func 0x800d354 sub_800D354 #
thumb_func 0x800d37c sub_800D37C #
thumb_func 0x800d390 sub_800D390 #
thumb_func 0x800d3a4 sub_800D3A4 #
thumb_func 0x800d3e4 sub_800D3E4 #
thumb_func 0x800d414 sub_800D414 #
thumb_func 0x800d488 sub_800D488 #
thumb_func 0x800d4b8 CheckEventId_ #
thumb_func 0x800d528 SlotQueuePush #
thumb_func 0x800d544 SlotQueuePop #
thumb_func 0x800d588 SetEventCounter #
thumb_func 0x800d5a0 Event00_NULL #
thumb_func 0x800d5a4 Event01_End #
thumb_func 0x800d670 Event02_EvBitAndIdMod #
thumb_func 0x800d6e4 Event03_CheckEvBitOrId #
thumb_func 0x800d754 Event04_CheckRandom #
thumb_func 0x800d77c Event05_SetSlot #
thumb_func 0x800d794 Event06_SlotOperation #
thumb_func 0x800d918 Event07_SlotQueueOperations #
thumb_func 0x800d97c Event08_Label #
thumb_func 0x800d980 Event09_Goto #
thumb_func 0x800d9b8 Event0A_Call #
thumb_func 0x800da2c Event0B_ #
thumb_func 0x800da78 Event0C_Branch #
thumb_func 0x800db00 Event0D_AsmCall #
thumb_func 0x800db38 Event0E_STAL #
thumb_func 0x800dbe0 Event0F_ #
thumb_func 0x800dc98 Event10_ModifyEvBit #
thumb_func 0x800dd58 Event11_SetIgnoredKeys #
thumb_func 0x800dd74 Event12_ #
thumb_func 0x800ddb0 Event13_ #
thumb_func 0x800de14 Event14_ #
thumb_func 0x800de74 Event15_ #
thumb_func 0x800ded4 Event16_ #
thumb_func 0x800df20 Event17_ #
thumb_func 0x800dfbc Event18_ #
thumb_func 0x800e070 Event19_ #
thumb_func 0x800e188 Event1A_TEXTSTART #
thumb_func 0x800e210 sub_800E210 #
thumb_func 0x800e290 sub_800E290 #
thumb_func 0x800e31c sub_800E31C #
thumb_func 0x800e3c8 Event1B_TEXTSHOW #
thumb_func 0x800e51c Event1C_TEXTCONT #
thumb_func 0x800e560 Event1D_TEXTEND #
thumb_func 0x800e640 sub_800E640 #
thumb_func 0x800e698 _WhileFace6CExists #
thumb_func 0x800e6b4 Event1E_ #
thumb_func 0x800e77c Event1F_ #
thumb_func 0x800e7c4 Event20_ #
thumb_func 0x800e7d0 sub_800E7D0 #
thumb_func 0x800e8cc Event21_ #
thumb_func 0x800ea84 sub_800EA84 #
thumb_func 0x800ebb0 sub_800EBB0 #
thumb_func 0x800ec00 sub_800EC00 #
thumb_func 0x800ec50 sub_800EC50 #
thumb_func 0x800ed50 sub_800ED50 #
thumb_func 0x800ee54 sub_800EE54 #
thumb_func 0x800eee8 sub_800EEE8 #
thumb_func 0x800ef48 sub_800EF48 #
thumb_func 0x800f0c8 Event22_ #
thumb_func 0x800f124 Event23_ #
thumb_func 0x800f150 Event24_ #
thumb_func 0x800f17c Event25_ #
thumb_func 0x800f20c Event26_CameraControlMaybe #
thumb_func 0x800f2d4 Event27_MapChange #
thumb_func 0x800f3ec Event28_ChangeWeather #
thumb_func 0x800f3fc Event29_SetFogVision #
thumb_func 0x800f42c Event2A_MoveToChapter #
thumb_func 0x800f50c sub_800F50C #
thumb_func 0x800f528 ShouldUNITBeLoaded #
thumb_func 0x800f5b8 sub_800F5B8 #
thumb_func 0x800f698 sub_800F698 #
thumb_func 0x800f704 LoadUnit_800F704 #
thumb_func 0x800f8a8 sub_800F8A8 #
thumb_func 0x800f914 sub_800F914 #
thumb_func 0x800fb18 Event2B_ #
thumb_func 0x800fb84 Event2C_LoadUnits #
thumb_func 0x800fc90 TryPrepareEventUnitMovement #
thumb_func 0x800fcd8 GetSomeEventEngineMoveRelatedBitfield #
thumb_func 0x800fd0c Event2D_ #
thumb_func 0x800fd28 Event2E_CheckAt #
thumb_func 0x800fd8c Event2F_MoveUnit #
thumb_func 0x800ff24 Event30_ENUN #
thumb_func 0x800ff68 Event31_DisplayEffectRange #
thumb_func 0x800fff8 Event32_SpawnSingleUnit #
thumb_func 0x8010110 Event33_CheckUnitVarious #
thumb_func 0x8010298 Event34_MessWithUnitState #
thumb_func 0x80104b0 Event35_UnitClassChanging #
thumb_func 0x801053c Event36_CheckInArea #
thumb_func 0x80105a4 Event37_GiveItem #
thumb_func 0x8010618 Event38_ChangeActiveUnit #
thumb_func 0x8010644 Event39_ #
thumb_func 0x80106e4 Event3A_ #
thumb_func 0x8010748 sub_8010748 #
thumb_func 0x801079c Event3B_ #
thumb_func 0x8010850 Event3C_ #
thumb_func 0x80108ac Event3D_ #
thumb_func 0x8010968 Event3E_PrepScreenCall #
thumb_func 0x801098c sub_801098C #
thumb_func 0x8010a28 sub_8010A28 #
thumb_func 0x8010a58 Event3F_ #
thumb_func 0x8010b48 sub_8010B48 #
thumb_func 0x8010b78 Event40_ #
thumb_func 0x8010bec Event41_ #
thumb_func 0x8010c70 Event42_ #
thumb_func 0x8010cf0 Event43_ #
thumb_func 0x8010d28 Event44_ #
thumb_func 0x8010d5c Event45_ #
thumb_func 0x8010e50 sub_8010E50 #
thumb_func 0x8010e6c sub_8010E6C #
thumb_func 0x8010ee8 sub_8010EE8 #
thumb_func 0x8010f38 GetSomeLongPopupLength #
thumb_func 0x801106c GenSomeLongPopupText #
thumb_func 0x801116c sub_801116C #
thumb_func 0x801119c LongPopup_PrepareGfx #
thumb_func 0x80111f4 sub_80111F4 #
thumb_func 0x8011210 LongPopup_PlaySound #
thumb_func 0x8011238 sub_8011238 #
thumb_func 0x8011254 IconOAMUpdater_Loop #
thumb_func 0x8011270 LongPopup_Draw #
thumb_func 0x80113c0 LongPopup_WaitForPress #
thumb_func 0x80113f8 LongPopup_Clear #
thumb_func 0x8011450 SetPopupUnit #
thumb_func 0x801145c SetPopupItem #
thumb_func 0x8011468 SetPopupNumber #
thumb_func 0x8011474 NewPopupSimple #
thumb_func 0x8011490 NewPopup #
thumb_func 0x80114dc NewGotItemPopup #
thumb_func 0x8011524 ItemGot_DisplayLePopup #
thumb_func 0x8011538 ItemGot_GotLeItem #
thumb_func 0x8011554 NewItemGot #
thumb_func 0x801159c NewGeneralItemGot #
thumb_func 0x8011644 NewGoldGotPopup #
thumb_func 0x8011694 sub_8011694 #
thumb_func 0x80116e0 NewPopup_WeaponBroke #
thumb_func 0x8011704 NewPopup_WRankIncrease #
thumb_func 0x8011728 sub_8011728 #
thumb_func 0x8011750 sub_8011750 #
thumb_func 0x8011784 sub_8011784 #
arm_func 0x8011a18 nullsub_44 #
thumb_func 0x8011a1c sub_8011A1C #
thumb_func 0x8011a48 sub_8011A48 #
thumb_func 0x8011aa0 sub_8011AA0 #
thumb_func 0x8011af4 sub_8011AF4 #
thumb_func 0x8011b4c sub_8011B4C #
thumb_func 0x8011b90 sub_8011B90 #
thumb_func 0x8011ba4 sub_8011BA4 #
thumb_func 0x8011c94 sub_8011C94 #
thumb_func 0x8011ccc sub_8011CCC #
thumb_func 0x8011d10 sub_8011D10 #
thumb_func 0x8011df4 sub_8011DF4 #
thumb_func 0x8011ec8 sub_8011EC8 #
thumb_func 0x8011edc sub_8011EDC #
thumb_func 0x8011ef0 sub_8011EF0 #
thumb_func 0x8011f5c sub_8011F5C #
thumb_func 0x80121d4 sub_80121D4 #
thumb_func 0x8012270 sub_8012270 #
thumb_func 0x8012324 sub_8012324 #
thumb_func 0x8012344 GetChapterAllyUnitCount #
thumb_func 0x8012360 InitPlayerUnitPositionsForPrepScreen #
thumb_func 0x801240c sub_801240C #
thumb_func 0x801247c sub_801247C #
thumb_func 0x8012578 sub_8012578 #
thumb_func 0x80125c0 sub_80125C0 #
thumb_func 0x801263c StoreUnitWordStructs #
thumb_func 0x8012678 LoadUnitWordStructs #
thumb_func 0x80126bc sub_80126BC #
thumb_func 0x80127c4 sub_80127C4 #
thumb_func 0x8012824 sub_8012824 #
thumb_func 0x8012890 sub_8012890 #
thumb_func 0x8012950 sub_8012950 #
thumb_func 0x8012974 sub_8012974 #
thumb_func 0x8012a2c sub_8012A2C #
thumb_func 0x8012a64 sub_8012A64 #
thumb_func 0x8012ac0 sub_8012AC0 #
thumb_func 0x8012b9c sub_8012B9C #
thumb_func 0x8012c34 sub_8012C34 #
thumb_func 0x8012c88 sub_8012C88 #
thumb_func 0x8012ce4 sub_8012CE4 #
thumb_func 0x8012cfc sub_8012CFC #
thumb_func 0x8012dcc sub_8012DCC #
thumb_func 0x8012e98 sub_8012E98 #
thumb_func 0x8012ec0 CopyString #
thumb_func 0x8012edc CopyDirect #
thumb_func 0x8012f50 CopyDataWithPossibleUncomp #
thumb_func 0x8012f90 FilterR0ForRawCopy #
thumb_func 0x8012ff4 RegisterObjectTileGraphics #
thumb_func 0x8013020 CopyTileGfxForObj #
thumb_func 0x8013058 sub_8013058 #
thumb_func 0x8013094 sub_8013094 #
thumb_func 0x80130bc sub_80130BC #
thumb_func 0x8013104 sub_8013104 #
thumb_func 0x8013138 sub_8013138 #
thumb_func 0x8013168 sub_8013168 #
thumb_func 0x80131d0 sub_80131D0 #
thumb_func 0x80131f0 sub_80131F0 #
thumb_func 0x8013278 sub_8013278 #
thumb_func 0x801342c sub_801342C #
thumb_func 0x801344c GetPaletteBufferBuffer #
thumb_func 0x8013470 SetSomethingInPaletteBB_2A #
thumb_func 0x8013480 SetSomethingInPaletteBB_5A #
thumb_func 0x8013494 SetSomethingInPaletteBB_8A #
thumb_func 0x80134a8 GetSomethingInPaletteBB_2A #
thumb_func 0x80134b4 GetSomethingInPaletteBB_5A #
thumb_func 0x80134c4 GetSomethingInPaletteBB_8A #
thumb_func 0x80134d4 ArchiveCurrentPalettes #
thumb_func 0x8013520 ArchivePalette #
thumb_func 0x8013550 WriteFadedPaletteFromArchive #
thumb_func 0x801378c sub_801378C #
thumb_func 0x8013794 sub_8013794 #
thumb_func 0x8013800 sub_8013800 #
thumb_func 0x8013844 sub_8013844 #
thumb_func 0x8013860 sub_8013860 #
thumb_func 0x8013870 sub_8013870 #
thumb_func 0x80138f0 sub_80138F0 #
thumb_func 0x8013928 sub_8013928 #
thumb_func 0x8013998 sub_8013998 #
thumb_func 0x801399c sub_801399C #
thumb_func 0x8013a84 sub_8013A84 #
thumb_func 0x8013aa4 sub_8013AA4 #
thumb_func 0x8013af4 sub_8013AF4 #
thumb_func 0x8013b5c sub_8013B5C #
thumb_func 0x8013ba0 sub_8013BA0 #
thumb_func 0x8013c18 sub_8013C18 #
thumb_func 0x8013c58 sub_8013C58 #
thumb_func 0x8013c70 sub_8013C70 #
thumb_func 0x8013c88 sub_8013C88 #
thumb_func 0x8013cd0 sub_8013CD0 #
thumb_func 0x8013cec sub_8013CEC #
thumb_func 0x8013d08 sub_8013D08 #
thumb_func 0x8013d20 sub_8013D20 #
thumb_func 0x8013d38 sub_8013D38 #
thumb_func 0x8013d50 sub_8013D50 #
thumb_func 0x8013d68 sub_8013D68 #
thumb_func 0x8013d74 sub_8013D74 #
thumb_func 0x8013d80 sub_8013D80 #
thumb_func 0x8013d8c sub_8013D8C #
thumb_func 0x8013da4 sub_8013DA4 #
thumb_func 0x8013dc0 sub_8013DC0 #
thumb_func 0x8013f40 sub_8013F40 #
thumb_func 0x8013f58 sub_8013F58 #
thumb_func 0x8013fc4 sub_8013FC4 #
thumb_func 0x8013fd8 sub_8013FD8 #
thumb_func 0x8014068 ContinueUntilSomeTransistion6CExists #
thumb_func 0x8014098 sub_8014098 #
thumb_func 0x80140f4 sub_80140F4 #
thumb_func 0x8014100 sub_8014100 #
thumb_func 0x8014124 sub_8014124 #
thumb_func 0x8014170 sub_8014170 #
thumb_func 0x8014194 sub_8014194 #
thumb_func 0x80141b0 sub_80141B0 #
thumb_func 0x801420c sub_801420C #
thumb_func 0x8014238 NewBlockingTimer #
thumb_func 0x8014254 Timer6C_Countdown #
thumb_func 0x8014270 sub_8014270 #
thumb_func 0x8014334 String_FromNumber #
thumb_func 0x80143d8 sub_80143D8 #
thumb_func 0x801443c sub_801443C #
thumb_func 0x8014480 DeleteAllPaletteAnimator #
thumb_func 0x8014490 NewPaletteAnimator #
thumb_func 0x80144cc sub_80144CC #
thumb_func 0x80144e4 NewPaletteAnimator_ #
thumb_func 0x80144fc sub_80144FC #
thumb_func 0x8014560 sub_8014560 #
thumb_func 0x80146a0 sub_80146A0 #
thumb_func 0x801474c sub_801474C #
thumb_func 0x801487c FutureCall2_Loop #
thumb_func 0x80148a0 FutureCall_Loop #
thumb_func 0x80148c8 SetupFutureCall2 #
thumb_func 0x80148e4 SetupFutureCall #
thumb_func 0x8014930 sub_8014930 #
thumb_func 0x8014944 sub_8014944 #
thumb_func 0x8014968 sub_8014968 #
thumb_func 0x801498c sub_801498C #
thumb_func 0x80149f0 sub_80149F0 #
thumb_func 0x8014b00 RerangeSomething #
thumb_func 0x8014b28 PlaySpacialSoundMaybe #
thumb_func 0x8014b88 sub_8014B88 #
thumb_func 0x8014ba0 sub_8014BA0 #
thumb_func 0x8014bc0 sub_8014BC0 #
thumb_func 0x8014bd0 sub_8014BD0 #
thumb_func 0x8014c38 sub_8014C38 #
thumb_func 0x8014c54 sub_8014C54 #
thumb_func 0x8014ca4 sub_8014CA4 #
thumb_func 0x8014cc4 sub_8014CC4 #
thumb_func 0x8014da8 sub_8014DA8 #
thumb_func 0x8014e3c sub_8014E3C #
thumb_func 0x8014e74 sub_8014E74 #
thumb_func 0x8014ea8 sub_8014EA8 #
thumb_func 0x8014ec4 sub_8014EC4 #
thumb_func 0x8014ef4 sub_8014EF4 #
thumb_func 0x801512c sub_801512C #
thumb_func 0x80152a4 GeneralVBlankHandler #
thumb_func 0x80152f4 SomeUpdateRoutine #
thumb_func 0x8015360 AddSkipThread2 #
thumb_func 0x8015370 SubSkipThread2 #
thumb_func 0x8015380 GetThread2SkipStack #
thumb_func 0x801538c SwitchPhases #
thumb_func 0x80153d4 CallBeginningEvents #
thumb_func 0x8015410 sub_8015410 #
thumb_func 0x8015434 sub_8015434 #
thumb_func 0x8015450 MakePhaseController6C #
thumb_func 0x80154a4 NewPlayerPhase6C #
thumb_func 0x80154c8 sub_80154C8 #
thumb_func 0x80154f4 E_BMAPMAIN_SuspendGame #
thumb_func 0x801550c sub_801550C #
thumb_func 0x8015544 UndeployEveryone #
thumb_func 0x8015588 GotoChapterWithoutSave #
thumb_func 0x80155c4 sub_80155C4 #
thumb_func 0x8015608 SetupBackgroundForWeatherMaybe #
thumb_func 0x8015680 LoadObjUIGfx #
thumb_func 0x80156bc sub_80156BC #
thumb_func 0x80156d4 sub_80156D4 #
thumb_func 0x80156f4 LoadGameCoreGfx #
thumb_func 0x8015714 HandleCursorMovement #
thumb_func 0x8015838 MoveCameraByStepMaybe #
thumb_func 0x801588c sub_801588C #
thumb_func 0x80159b8 GetSomeAdjustedCameraX #
thumb_func 0x80159fc GetSomeAdjustedCameraY #
thumb_func 0x8015a40 sub_8015A40 #
thumb_func 0x8015a6c sub_8015A6C #
thumb_func 0x8015a98 DisplayCursor #
thumb_func 0x8015b88 sub_8015B88 #
thumb_func 0x8015bbc SetCursorMapPosition #
thumb_func 0x8015bd4 sub_8015BD4 #
thumb_func 0x8015c1c Init6C_GENS #
thumb_func 0x8015cb0 Loop6C_GENS #
thumb_func 0x8015d30 StoreAdjustedCameraPositions #
thumb_func 0x8015d84 sub_8015D84 #
thumb_func 0x8015e0c EnsureCameraOntoPosition #
thumb_func 0x8015e9c ShouldMoveCameraPosSomething #
thumb_func 0x8015edc sub_8015EDC #
thumb_func 0x8015f40 sub_8015F40 #
thumb_func 0x8015fc8 GetCurrentMapMusicIndex #
thumb_func 0x80160d0 sub_80160D0 #
thumb_func 0x80160e0 sub_80160E0 #
thumb_func 0x801618c GetItemSomeString #
thumb_func 0x80163f0 GetItemHPBonus #
thumb_func 0x8016420 GetItemPowBonus #
thumb_func 0x8016450 GetItemSklBonus #
thumb_func 0x8016480 GetItemSpdBonus #
thumb_func 0x80164b0 GetItemDefBonus #
thumb_func 0x80164e0 GetItemResBonus #
thumb_func 0x8016510 GetItemLckBonus #
thumb_func 0x8016540 MakeItemShort #
thumb_func 0x8016574 CanUnitUseAsWeapon #
thumb_func 0x8016750 CanUnitUseWeapon #
thumb_func 0x80167a4 CanUnitUseAsStaff #