-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpokeemerald_jp.cfg
16315 lines (16315 loc) · 570 KB
/
pokeemerald_jp.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 0x8000204 _init
arm_func 0x8000234 _init.ret
arm_func 0x8000248 _intr
arm_func 0x8000374 _intr.ret
# main.s
thumb_func 0x80003a4 AgbMain
thumb_func 0x80004c4 UpdateLinkAndCallCallbacks
thumb_func 0x80004d8 InitMainCallbacks
thumb_func 0x800051c CallCallbacks
thumb_func 0x8000540 SetMainCallback2
thumb_func 0x8000554 StartTimer1
thumb_func 0x8000560 SeedRngAndSetTrainerId
thumb_func 0x8000588 GetGeneratedTrainerIdLower
thumb_func 0x8000594 EnableVCountIntrAtLine150
thumb_func 0x80005bc InitKeys
thumb_func 0x80005e4 ReadKeys
thumb_func 0x8000684 InitIntrHandlers
thumb_func 0x80006f0 SetVBlankCallback
thumb_func 0x80006fc SetHBlankCallback
thumb_func 0x8000708 SetVCountCallback
thumb_func 0x8000714 RestoreSerialTimer3IntrHandlers
thumb_func 0x800072c SetSerialCallback
thumb_func 0x8000738 VBlankIntr
thumb_func 0x8000800 InitFlashTimer
thumb_func 0x8000814 HBlankIntr
thumb_func 0x8000844 VCountIntr
thumb_func 0x8000878 SerialIntr
thumb_func 0x80008a8 IntrDummy
thumb_func 0x80008ac WaitForVBlank
thumb_func 0x80008dc SetTrainerHillVBlankCounter
thumb_func 0x80008e8 ClearTrainerHillVBlankCounter
thumb_func 0x80008f4 DoSoftReset
thumb_func 0x8000964 ClearPokemonCrySongs
# alloc.s
thumb_func 0x8000988 PutMemBlockHeader
thumb_func 0x80009a4 PutFirstMemBlockHeader
thumb_func 0x80009b8 AllocInternal
thumb_func 0x8000a34 FreeInternal
thumb_func 0x8000b14 AllocZeroedInternal
thumb_func 0x8000b54 CheckMemBlockInternal
thumb_func 0x8000bac InitHeap
thumb_func 0x8000bc8 Alloc
thumb_func 0x8000bdc AllocZeroed
thumb_func 0x8000bf0 Free
thumb_func 0x8000c04 CheckMemBlock
thumb_func 0x8000c18 CheckHeap
# dma3_manager.s
thumb_func 0x8000c48 ClearDma3Requests
thumb_func 0x8000c80 ProcessDma3Requests
thumb_func 0x8000ef8 RequestDma3Copy
thumb_func 0x8000f90 RequestDma3Fill
thumb_func 0x8001034 CheckForSpaceForDma3Request
# gpu_regs.s
thumb_func 0x8001074 InitGpuRegManager
thumb_func 0x80010cc CopyBufferedValueToGpuReg
thumb_func 0x8001110 CopyBufferedValuesToGpuRegs
thumb_func 0x8001144 SetGpuReg
thumb_func 0x80011d0 GetGpuReg
thumb_func 0x8001200 SetGpuRegBits
thumb_func 0x8001220 ClearGpuRegBits
thumb_func 0x8001240 SyncRegIE
thumb_func 0x8001274 EnableInterrupts
thumb_func 0x80012a0 DisableInterrupts
thumb_func 0x80012cc UpdateRegDispstatIntrBits
# bg.s
thumb_func 0x8001308 ResetBgs
thumb_func 0x8001320 SetBgModeInternal
thumb_func 0x800133c GetBgMode
thumb_func 0x800134c ResetBgControlStructs
thumb_func 0x800136c Unused_ResetBgControlStruct
thumb_func 0x8001398 SetBgControlAttributes
thumb_func 0x80014c4 GetBgControlAttribute
thumb_func 0x8001578 LoadBgVram
thumb_func 0x8001600 ShowBgInternal
thumb_func 0x800167c HideBgInternal
thumb_func 0x80016b0 SyncBgVisibilityAndMode
thumb_func 0x80016d4 SetTextModeAndHideBgs
thumb_func 0x80016f0 SetBgAffineInternal
thumb_func 0x80017bc IsInvalidBg32
thumb_func 0x80017d0 DummiedOutFireRedLeafGreenTileAllocFunc
thumb_func 0x80017d4 ResetBgsAndClearDma3BusyFlags
thumb_func 0x8001800 InitBgsFromTemplates
thumb_func 0x80018c8 InitBgFromTemplate
thumb_func 0x800194c SetBgMode
thumb_func 0x800195c LoadBgTiles
thumb_func 0x8001a14 LoadBgTilemap
thumb_func 0x8001a64 Unused_LoadBgPalette
thumb_func 0x8001aec IsDma3ManagerBusyWithBgCopy
thumb_func 0x8001b48 ShowBg
thumb_func 0x8001b5c HideBg
thumb_func 0x8001b70 SetBgAttribute
thumb_func 0x8001c34 GetBgAttribute
thumb_func 0x8001d1c ChangeBgX
thumb_func 0x8001e58 GetBgX
thumb_func 0x8001e94 ChangeBgY
thumb_func 0x8001fd0 GetBgY
thumb_func 0x800200c SetBgAffine
thumb_func 0x800204c Unused_AdjustBgMosaic
thumb_func 0x800212c SetBgTilemapBuffer
thumb_func 0x8002160 UnsetBgTilemapBuffer
thumb_func 0x8002194 GetBgTilemapBuffer
thumb_func 0x80021cc CopyToBgTilemapBuffer
thumb_func 0x8002248 CopyBgTilemapBufferToVram
thumb_func 0x80022b0 CopyToBgTilemapBufferRect
thumb_func 0x80023b4 CopyToBgTilemapBufferRect_ChangePalette
thumb_func 0x80023f8 CopyRectToBgTilemapBufferRect
thumb_func 0x80025e0 FillBgTilemapBufferRect_Palette0
thumb_func 0x80026e0 FillBgTilemapBufferRect
thumb_func 0x800271c WriteSequenceToBgTilemapBuffer
thumb_func 0x80028c8 GetBgMetricTextMode
thumb_func 0x8002938 GetBgMetricAffineMode
thumb_func 0x8002990 GetTileMapIndexFromCoords
thumb_func 0x80029c8 CopyTileMapEntry
thumb_func 0x8002a24 GetBgType
thumb_func 0x8002a78 IsInvalidBg
thumb_func 0x8002a8c IsTileMapOutsideWram
# blit.s
thumb_func 0x8002ab8 BlitBitmapRect4BitWithoutColorKey
thumb_func 0x8002afc BlitBitmapRect4Bit
thumb_func 0x8002cdc FillBitmapRect4Bit
thumb_func 0x8002d98 BlitBitmapRect4BitTo8Bit
thumb_func 0x8002fe8 FillBitmapRect8Bit
# window.s
thumb_func 0x800308c nullsub_9
thumb_func 0x8003090 InitWindows
thumb_func 0x8003250 AddWindow
thumb_func 0x80033a8 AddWindowWithoutTileMap
thumb_func 0x8003444 RemoveWindow
thumb_func 0x80034d4 FreeAllWindowBuffers
thumb_func 0x8003528 CopyWindowToVram
thumb_func 0x80035a8 CopyWindowRectToVram
thumb_func 0x800365c PutWindowTilemap
thumb_func 0x80036bc PutWindowRectTilemapOverridePalette
thumb_func 0x8003774 ClearWindowTilemap
thumb_func 0x80037c4 PutWindowRectTilemap
thumb_func 0x8003874 BlitBitmapToWindow
thumb_func 0x80038ac BlitBitmapRectToWindow
thumb_func 0x800396c BlitBitmapRectToWindowWithColorKey
thumb_func 0x8003a34 FillWindowPixelRect
thumb_func 0x8003ac0 CopyToWindowPixelBuffer
thumb_func 0x8003b18 FillWindowPixelBuffer
thumb_func 0x8003b64 ScrollWindow
thumb_func 0x8003f28 CallWindowFunction
thumb_func 0x8003f78 SetWindowAttribute
thumb_func 0x800401c GetWindowAttribute
thumb_func 0x8004100 GetNumActiveWindowsOnBg
thumb_func 0x800412c nullsub_8
thumb_func 0x8004130 AddWindow8Bit
thumb_func 0x8004238 FillWindowPixelBuffer8Bit
thumb_func 0x8004278 FillWindowPixelRect8Bit
thumb_func 0x8004304 BlitBitmapRectToWindow4BitTo8Bit
thumb_func 0x80043d0 CopyWindowToVram8Bit
thumb_func 0x8004448 GetNumActiveWindowsOnBg8Bit
# text.s
thumb_func 0x8004474 SetFontsPointer
thumb_func 0x8004480 DeactivateAllTextPrinters
thumb_func 0x800449c AddTextPrinterParameterized
thumb_func 0x8004548 AddTextPrinter
thumb_func 0x8004630 RunTextPrinters
thumb_func 0x80046a8 IsTextPrinterActive
thumb_func 0x80046b8 RenderFont
thumb_func 0x80046e4 GenerateFontHalfRowLookupTable
thumb_func 0x8004798 SaveTextColors
thumb_func 0x80047b8 RestoreTextColors
thumb_func 0x80047c8 DecompressGlyphTile
thumb_func 0x8004808 GetLastTextColor
thumb_func 0x8004850 CopyGlyphToWindow
thumb_func 0x8004e50 ClearTextSpan
thumb_func 0x8005358 Font0Func
thumb_func 0x800538c Font1Func
thumb_func 0x80053c4 Font2Func
thumb_func 0x80053fc Font3Func
thumb_func 0x8005434 Font4Func
thumb_func 0x800546c Font5Func
thumb_func 0x80054a4 TextPrinterInitDownArrowCounters
thumb_func 0x80054d4 TextPrinterDrawDownArrow
thumb_func 0x80055ac TextPrinterClearDownArrow
thumb_func 0x80055e0 TextPrinterWaitAutoMode
thumb_func 0x80055fc TextPrinterWaitWithDownArrow
thumb_func 0x8005648 TextPrinterWait
thumb_func 0x800568c DrawDownArrow
thumb_func 0x8005760 RenderText
thumb_func 0x8005c48 GetStringWidthFixedWidthFont
thumb_func 0x8005d7c GetFontWidthFunc
thumb_func 0x8005dac GetStringWidth
thumb_func 0x8005f7c RenderTextFont9
thumb_func 0x8006124 DrawKeypadIcon
thumb_func 0x8006174 GetKeypadIconTileOffset
thumb_func 0x8006184 GetKeypadIconWidth
thumb_func 0x8006194 GetKeypadIconHeight
thumb_func 0x80061a4 SetDefaultFontsPointer
thumb_func 0x80061b4 GetFontAttribute
thumb_func 0x800629c GetMenuCursorDimensionByFont
thumb_func 0x80062b4 DecompressGlyphFont9
thumb_func 0x8006300
thumb_func 0x8006304
thumb_func 0x8006350
thumb_func 0x8006354
thumb_func 0x80063f8
thumb_func 0x8006418
thumb_func 0x80064b4
thumb_func 0x80064b8
thumb_func 0x800655c
thumb_func 0x800657c
thumb_func 0x8006620
thumb_func 0x8006640
# sprite.s
thumb_func 0x800668c ResetSpriteData
thumb_func 0x80066d8 AnimateSprites
thumb_func 0x8006724 BuildOamBuffer
thumb_func 0x8006770 UpdateOamCoords
thumb_func 0x8006834 BuildSpritePriorities
thumb_func 0x8006874 SortSprites
thumb_func 0x8006a34 CopyMatricesToOamBuffer
thumb_func 0x8006a80 AddSpritesToOamBuffer
thumb_func 0x8006b0c CreateSprite
thumb_func 0x8006b60 CreateSpriteAtEnd
thumb_func 0x8006bcc CreateInvisibleSprite
thumb_func 0x8006c14 CreateSpriteAt
thumb_func 0x8006d6c CreateSpriteAndAnimate
thumb_func 0x8006e00 DestroySprite
thumb_func 0x8006e68 ResetOamRange
thumb_func 0x8006ea0 LoadOam
thumb_func 0x8006ed0 ClearSpriteCopyRequests
thumb_func 0x8006f10 ResetOamMatrices
thumb_func 0x8006f3c SetOamMatrix
thumb_func 0x8006f5c ResetSprite
thumb_func 0x8006f70 CalcCenterToCornerVec
thumb_func 0x8006fb4 AllocSpriteTiles
thumb_func 0x80070d0 SpriteTileAllocBitmapOp
thumb_func 0x8007140 SpriteCallbackDummy
thumb_func 0x8007144 ProcessSpriteCopyRequests
thumb_func 0x80071a0 RequestSpriteFrameImageCopy
thumb_func 0x8007204 RequestSpriteCopy
thumb_func 0x8007254 CopyFromSprites
thumb_func 0x800727c CopyToSprites
thumb_func 0x80072a4 ResetAllSprites
thumb_func 0x80072e0 FreeSpriteTiles
thumb_func 0x80072fc FreeSpritePalette
thumb_func 0x800730c FreeSpriteOamMatrix
thumb_func 0x8007338 DestroySpriteAndFreeResources
thumb_func 0x8007358 AnimateSprite
thumb_func 0x80073a0 BeginAnim
thumb_func 0x8007490 ContinueAnim
thumb_func 0x8007530 AnimCmd_frame
thumb_func 0x80075dc AnimCmd_end
thumb_func 0x80075f4 AnimCmd_jump
thumb_func 0x80076bc AnimCmd_loop
thumb_func 0x80076dc BeginAnimLoop
thumb_func 0x8007714 ContinueAnimLoop
thumb_func 0x8007734 JumpToTopOfAnimLoop
thumb_func 0x80077a8 BeginAffineAnim
thumb_func 0x800783c ContinueAffineAnim
thumb_func 0x80078f0 AffineAnimDelay
thumb_func 0x8007924 AffineAnimCmd_loop
thumb_func 0x8007958 BeginAffineAnimLoop
thumb_func 0x8007994 ContinueAffineAnimLoop
thumb_func 0x80079c4 JumpToTopOfAffineAnimLoop
thumb_func 0x8007a30 AffineAnimCmd_jump
thumb_func 0x8007a7c AffineAnimCmd_end
thumb_func 0x8007ab8 AffineAnimCmd_frame
thumb_func 0x8007af0 CopyOamMatrix
thumb_func 0x8007b10 GetSpriteMatrixNum
thumb_func 0x8007b30
thumb_func 0x8007b40
thumb_func 0x8007b6c obj_update_pos2
thumb_func 0x8007c08 SetSpriteOamFlipBits
thumb_func 0x8007c7c AffineAnimStateRestartAnim
thumb_func 0x8007c98 AffineAnimStateStartAnim
thumb_func 0x8007cc0 AffineAnimStateReset
thumb_func 0x8007ce8 ApplyAffineAnimFrameAbsolute
thumb_func 0x8007d0c DecrementAnimDelayCounter
thumb_func 0x8007d34 DecrementAffineAnimDelayCounter
thumb_func 0x8007d64 ApplyAffineAnimFrameRelativeAndUpdateMatrix
thumb_func 0x8007dfc ConvertScaleParam
thumb_func 0x8007e14 GetAffineAnimFrame
thumb_func 0x8007e80 ApplyAffineAnimFrame
thumb_func 0x8007ec0 StartSpriteAnim
thumb_func 0x8007ed8 StartSpriteAnimIfDifferent
thumb_func 0x8007ef4 SeekSpriteAnim
thumb_func 0x8007f70 StartSpriteAffineAnim
thumb_func 0x8007f9c StartSpriteAffineAnimIfDifferent
thumb_func 0x8007fd0 ChangeSpriteAffineAnim
thumb_func 0x8008008 ChangeSpriteAffineAnimIfDifferent
thumb_func 0x800803c SetSpriteSheetFrameTileNum
thumb_func 0x8008094 ResetAffineAnimData
thumb_func 0x80080c8 AllocOamMatrix
thumb_func 0x8008100 FreeOamMatrix
thumb_func 0x8008140 InitSpriteAffineAnim
thumb_func 0x8008190 SetOamMatrixRotationScaling
thumb_func 0x8008210 LoadSpriteSheet
thumb_func 0x8008254 LoadSpriteSheets
thumb_func 0x8008280 FreeSpriteTilesByTag
thumb_func 0x80082f8 FreeSpriteTileRanges
thumb_func 0x8008338 GetSpriteTileStartByTag
thumb_func 0x8008364 IndexOfSpriteTileTag
thumb_func 0x8008390 GetSpriteTileTagByTileStart
thumb_func 0x80083dc AllocSpriteTileRange
thumb_func 0x8008424 FreeAllSpritePalettes
thumb_func 0x800845c LoadSpritePalette
thumb_func 0x80084a8 LoadSpritePalettes
thumb_func 0x80084d4 DoLoadSpritePalette
thumb_func 0x80084ec AllocSpritePalette
thumb_func 0x800851c IndexOfSpritePaletteTag
thumb_func 0x8008554 GetSpritePaletteTagByPaletteNum
thumb_func 0x8008564 FreeSpritePaletteByTag
thumb_func 0x800858c SetSubspriteTables
thumb_func 0x8008598 AddSpriteToOamBuffer
thumb_func 0x8008604 AddSubspritesToOamBuffer
# string_util.s
thumb_func 0x8008828 StringCopy10
thumb_func 0x800885c StringGetEnd10
thumb_func 0x8008888 StringCopy7
thumb_func 0x80088b8 StringCopy
thumb_func 0x80088d8 StringAppend
thumb_func 0x80088f0 StringCopyN
thumb_func 0x8008920 StringAppendN
thumb_func 0x800893c StringLength
thumb_func 0x800895c StringCompare
thumb_func 0x8008980 StringCompareN
thumb_func 0x80089ac IsStringLengthAtLeast
thumb_func 0x80089d8 ConvertIntToDecimalStringN
thumb_func 0x8008a78 ConvertUIntToDecimalStringN
thumb_func 0x8008b18 ConvertIntToHexStringN
thumb_func 0x8008bcc StringExpandPlaceholders
thumb_func 0x8008cb8 StringBraille
thumb_func 0x8008d18 ExpandPlaceholder_UnknownStringVar
thumb_func 0x8008d20 ExpandPlaceholder_PlayerName
thumb_func 0x8008d2c ExpandPlaceholder_StringVar1
thumb_func 0x8008d34 ExpandPlaceholder_StringVar2
thumb_func 0x8008d3c ExpandPlaceholder_StringVar3
thumb_func 0x8008d44 ExpandPlaceholder_KunChan
thumb_func 0x8008d68 ExpandPlaceholder_RivalName
thumb_func 0x8008d8c ExpandPlaceholder_Version
thumb_func 0x8008d94 ExpandPlaceholder_Aqua
thumb_func 0x8008d9c ExpandPlaceholder_Magma
thumb_func 0x8008da4 ExpandPlaceholder_Archie
thumb_func 0x8008dac ExpandPlaceholder_Maxie
thumb_func 0x8008db4 ExpandPlaceholder_Kyogre
thumb_func 0x8008dbc ExpandPlaceholder_Groudon
thumb_func 0x8008dc4 GetExpandedPlaceholder
thumb_func 0x8008de8 StringFill
thumb_func 0x8008e14 StringCopyPadded
thumb_func 0x8008e68 StringFillWithTerminator
thumb_func 0x8008e78 StringCopyN_Multibyte
thumb_func 0x8008eb8 StringLength_Multibyte
thumb_func 0x8008ed8 WriteColorChangeControlCode
thumb_func 0x8008f14 IsStringJapanese
thumb_func 0x8008f38
# link.s
thumb_func 0x8008f68 IsWirelessAdapterConnected
thumb_func 0x8008fa0 Task_DestroySelf
thumb_func 0x8008fb0 InitLinkTestBG
thumb_func 0x8009088
thumb_func 0x800910c LinkTestScreen
thumb_func 0x80091c4 SetLocalLinkPlayerId
thumb_func 0x80091d4 InitLocalLinkPlayer
thumb_func 0x8009258
thumb_func 0x800926c InitLink
thumb_func 0x8009298 Task_TriggerHandshake
thumb_func 0x80092d0 OpenLink
thumb_func 0x8009384 CloseLink
thumb_func 0x80093b4 TestBlockTransfer
thumb_func 0x800949c LinkTestProcessKeyInput
thumb_func 0x8009558 CB2_LinkTest
thumb_func 0x800957c LinkMain2
thumb_func 0x80095f4 HandleReceiveRemoteLinkPlayer
thumb_func 0x800963c ProcessRecvCmds
thumb_func 0x8009928 BuildSendCmd
thumb_func 0x8009ab0
thumb_func 0x8009ad4 IsSendingKeysToLink
thumb_func 0x8009b08
thumb_func 0x8009b24 ClearLinkCallback
thumb_func 0x8009b44 ClearLinkCallback_2
thumb_func 0x8009b64 GetLinkPlayerCount
thumb_func 0x8009b90
thumb_func 0x8009bd4
thumb_func 0x8009c04
thumb_func 0x8009c28 Link_AnyPartnersPlayingRubyOrSapphire
thumb_func 0x8009c40
thumb_func 0x8009c70 OpenLinkTimed
thumb_func 0x8009c8c GetLinkPlayerDataExchangeStatusTimed
thumb_func 0x8009e00 IsLinkPlayerDataExchangeComplete
thumb_func 0x8009e68 GetLinkPlayerTrainerId
thumb_func 0x8009e80 ResetLinkPlayers
thumb_func 0x8009ea4 ResetBlockSend
thumb_func 0x8009eb8 InitBlockSend
thumb_func 0x8009f28 LinkCB_BlockSendBegin
thumb_func 0x8009f4c LinkCB_BlockSend
thumb_func 0x8009fb0 LinkCB_BlockSendEnd
thumb_func 0x8009fbc
thumb_func 0x8009fdc
thumb_func 0x800a010
thumb_func 0x800a01c
thumb_func 0x800a02c GetMultiplayerId
thumb_func 0x800a054 bitmask_all_link_players_but_self
thumb_func 0x800a070 SendBlock
thumb_func 0x800a09c
thumb_func 0x800a0e4 IsLinkTaskFinished
thumb_func 0x800a114 GetBlockReceivedStatus
thumb_func 0x800a14c SetBlockReceivedFlag
thumb_func 0x800a178 ResetBlockReceivedFlags
thumb_func 0x800a1b0 ResetBlockReceivedFlag
thumb_func 0x800a1e4 CheckShouldAdvanceLinkState
thumb_func 0x800a20c LinkTestCalcBlockChecksum
thumb_func 0x800a23c LinkTest_prnthexchar
thumb_func 0x800a274 LinkTest_prntchar
thumb_func 0x800a2ac LinkTest_prnthex
thumb_func 0x800a300 LinkTest_prntint
thumb_func 0x800a3a0 LinkTest_prntstr
thumb_func 0x800a3e8 LinkCB_RequestPlayerDataExchange
thumb_func 0x800a414 Task_PrintTestData
thumb_func 0x800a558 SetLinkDebugValues
thumb_func 0x800a56c
thumb_func 0x800a59c
thumb_func 0x800a5c8
thumb_func 0x800a60c GetSavedPlayerCount
thumb_func 0x800a618
thumb_func 0x800a624
thumb_func 0x800a6b8
thumb_func 0x800a6dc
thumb_func 0x800a75c
thumb_func 0x800a770 GetLinkPlayerCount_2
thumb_func 0x800a780 IsLinkMaster
thumb_func 0x800a7ac
thumb_func 0x800a7b8
thumb_func 0x800a7f8
thumb_func 0x800a844
thumb_func 0x800a870
thumb_func 0x800a8d4
thumb_func 0x800a90c
thumb_func 0x800a938
thumb_func 0x800a990 CheckErrorStatus
thumb_func 0x800a9f4
thumb_func 0x800aa0c CB2_LinkError
thumb_func 0x800ab5c
thumb_func 0x800ac14
thumb_func 0x800ac7c CB2_PrintErrorMessage
thumb_func 0x800adc4 GetSioMultiSI
thumb_func 0x800add4 IsSioMultiMaster
thumb_func 0x800adfc IsLinkConnectionEstablished
thumb_func 0x800ae0c SetSuppressLinkErrorMessage
thumb_func 0x800ae18 HasLinkErrorOccurred
thumb_func 0x800ae24
thumb_func 0x800ae80
thumb_func 0x800aee0 HandleLinkConnection
thumb_func 0x800af5c
thumb_func 0x800af78
thumb_func 0x800af94
thumb_func 0x800afb0 GetLinkRecvQueueLength
thumb_func 0x800afd8
thumb_func 0x800afec
thumb_func 0x800aff8 DisableSerial
thumb_func 0x800b050 EnableSerial
thumb_func 0x800b0e4 ResetSerial
thumb_func 0x800b0f4 LinkMain1
thumb_func 0x800b220 CheckMasterOrSlave
thumb_func 0x800b24c InitTimer
thumb_func 0x800b27c EnqueueSendCmd
thumb_func 0x800b364 DequeueRecvCmds
thumb_func 0x800b474 LinkVSync
thumb_func 0x800b4e4 Timer3Intr
thumb_func 0x800b4f4 SerialCB
thumb_func 0x800b57c StartTransfer
thumb_func 0x800b58c DoHandshake
thumb_func 0x800b688 DoRecv
thumb_func 0x800b7a0 DoSend
thumb_func 0x800b854 StopTimer
thumb_func 0x800b888 SendRecvDone
thumb_func 0x800b8b8 ResetSendBuffer
thumb_func 0x800b90c ResetRecvBuffer
# link_rfu.s
thumb_func 0x800b97c
thumb_func 0x800b9c8 rfu_REQ_sendData_wrapper
thumb_func 0x800ba08
thumb_func 0x800ba5c
thumb_func 0x800ba88
thumb_func 0x800babc
thumb_func 0x800bb04
thumb_func 0x800bb10
thumb_func 0x800bbe8
thumb_func 0x800bccc
thumb_func 0x800bd38
thumb_func 0x800be28
thumb_func 0x800bfec rfu_syncVBlank_
thumb_func 0x800c008
thumb_func 0x800c200
thumb_func 0x800c270
thumb_func 0x800c96c
thumb_func 0x800c9f0
thumb_func 0x800cc14
thumb_func 0x800ccc8
thumb_func 0x800cd24
thumb_func 0x800cd50
thumb_func 0x800cdc8
thumb_func 0x800cdf0
thumb_func 0x800ce14
thumb_func 0x800cef0
thumb_func 0x800cfe8
thumb_func 0x800d000
thumb_func 0x800d00c
thumb_func 0x800d050
thumb_func 0x800d08c
thumb_func 0x800d0cc
thumb_func 0x800d0ec
thumb_func 0x800d114
thumb_func 0x800d184
thumb_func 0x800d1e0
thumb_func 0x800d23c
thumb_func 0x800d294
thumb_func 0x800d348
thumb_func 0x800d3f4
thumb_func 0x800d4a8
thumb_func 0x800d534
thumb_func 0x800d594
thumb_func 0x800d5e4
thumb_func 0x800d650
thumb_func 0x800d6c4
thumb_func 0x800d780 PkmnStrToASCII
thumb_func 0x800d7b4 ASCIIToPkmnStr
thumb_func 0x800d7e8
thumb_func 0x800d860
thumb_func 0x800d948
thumb_func 0x800da00
thumb_func 0x800da5c
thumb_func 0x800da80 CreateWirelessStatusIndicatorSprite
thumb_func 0x800db50 DestroyWirelessStatusIndicatorSprite
thumb_func 0x800dbb4 LoadWirelessStatusIndicatorSpriteGfx
thumb_func 0x800dbf0
thumb_func 0x800dc28
thumb_func 0x800dc40
thumb_func 0x800de44 CopyTrainerRecord
thumb_func 0x800de54 NameIsNotEmpty
thumb_func 0x800de74 RecordMixTrainerNames
thumb_func 0x800e004
thumb_func 0x800e070 WipeTrainerNameRecords
thumb_func 0x800e0c0 nullsub_13
thumb_func 0x800e0c4 nullsub_5
thumb_func 0x800e0c8
thumb_func 0x800e194
thumb_func 0x800e1c4
thumb_func 0x800e20c
thumb_func 0x800e340
thumb_func 0x800e350
thumb_func 0x800e410
thumb_func 0x800e578
thumb_func 0x800e5c0
thumb_func 0x800e608
thumb_func 0x800e7d0
thumb_func 0x800e7e8
thumb_func 0x800e7f4
thumb_func 0x800e87c
thumb_func 0x800e894
thumb_func 0x800e938
thumb_func 0x800e954
thumb_func 0x800e97c
thumb_func 0x800e9c0
thumb_func 0x800e9dc
thumb_func 0x800e9f8
thumb_func 0x800ea18
thumb_func 0x800ea3c
thumb_func 0x800ea48
thumb_func 0x800ea70
thumb_func 0x800ead4
thumb_func 0x800eb08
thumb_func 0x800eb78 IsRfuRecvQueueEmpty
thumb_func 0x800ebb8
thumb_func 0x800eca0
thumb_func 0x800ef58
thumb_func 0x800efb0
thumb_func 0x800f0f8
thumb_func 0x800f1bc
thumb_func 0x800f1e8
thumb_func 0x800f20c
thumb_func 0x800f254 rfu_func_080F97B8
thumb_func 0x800f29c
thumb_func 0x800f2a4 IsSendingKeysToRfu
thumb_func 0x800f2c4
thumb_func 0x800f2f8 Rfu_set_zero
thumb_func 0x800f304
thumb_func 0x800f334
thumb_func 0x800f350
thumb_func 0x800f744
thumb_func 0x800f76c
thumb_func 0x800f7a8
thumb_func 0x800f7bc
thumb_func 0x800f7f8
thumb_func 0x800f934
thumb_func 0x800f968
thumb_func 0x800fa4c rfufunc_80F9F44
thumb_func 0x800fab0
thumb_func 0x800fb28 rfufunc_80FA020
thumb_func 0x800fc00
thumb_func 0x800fc1c
thumb_func 0x800fc48
thumb_func 0x800fc68
thumb_func 0x800fc98 LinkRfu_FatalError
thumb_func 0x800fccc
thumb_func 0x800fd2c
thumb_func 0x800fd64
thumb_func 0x800fd94 task_add_05_task_del_08FA224_when_no_RfuFunc
thumb_func 0x800fdb8
thumb_func 0x800fe58
thumb_func 0x800fe90
thumb_func 0x800ff34
thumb_func 0x800ff54
thumb_func 0x800ff8c
thumb_func 0x800ffb0
thumb_func 0x800ffd0 rfu_get_multiplayer_id
thumb_func 0x800fff4
thumb_func 0x8010000
thumb_func 0x8010028
thumb_func 0x8010040
thumb_func 0x80100ec
thumb_func 0x801014c
thumb_func 0x8010188
thumb_func 0x80101d4
thumb_func 0x8010214
thumb_func 0x8010250
thumb_func 0x80102a0
thumb_func 0x801034c
thumb_func 0x80104e8
thumb_func 0x8010514
thumb_func 0x8010568
thumb_func 0x80105a4
thumb_func 0x80107fc
thumb_func 0x80108a4
thumb_func 0x8010990 rfu_REQ_recvData_then_sendData
thumb_func 0x80109b0
thumb_func 0x8010a0c
thumb_func 0x8010a38
thumb_func 0x8010a50
thumb_func 0x8010a74
thumb_func 0x8010a90
thumb_func 0x8010abc
thumb_func 0x8010afc
thumb_func 0x8010b2c
thumb_func 0x8010b58
thumb_func 0x8010b80
thumb_func 0x8010ba8
thumb_func 0x8010c60
thumb_func 0x8010c90
thumb_func 0x8010ca0
thumb_func 0x8010ccc
thumb_func 0x8010cec
thumb_func 0x8010cfc
thumb_func 0x8010ef4
thumb_func 0x80110dc
thumb_func 0x8011118
thumb_func 0x8011164
thumb_func 0x8011540
thumb_func 0x8011554
thumb_func 0x8011564
thumb_func 0x8011570
thumb_func 0x801158c GetRfuRecvQueueLength
thumb_func 0x801159c Rfu_IsMaster
thumb_func 0x80115a8 ReadU16
thumb_func 0x80115b4
thumb_func 0x80115d4
thumb_func 0x80115e8
thumb_func 0x801167c
thumb_func 0x8011690
thumb_func 0x80116bc
thumb_func 0x80116e4
thumb_func 0x80116fc
thumb_func 0x8011748
thumb_func 0x8011770
thumb_func 0x80117c4
thumb_func 0x80117d0
thumb_func 0x8011858
thumb_func 0x80118ac
thumb_func 0x80118cc
thumb_func 0x8011918
thumb_func 0x8011980
thumb_func 0x80119e0
thumb_func 0x8011ab4
thumb_func 0x8011af8
thumb_func 0x8011b88
thumb_func 0x8011c74
thumb_func 0x8011d10
thumb_func 0x8011d2c
thumb_func 0x8011d68
thumb_func 0x8011d88
thumb_func 0x8011fac
thumb_func 0x8011fc0
# union_room.s
thumb_func 0x8011fd4 nullsub_14
thumb_func 0x8011fd8
thumb_func 0x80120a8
thumb_func 0x8012134
thumb_func 0x80121d4
thumb_func 0x8012244 BerryBlenderLinkBecomeLeader
thumb_func 0x8012288
thumb_func 0x8012a64
thumb_func 0x8012ac4
thumb_func 0x8012b78
thumb_func 0x8012bb4
thumb_func 0x8012c60
thumb_func 0x8012d0c
thumb_func 0x8012d7c
thumb_func 0x8012dd8
thumb_func 0x8012e9c
thumb_func 0x8012fa8 BerryBlenderLinkJoinGroup
thumb_func 0x8012fec
thumb_func 0x8013690
thumb_func 0x80136dc
thumb_func 0x8013748
thumb_func 0x8013784
thumb_func 0x8013890
thumb_func 0x80138c4
thumb_func 0x80138fc
thumb_func 0x801394c
thumb_func 0x8013a68
thumb_func 0x8013a80
thumb_func 0x8013a98
thumb_func 0x8013be8
thumb_func 0x8013cac
thumb_func 0x8013d18
thumb_func 0x8013d98
thumb_func 0x8013e0c
thumb_func 0x8013e8c
thumb_func 0x8013eec
thumb_func 0x8013f14
thumb_func 0x8014298
thumb_func 0x80144cc
thumb_func 0x80144e0
thumb_func 0x8014508 MEvent_CreateTask_Leader
thumb_func 0x8014548
thumb_func 0x8014a04 MEvent_CreateTask_CardOrNewsWithFriend
thumb_func 0x8014a50
thumb_func 0x8014db0 MEvent_CreateTask_CardOrNewsOverWireless
thumb_func 0x8014dfc
thumb_func 0x8015114 UnionRoomSpecial
thumb_func 0x8015160 ReadAsU16
thumb_func 0x801516c
thumb_func 0x8015194
thumb_func 0x80151b8
thumb_func 0x80151d0
thumb_func 0x80151e8
thumb_func 0x8016398 var_800D_set_xB
thumb_func 0x80163b0
thumb_func 0x80163f0
thumb_func 0x8016448
thumb_func 0x8016490
thumb_func 0x80165e4 sp182_move_string
thumb_func 0x8016610
thumb_func 0x80167b0
thumb_func 0x8016900
thumb_func 0x8016934
thumb_func 0x8016a2c
thumb_func 0x8016a54
thumb_func 0x8016ad0
thumb_func 0x8016b00
thumb_func 0x8016b30
thumb_func 0x8016b5c
thumb_func 0x8016b74 PrintOnTextbox
thumb_func 0x8016bc8
thumb_func 0x8016c28
thumb_func 0x8016c78
thumb_func 0x8016c88
thumb_func 0x8016d5c
thumb_func 0x8016e74
thumb_func 0x8016e98
thumb_func 0x8016ea4
thumb_func 0x8017044
thumb_func 0x80170b0
thumb_func 0x80170f4
thumb_func 0x801713c
thumb_func 0x80171a8
thumb_func 0x80171f8
thumb_func 0x801727c
thumb_func 0x8017360
thumb_func 0x80173fc
thumb_func 0x8017440
thumb_func 0x8017468
thumb_func 0x8017484
thumb_func 0x80175ec nullsub_89
thumb_func 0x80175f0
thumb_func 0x80176b0
thumb_func 0x8017770
thumb_func 0x80177b8
thumb_func 0x80177c4
thumb_func 0x801785c
thumb_func 0x80178c0
thumb_func 0x8017960
thumb_func 0x8017a94
thumb_func 0x8017ac0 InUnionRoom
thumb_func 0x8017ae0
thumb_func 0x8017b38
thumb_func 0x8017b4c
thumb_func 0x8017b5c
thumb_func 0x8017ba4
thumb_func 0x8017bdc
thumb_func 0x8017c48
thumb_func 0x8017c88
thumb_func 0x8017c98
thumb_func 0x8017cdc
# mystery_gift.s
thumb_func 0x8017ebc vblankcb_mystery_gift_e_reader_run
thumb_func 0x8017ed0 c2_mystery_gift_e_reader_run
thumb_func 0x8017ee8 HandleMysteryGiftOrEReaderSetup
thumb_func 0x80180e4 c2_mystery_gift
thumb_func 0x8018110 c2_ereader
thumb_func 0x8018138 MainCB_FreeAllBuffersAndReturnToInitTitleScreen
thumb_func 0x8018180 PrintMysteryGiftOrEReaderTopMenu
thumb_func 0x801822c MG_DrawTextBorder
thumb_func 0x8018240 MG_DrawCheckerboardPattern
thumb_func 0x80182e0 ClearScreenInBg0
thumb_func 0x801832c AddTextPrinterToWindow1
thumb_func 0x8018388 ClearTextWindow
thumb_func 0x80183a4 MG_PrintTextOnWindow1AndWaitButton
thumb_func 0x8018438 HideDownArrow
thumb_func 0x8018460 ShowDownArrow
thumb_func 0x8018488 unref_HideDownArrowAndWaitButton
thumb_func 0x80184c8 PrintStringAndWait2Seconds
thumb_func 0x80184fc MysteryGift_HandleThreeOptionMenu
thumb_func 0x8018560 mevent_message_print_and_prompt_yes_no
thumb_func 0x80186b4 HandleMysteryGiftListMenu
thumb_func 0x8018804 ValidateCardOrNews
thumb_func 0x8018818 HandleLoadWonderCardOrNews
thumb_func 0x8018874 DestroyNewsOrCard
thumb_func 0x801888c TearDownCardOrNews_ReturnToTopMenu
thumb_func 0x80188b8 mevent_message_prompt_discard
thumb_func 0x80188dc mevent_message_was_thrown_away
thumb_func 0x80188fc mevent_save_game
thumb_func 0x8018974 mevent_message
thumb_func 0x8018aa4 PrintMGSuccessMessage
thumb_func 0x8018b0c mevent_message_stamp_card_etc_send_status
thumb_func 0x8018bdc PrintMGSendStatus
thumb_func 0x8018c14 task_add_00_mystery_gift
thumb_func 0x8018c5c task00_mystery_gift
thumb_func 0x8019328 GetMysteryGiftBaseBlock
thumb_func 0x8019330 bgid_upload_textbox_1
# union_room_player_avatar.s
thumb_func 0x8019350 is_walking_or_running
thumb_func 0x8019370
thumb_func 0x8019388
thumb_func 0x80193d8
thumb_func 0x8019428 IsUnionRoomPlayerHidden
thumb_func 0x8019444 HideUnionRoomPlayer
thumb_func 0x801945c ShowUnionRoomPlayer
thumb_func 0x8019474 SetUnionRoomPlayerGfx
thumb_func 0x8019490 CreateUnionRoomPlayerEventObject
thumb_func 0x80194b0 RemoveUnionRoomPlayerEventObject
thumb_func 0x80194d0 SetUnionRoomPlayerEnterExitMovement
# union_room_battle.s
thumb_func 0x8019548
thumb_func 0x80195b4
thumb_func 0x801960c
thumb_func 0x8019668
thumb_func 0x8019720
thumb_func 0x801976c
thumb_func 0x80197ac
thumb_func 0x8019838
thumb_func 0x8019878
thumb_func 0x80198bc
thumb_func 0x80198d8
thumb_func 0x801990c
thumb_func 0x80199a0
thumb_func 0x80199c8
thumb_func 0x8019a00
thumb_func 0x8019a28
thumb_func 0x8019a40
thumb_func 0x8019ac8
thumb_func 0x8019b00
thumb_func 0x8019c08
thumb_func 0x8019ccc
thumb_func 0x8019cec
thumb_func 0x8019d2c
thumb_func 0x8019d3c
thumb_func 0x8019d60
thumb_func 0x8019e68
thumb_func 0x8019e88
thumb_func 0x8019eac
thumb_func 0x8019ed0
thumb_func 0x8019ee4
thumb_func 0x8019ef4
thumb_func 0x801a03c
thumb_func 0x801a074
thumb_func 0x801a0b8
thumb_func 0x801a168
thumb_func 0x801a384
thumb_func 0x801a434
thumb_func 0x801a4dc
thumb_func 0x801a504
thumb_func 0x801a5a8
thumb_func 0x801a63c
thumb_func 0x801a6b0
thumb_func 0x801a714
thumb_func 0x801a728
thumb_func 0x801aaac
# mevent2.s
thumb_func 0x801aae0 GetSavedWonderNews
thumb_func 0x801aaf4 GetSavedWonderCard
thumb_func 0x801ab08 sav1_get_mevent_buffer_2
thumb_func 0x801ab1c
thumb_func 0x801ab30
thumb_func 0x801ab44 DestroyWonderNews
thumb_func 0x801ab50
thumb_func 0x801aba0 ValidateReceivedWonderNews
thumb_func 0x801abe4
thumb_func 0x801abf8 WonderNews_Test_Unk_02
thumb_func 0x801ac1c s_DestroyWonderNews
thumb_func 0x801ac50
thumb_func 0x801ac74
thumb_func 0x801acb0 DestroyWonderCard
thumb_func 0x801ace4
thumb_func 0x801ad40 ValidateReceivedWonderCard
thumb_func 0x801ad8c
thumb_func 0x801adc8 WonderCard_Test_Unk_08_6
thumb_func 0x801adf0
thumb_func 0x801ae28
thumb_func 0x801ae5c GetWonderCardFlagID
thumb_func 0x801ae80 WonderCard_ResetInternalReceivedFlag
thumb_func 0x801ae98 IsWonderCardFlagIDInValidRange
thumb_func 0x801aeb8 CheckReceivedGiftFromWonderCard
thumb_func 0x801aef8
thumb_func 0x801af20
thumb_func 0x801af64
thumb_func 0x801af8c
thumb_func 0x801afc8
thumb_func 0x801b040
thumb_func 0x801b160
thumb_func 0x801b1ac
thumb_func 0x801b1c8
thumb_func 0x801b208 MEventStruct_Unk1442CC_CompareField_unk_16
thumb_func 0x801b230
thumb_func 0x801b244 MEventStruct_Unk1442CC_GetValueNFrom_unk_20
thumb_func 0x801b2b0
thumb_func 0x801b354 mevent_081445C0
thumb_func 0x801b458
thumb_func 0x801b464
thumb_func 0x801b4a8
thumb_func 0x801b524
thumb_func 0x801b550
thumb_func 0x801b5b8
# mevent_801BAAC.s
thumb_func 0x801b5d8 InitWonderCardResources
thumb_func 0x801b670 DestroyWonderCardResources
thumb_func 0x801b69c FadeToWonderCardMenu
thumb_func 0x801b8b0 FadeOutFromWonderCard
thumb_func 0x801b9f0
thumb_func 0x801bca4
thumb_func 0x801c04c
thumb_func 0x801c17c
thumb_func 0x801c224 InitWonderNewsResources
thumb_func 0x801c280 DestroyWonderNewsResources
thumb_func 0x801c2ac FadeToWonderNewsMenu
thumb_func 0x801c588 FadeOutFromWonderNews
thumb_func 0x801c754 MENews_RemoveScrollIndicatorArrowPair
thumb_func 0x801c794 MENews_AddScrollIndicatorArrowPair
thumb_func 0x801c7d4 MENews_GetInput
thumb_func 0x801c8b4
thumb_func 0x801c95c
thumb_func 0x801ca6c
# mevent_server.s
thumb_func 0x801cb24 mevent_srv_init_wnews
thumb_func 0x801cb48 mevent_srv_new_wcard
thumb_func 0x801cb6c mevent_srv_common_do_exec
thumb_func 0x801cba8 mevent_srv_init_common
thumb_func 0x801cbfc mevent_srv_free_resources
thumb_func 0x801cc20 mevent_srv_common_init_send
thumb_func 0x801cc60 mevent_first_if_not_null_else_second
thumb_func 0x801cc6c mevent_compare_pointers
thumb_func 0x801cc84 common_mainseq_0
thumb_func 0x801cc8c common_mainseq_1
thumb_func 0x801cc90 common_mainseq_2
thumb_func 0x801ccac common_mainseq_3
thumb_func 0x801ccc8 common_mainseq_4
thumb_func 0x801d240 mevent_srv_exec_common
# mevent_client.s
thumb_func 0x801d294 mevent_client_do_init
thumb_func 0x801d2b8 mevent_client_do_exec
thumb_func 0x801d2f4 mevent_client_inc_flag
thumb_func 0x801d304 mevent_client_get_buffer
thumb_func 0x801d310 mevent_client_set_param
thumb_func 0x801d31c mevent_client_init
thumb_func 0x801d36c mevent_client_free_resources
thumb_func 0x801d390 mevent_client_jmp_buffer
thumb_func 0x801d3ac mevent_client_send_word
thumb_func 0x801d3e0 mainseq_0
thumb_func 0x801d408 mainseq_1
thumb_func 0x801d40c mainseq_2
thumb_func 0x801d42c mainseq_3
thumb_func 0x801d44c mainseq_4
thumb_func 0x801d620 mainseq_5
thumb_func 0x801d638 mainseq_6
thumb_func 0x801d670 mainseq_7
thumb_func 0x801d6a4 mevent_client_exec
# mevent_server_helpers.s
thumb_func 0x801d6d0 mevent_srv_sub_recv
thumb_func 0x801d6dc mevent_srv_sub_send
thumb_func 0x801d6e8 mevent_srv_sub_init
thumb_func 0x801d714 mevent_srv_sub_init_send
thumb_func 0x801d738 mevent_srv_sub_init_recv
thumb_func 0x801d748 mevent_recv_block
thumb_func 0x801d764 mevent_has_received
thumb_func 0x801d788 mevent_reset_recv
thumb_func 0x801d798 mevent_receive_func