-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsymbol_addrs.debug.txt
3891 lines (3891 loc) · 222 KB
/
symbol_addrs.debug.txt
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
RDRAM_CONFIG = 0xa3f00000; // type:u32 size:0x4
RDRAM_DEVICE_ID = 0xa3f00004; // type:u32 size:0x4
RDRAM_DELAY = 0xa3f00008; // type:u32 size:0x4
RDRAM_MODE = 0xa3f0000c; // type:u32 size:0x4
RDRAM_REF_INTERVAL = 0xa3f00010; // type:u32 size:0x4
RDRAM_REF_ROW = 0xa3f00014; // type:u32 size:0x4
RDRAM_RAS_INTERVAL = 0xa3f00018; // type:u32 size:0x4
RDRAM_MIN_INTERVAL = 0xa3f0001c; // type:u32 size:0x4
RDRAM_ADDR_SELECT = 0xa3f00020; // type:u32 size:0x4
RDRAM_DEVICE_MANUF = 0xa3f00024; // type:u32 size:0x4
SP_MEM_ADDR = 0xa4040000; // type:u32 size:0x4
SP_DRAM_ADDR = 0xa4040004; // type:u32 size:0x4
SP_RD_LEN = 0xa4040008; // type:u32 size:0x4
SP_WR_LEN = 0xa404000c; // type:u32 size:0x4
SP_STATUS = 0xa4040010; // size:0x4
SP_DMA_FULL = 0xa4040014; // type:u32 size:0x4
SP_DMA_BUSY = 0xa4040018; // type:u32 size:0x4
SP_SEMAPHORE = 0xa404001c; // type:u32 size:0x4
SP_PC = 0xa4080000; // type:u32 size:0x4
DCP_START = 0xa4100000; // type:u32 size:0x4
DCP_END = 0xa4100004; // type:u32 size:0x4
DCP_CURRENT = 0xa4100008; // type:u32 size:0x4
DCP_STATUS = 0xa410000c; // type:u32 size:0x4
DCP_CLOCK = 0xa4100010; // type:u32 size:0x4
DCP_BUFBUSY = 0xa4100014; // type:u32 size:0x4
DCP_PIPEBUSY = 0xa4100018; // type:u32 size:0x4
DCP_START = 0xa410001c; // type:u32 size:0x4
MI_INIT_MODE = 0xa4300000; // type:u32 size:0x4
MI_VERSION = 0xa4300004; // type:u32 size:0x4
MI_INTR = 0xa4300008; // type:u32 size:0x4
MI_INTR_MASK = 0xa430000c; // type:u32 size:0x4
VI_STATUS = 0xa4400000; // size:0x4
VI_ORIGIN = 0xa4400004; // type:u32 size:0x4
VI_WIDTH = 0xa4400008; // type:u32 size:0x4
VI_INTR = 0xa440000c; // type:u32 size:0x4
VI_CURRENT = 0xa4400010; // type:u32 size:0x4
VI_BURST = 0xa4400014; // type:u32 size:0x4
VI_V_SYNC = 0xa4400018; // type:u32 size:0x4
VI_H_SYNC = 0xa440001c; // type:u32 size:0x4
VI_LEAP = 0xa4400020; // type:u32 size:0x4
VI_H_START = 0xa4400024; // type:u32 size:0x4
VI_V_START = 0xa4400028; // type:u32 size:0x4
VI_V_BURST = 0xa440002c; // type:u32 size:0x4
VI_X_SCALE = 0xa4400030; // type:u32 size:0x4
VI_Y_SCALE = 0xa4400034; // type:u32 size:0x4
AI_DRAM_ADDR = 0xa4500000; // size:0x4
AI_LEN = 0xa4500004; // type:u32 size:0x4
AI_CONTROL = 0xa4500008; // type:u32 size:0x4
AI_STATUS = 0xa450000c; // type:u32 size:0x4
AI_DACRATE = 0xa4500010; // type:u32 size:0x4
AI_BITRATE = 0xa4500014; // type:u32 size:0x4
PI_DRAM_ADDR = 0xa4600000; // type:u32 size:0x4
PI_CART_ADDR = 0xa4600004; // type:u32 size:0x4
PI_RD_LEN = 0xa4600008; // type:u32 size:0x4
PI_WR_LEN = 0xa460000c; // type:u32 size:0x4
PI_STATUS = 0xa4600010; // size:0x4
PI_BSD_DOM1_LAT = 0xa4600014; // type:u32 size:0x4
PI_BSD_DOM1_PWD = 0xa4600018; // type:u32 size:0x4
PI_BSD_DOM1_PGS = 0xa460001c; // type:u32 size:0x4
PI_BSD_DOM1_RLS = 0xa4600020; // type:u32 size:0x4
PI_BSD_DOM2_LAT = 0xa4600024; // type:u32 size:0x4
PI_BSD_DOM2_PWD = 0xa4600028; // type:u32 size:0x4
PI_BSD_DOM2_PGS = 0xa460002c; // type:u32 size:0x4
PI_BSD_DOM2_RLS = 0xa4600030; // type:u32 size:0x4
RI_MODE = 0xa4700000; // type:u32 size:0x4
RI_CONFIG = 0xa4700004; // type:u32 size:0x4
RI_CURRENT_LOAD = 0xa4700008; // type:u32 size:0x4
RI_SELECT = 0xa470000c; // type:u32 size:0x4
RI_REFRESH = 0xa4700010; // type:u32 size:0x4
RI_LATENCY = 0xa4700014; //
RI_RERROR = 0xa4700018; //
RI_WERROR = 0xa470001c; //
SI_DRAM_ADDR = 0xa4800000; // type:u32 size:0x4
SI_PIF_ADDR_RD64B_REG = 0xa4800004; // type:u32 size:0x4
SI_PIF_ADDR_WR64B_REG = 0xa4800010; // type:u32 size:0x4
SI_STATUS = 0xa4800018; // type:u32 size:0x4
TLB_REFILL = 0x80000000; //
XTLB_REFILL = 0x80000080; // type:u32 size:0x4
CACHE_ERROR = 0x80000100; // type:u32 size:0x4
GEN_EXCEPTION = 0x80000180; // type:u32 size:0x4
CART_DD = 0x80000304; //
CIC_ID = 0x80000310; //
VERSION = 0x80000314; //
RDRAM_SIZE = 0x80000318; //
pifMain = 0x1fc00000; // type:func
bootMain = 0xa4000040; // type:func
SaveParty::Init = 0x800026f0; // type:func rom:0x32f0
SaveParty::SaveBits = 0x80002700; // type:func rom:0x3300
SaveParty::LoadBits = 0x8000277c; // type:func rom:0x337c
SaveParty::Advance = 0x800027f4; // type:func rom:0x33f4
SaveParty::RShift = 0x80002804; // type:func rom:0x3404
SaveParty::GetBit = 0x80002810; // type:func rom:0x3410
SaveParty::WriteData = 0x8000282c; // type:func rom:0x342c
SaveParty::GetData = 0x80002860; // type:func rom:0x3460
init_big_debug_menu = 0x80002890; // type:func rom:0x3490
WidgetDebugBig::WidgetDebugBig = 0x80002928; // type:func rom:0x3528
WidgetDebugBig::AddEntry = 0x80002b04; // type:func rom:0x3704
big_debug_func_array = 0x80002b90; // type:func rom:0x3790
WidgetItemDB::WidgetItemDB = 0x80002dac; // type:func rom:0x39ac
CanMakeArmor = 0x80003658; // type:func rom:0x4258
WidgetArmorCraft::WidgetArmorCraft = 0x80003728; // type:func rom:0x4328
get_potion_recipie = 0x80003bb4; // type:func rom:0x47b4
check_potion_ingredient = 0x80003bec; // type:func rom:0x47ec
check_potion_ingredients = 0x80003c8c; // type:func rom:0x488c
WidgetPotionCraft::WidgetPotionCraft = 0x80003ce4; // type:func rom:0x48e4
WidgetPotionCraft::FailString = 0x800040e4; // type:func rom:0x4ce4
WidgetPotionCraft::CraftedString = 0x80004124; // type:func rom:0x4d24
WidgetPotionCraft::NotEnoughString = 0x80004164; // type:func rom:0x4d64
WidgetMenuHealer::WidgetMenuHealer = 0x80004350; // type:func rom:0x4f50
WidgetMenuHealer::LayOnHands = 0x80004628; // type:func rom:0x5228
WidgetMenuHealer::HealWithHerbs = 0x800047fc; // type:func rom:0x53fc
WidgetMenuHealer::Restore = 0x800049c8; // type:func rom:0x55c8
WidgetMenuHealer::ShowHealedMember = 0x80004b94; // type:func rom:0x5794
passto_healing_func = 0x80004dc0; // type:func rom:0x59c0
passTo_party_healing_func = 0x80004e00; // type:func rom:0x5a00
restore_stats_widget = 0x80004e40; // type:func rom:0x5a40
passto_some_healing_func = 0x80005004; // type:func rom:0x5c04
make_widget_with_stats = 0x800050f0; // type:func rom:0x5cf0
debug_gamestatefunnel_sub = 0x800051c0; // type:func rom:0x5dc0
quicksort_gamestatemod = 0x80005524; // type:func rom:0x6124
load_gamestatemod_dat = 0x80005548; // type:func rom:0x6148
gamestatemod_free = 0x80005638; // type:func rom:0x6238
WidgetDebugDummyToggle::WidgetDebugDummyToggle = 0x80005a50; // type:func rom:0x6650
func_checking_monsterparty = 0x80005e6c; // type:func rom:0x6a6c
monsterparty_setvec2 = 0x80005ea4; // type:func rom:0x6aa4
obj_ref_func = 0x80005f34; // type:func rom:0x6b34
dialoug_ref_obj_func = 0x800063bc; // type:func rom:0x6fbc
SetWidgetBounds = 0x800064e8; // type:func rom:0x70e8
isCampfireScene = 0x80006500; // type:func rom:0x7100
some_dialoug_short_lookup = 0x80006540; // type:func rom:0x7140
campfire_func = 0x80006584; // type:func rom:0x7184
crash_strlen = 0x800066b0; // type:func rom:0x72b0
strlenX8 = 0x80006b80; // type:func rom:0x7780
crash_print_2 = 0x80006ba4; // type:func rom:0x77a4
crash_text_2 = 0x80006d30; // type:func rom:0x7930
stack_dump = 0x800073d8; // type:func rom:0x7fd8
heap_walk = 0x80007e9c; // type:func rom:0x8a9c
crash_print = 0x80007fac; // type:func rom:0x8bac
MemoryCheck = 0x80008120; // type:func rom:0x8d20
Graphics::initGfx = 0x80008200; // type:func rom:0x8e00
Graphics::initGfx_2 = 0x800084e4; // type:func rom:0x90e4
Graphics::SetGfxMode = 0x8000852c; // type:func rom:0x912c
Graphics::video_settings = 0x80008620; // type:func rom:0x9220
Graphics::StartGfxList = 0x800087a4; // type:func rom:0x93a4
Graphics::SomeOtherInit = 0x80008994; // type:func rom:0x9594
GsSetOtherMode_SysMon = 0x80008d2c; // type:func rom:0x992c
Graphics::DebugDrawRect = 0x80008d74; // type:func rom:0x9974
Graphics::StartDisplay = 0x80008f94; // type:func rom:0x9b94
Graphics::EndList = 0x800091d0; // type:func rom:0x9dd0
Graphics::ResolutionCheck = 0x80009428; // type:func rom:0xa028
Graphics::CreateTask = 0x80009498; // type:func rom:0xa098
Graphics::getTaskTime = 0x800095f0; // type:func rom:0xa1f0
Graphics::GetBufferChoice = 0x8000964c; // type:func rom:0xa24c
Graphics::GetFrameBuffer = 0x80009690; // type:func rom:0xa290
Graphics::GetDepthBuffer = 0x800096ac; // type:func rom:0xa2ac
Graphics::get_hres = 0x800096d0; // type:func rom:0xa2d0
Graphics::get_vres = 0x800096dc; // type:func rom:0xa2dc
Graphics::GetColorDepth = 0x800096e8; // type:func rom:0xa2e8
Graphics::getGfxLastFrame = 0x800096f4; // type:func rom:0xa2f4
passto_GetGfxLastFrame = 0x80009d38; // type:func rom:0xa938
Graphics::DrawText = 0x8000a314; // type:func rom:0xaf14
Graphics::DisplaySystemMonitor = 0x8000a864; // type:func rom:0xb464
set_memUsedMirror = 0x8000b340; // type:func rom:0xbf40
rand_range = 0x8000b3dc; // type:func rom:0xbfdc
RollD = 0x8000b40c; // type:func rom:0xc00c
some_skillcheck_calc = 0x8000b480; // type:func rom:0xc080
get_battle_terrain = 0x8000b4c4; // type:func rom:0xc0c4
get_enemy_avg_lv = 0x8000b710; // type:func rom:0xc310
add_to_enemy_encounters = 0x8000bcf4; // type:func rom:0xc8f4
Emergency_skeleton_func = 0x8000c1a0; // type:func rom:0xcda0
battle_setup_func = 0x8000c2e0; // type:func rom:0xcee0
load_camp_ambush = 0x8000c508; // type:func rom:0xd108
AppendText = 0x8000c668; // type:func rom:0xd268
minimap_struct_init_or_free = 0x8000c958; // type:func rom:0xd558
NoExpPak_memCheck = 0x8000ce00; // type:func rom:0xda00
ZoneEngine::InitEnvProps = 0x8000cedc; // type:func rom:0xdadc
ZoneEngine::FreeEnvProps = 0x8000d118; // type:func rom:0xdd18
attachPhysicsProperties = 0x8000d188; // type:func rom:0xdd88
GetCollisionZone = 0x8000d338; // type:func rom:0xdf38
set_teleport_pointer = 0x8000d3b0; // type:func rom:0xdfb0
set_teleport_obj_A = 0x8000d41c; // type:func rom:0xe01c
set_teleport_obj_loadgame = 0x8000d4b8; // type:func rom:0xe0b8
init_some_map_data = 0x8000d6e4; // type:func rom:0xe2e4
Zonedat_clear = 0x8000d7ec; // type:func rom:0xe3ec
move_zonedat = 0x8000dadc; // type:func rom:0xe6dc
checkToggleZoneScene = 0x8000dba4; // type:func rom:0xe7a4
MakeGameZoneNames = 0x8000dc2c; // type:func rom:0xe82c
zoneDat_moveAniDat = 0x8000de18; // type:func rom:0xea18
zonedat_clear_all = 0x8000dfdc; // type:func rom:0xebdc
FreeZoneEngineMemory = 0x8000e07c; // type:func rom:0xec7c
loading_map_data = 0x8000e1c0; // type:func rom:0xedc0
loadGameBorgScenes = 0x8000e284; // type:func rom:0xee84
Actor::ApplyVelocity = 0x8000e8b0; // type:func rom:0xf4b0
FindReferncePoint = 0x8000e940; // type:func rom:0xf540
get_map_referencepoint = 0x8000e9ac; // type:func rom:0xf5ac
FindReferncePointName = 0x8000ea18; // type:func rom:0xf618
get_zoneDatByte = 0x8000eb54; // type:func rom:0xf754
set_playerdata_zoneDatByte = 0x8000ebc0; // type:func rom:0xf7c0
some_zoneDat_func = 0x8000ec8c; // type:func rom:0xf88c
TeleportPlayer = 0x8000edac; // type:func rom:0xf9ac
ConfirmPlayerWithinZone = 0x8000f300; // type:func rom:0xff00
load_borg_5_func = 0x8000f4e0; // type:func rom:0x100e0
set_anidat_colors = 0x8000f520; // type:func rom:0x10120
get_scene_obj_proximity = 0x8000f6b8; // type:func rom:0x102b8
debug::SceneBoulders = 0x8000f7ac; // type:func rom:0x103ac
NoExpPak_ClearSceneVoxelIndex = 0x8000f84c; // type:func rom:0x1044c
NoExpPak_ClearSceneVoxel = 0x8000f8d8; // type:func rom:0x104d8
RenderVoxelScenes = 0x8000f9a4; // type:func rom:0x105a4
RenderZones = 0x8001089c; // type:func rom:0x1149c
RenderTransZones__ = 0x80010fd0; // type:func rom:0x11bd0
renderTransZones_ = 0x8001107c; // type:func rom:0x11c7c
mapFloatDat_copy = 0x80011238; // type:func rom:0x11e38
ZoneEngine::InitZoneEngine = 0x800112bc; // type:func rom:0x11ebc
SaveEngineZone = 0x80011724; // type:func rom:0x12324
clear_music_values = 0x80011818; // type:func rom:0x12418
clear_music_no_expPak = 0x8001187c; // type:func rom:0x1247c
update_BGM_ = 0x800118c4; // type:func rom:0x124c4
FreeZoneEngine = 0x80011a1c; // type:func rom:0x1261c
ClearVoxelFlags = 0x80011ae0; // type:func rom:0x126e0
debug::VoxelIndexPosition = 0x80011b2c; // type:func rom:0x1272c
handleZoneEngineFrame = 0x80011e54; // type:func rom:0x12a54
sneak_value = 0x80012360; // type:func rom:0x12f60
findWandererFromPlayerName = 0x80012408; // type:func rom:0x13008
WanderHead = 0x8001251c; // type:func rom:0x1311c
FreeWanderHead = 0x800125ec; // type:func rom:0x131ec
look_for_monsterparties = 0x80012628; // type:func rom:0x13228
AllocWanderer = 0x80012750; // type:func rom:0x13350
FreeWanderer = 0x800129c0; // type:func rom:0x135c0
FreeWandererFromZone = 0x80012a24; // type:func rom:0x13624
FreeAllWanderers = 0x80012ac0; // type:func rom:0x136c0
WanderSubstruct_setFlag1 = 0x80012e24; // type:func rom:0x13a24
monster_engagement_func = 0x80012e34; // type:func rom:0x13a34
replace_container_voxel = 0x80013620; // type:func rom:0x14220
play_countainer_sound = 0x800136c0; // type:func rom:0x142c0
open_explosive_chest = 0x80013774; // type:func rom:0x14374
NOOP_tp = 0x8001392c; // type:func rom:0x1452c
run_voxelFuncs0 = 0x80013934; // type:func rom:0x14534
run_voxelFuncs2 = 0x80013970; // type:func rom:0x14570
Voxel_CheckProc = 0x800139a4; // type:func rom:0x145a4
teleport_trap = 0x800139e0; // type:func rom:0x145e0
teleporter_func = 0x80013a50; // type:func rom:0x14650
get_loot_reagent = 0x80013b60; // type:func rom:0x14760
trigger_vobject_func = 0x80014354; // type:func rom:0x14f54
vobject_pause_check = 0x80014498; // type:func rom:0x15098
dialouge_vobject_func = 0x800144f8; // type:func rom:0x150f8
check_reference_object = 0x8001455c; // type:func rom:0x1515c
exploding_container_sub = 0x80014628; // type:func rom:0x15228
exploding_container_check = 0x800146e8; // type:func rom:0x152e8
some_gamestate_check_B = 0x80014bf0; // type:func rom:0x157f0
teleporter_obj_check = 0x80014c60; // type:func rom:0x15860
trigger_obj_check_prox = 0x80014ca8; // type:func rom:0x158a8
dialouge_trigger_check = 0x80014d34; // type:func rom:0x15934
dialoug_obj_func = 0x80014dbc; // type:func rom:0x159bc
render_container = 0x80014e40; // type:func rom:0x15a40
set_container_obj_visible = 0x80014e6c; // type:func rom:0x15a6c
textbox_func = 0x80014f40; // type:func rom:0x15b40
container_open_check = 0x80014fc0; // type:func rom:0x15bc0
container_explode_check = 0x80015008; // type:func rom:0x15c08
Teleport_lock_check = 0x80015050; // type:func rom:0x15c50
teleport_trap_check = 0x80015098; // type:func rom:0x15c98
teleport_secret_check = 0x800150e0; // type:func rom:0x15ce0
trigger_event_flag_check = 0x80015180; // type:func rom:0x15d80
ref_obj_bitmask_flag = 0x800151dc; // type:func rom:0x15ddc
secret_door_func = 0x8001523c; // type:func rom:0x15e3c
Actor::IsFlyngModel = 0x800152b0; // type:func rom:0x15eb0
get_mapcellsize = 0x80015348; // type:func rom:0x15f48
Actor::GetPosOnLoadedMap = 0x800153fc; // type:func rom:0x15ffc
Actor::AddPosOnLoadedMap = 0x8001545c; // type:func rom:0x1605c
Actor::SubPosOnLoadedMap = 0x80015498; // type:func rom:0x16098
Actor::CheckCollision = 0x800154e4; // type:func rom:0x160e4
Actor::Init = 0x8001571c; // type:func rom:0x1631c
InitPlayerHandler = 0x800158b8; // type:func rom:0x164b8
FreePlayerHandler = 0x80015a4c; // type:func rom:0x1664c
Player::CalculateShadow = 0x80015af0; // type:func rom:0x166f0
renderPlayerShadows = 0x80015e04; // type:func rom:0x16a04
playerdata_remove_dcm = 0x80016004; // type:func rom:0x16c04
playerdata_remove_both_dcm = 0x80016070; // type:func rom:0x16c70
AllocPlayerAudio = 0x800160bc; // type:func rom:0x16cbc
ProcessPlayers = 0x8001623c; // type:func rom:0x16e3c
some_player_render_sub = 0x800173ac; // type:func rom:0x17fac
set_sun_light = 0x8001774c; // type:func rom:0x1834c
renderPlayers = 0x80017a54; // type:func rom:0x18654
edit_playerdat_combat_pos = 0x800181e8; // type:func rom:0x18de8
Actor::AllocPlayer = 0x80018268; // type:func rom:0x18e68
Actor::FreePlayer = 0x800183bc; // type:func rom:0x18fbc
remove_flagged_playerdata = 0x80018448; // type:func rom:0x19048
Actor::ChangeAppearance = 0x800184d0; // type:func rom:0x190d0
Actor::FreePlayerActor = 0x80018660; // type:func rom:0x19260
Actor::SetFlag = 0x8001871c; // type:func rom:0x1931c
Actor::UnsetFlag = 0x8001872c; // type:func rom:0x1932c
Actor::DeathFlag = 0x800187c4; // type:func rom:0x193c4
AttachItemToPlayer = 0x80018890; // type:func rom:0x19490
FreeAttachmentFromPlayer = 0x80018944; // type:func rom:0x19544
ChangeAttachmentNode = 0x800189b4; // type:func rom:0x195b4
camera_control_update_ = 0x80018ca0; // type:func rom:0x198a0
setCombatCameraMode = 0x80018d60; // type:func rom:0x19960
Actor::Move = 0x80018da4; // type:func rom:0x199a4
Actor::MemsetController = 0x800193e4; // type:func rom:0x19fe4
Actor::ClearInput = 0x80019404; // type:func rom:0x1a004
Actor::setMoveBasedOnCamera = 0x80019430; // type:func rom:0x1a030
Actor::SetControllerWalk = 0x8001950c; // type:func rom:0x1a10c
Actor::SetControllerRun = 0x80019564; // type:func rom:0x1a164
Actor::ClearInputMoveFlags = 0x800195bc; // type:func rom:0x1a1bc
Actor::SetAiDest = 0x800195f8; // type:func rom:0x1a1f8
SetPlayerMoveToQueue = 0x8001969c; // type:func rom:0x1a29c
Actor::ResetMoveQueue = 0x80019730; // type:func rom:0x1a330
Actor::SetFacing = 0x800197f0; // type:func rom:0x1a3f0
Actor::MoveTo = 0x800198a8; // type:func rom:0x1a4a8
Actor::MoveNearShadow = 0x80019ab4; // type:func rom:0x1a6b4
Actor::UnsetFlag4 = 0x80019aec; // type:func rom:0x1a6ec
debug_sub_3 = 0x80019bc8; // type:func rom:0x1a7c8
set_camera_voxel_pointer = 0x80019c50; // type:func rom:0x1a850
clear_camera_voxel_pointer = 0x80019c7c; // type:func rom:0x1a87c
passto_camera_init = 0x80019c98; // type:func rom:0x1a898
clear_some_playerHandler_field = 0x80019cbc; // type:func rom:0x1a8bc
GiveCameraToPlayer = 0x80019d10; // type:func rom:0x1a910
Camera::ApplyVelocity = 0x80019db4; // type:func rom:0x1a9b4
Camera::AddPosToList = 0x80019ed8; // type:func rom:0x1aad8
Camera::CopyPosAim = 0x80019f00; // type:func rom:0x1ab00
copy_to_aim_or_pos = 0x80019f60; // type:func rom:0x1ab60
processVoxelCamera = 0x80019fc0; // type:func rom:0x1abc0
InitScriptCameras = 0x8001a6b4; // type:func rom:0x1b2b4
freeScriptCameras = 0x8001a790; // type:func rom:0x1b390
AllocScriptCamera = 0x8001a838; // type:func rom:0x1b438
ProcessScriptCamera = 0x8001a99c; // type:func rom:0x1b59c
chest_explode_particles = 0x8001ab70; // type:func rom:0x1b770
alloc_explosion_light = 0x8001b468; // type:func rom:0x1c068
UNK_NOOP = 0x8001b87c; // type:func rom:0x1c47c
set_ranger_float = 0x8001b990; // type:func rom:0x1c590
set_refObj_flag = 0x8001ba58; // type:func rom:0x1c658
VoxelObjects_Activate = 0x8001ba84; // type:func rom:0x1c684
set_voxel_visibility = 0x8001bc6c; // type:func rom:0x1c86c
SaveEntity::Init = 0x8001bc90; // type:func rom:0x1c890
SaveEntity::Free = 0x8001bcd0; // type:func rom:0x1c8d0
SaveEntity::BenchParty = 0x8001bd7c; // type:func rom:0x1c97c
SaveEntity::GetMember = 0x8001be90; // type:func rom:0x1ca90
SaveEntity::EraseEntry = 0x8001bec8; // type:func rom:0x1cac8
SaveEntity::LoadMember = 0x8001bf40; // type:func rom:0x1cb40
SaveEntity::EraseEntityOfID = 0x8001bf8c; // type:func rom:0x1cb8c
SaveEntity::CopyMember = 0x8001c004; // type:func rom:0x1cc04
SaveEntity::InitEntity = 0x8001c05c; // type:func rom:0x1cc5c
SaveEntity::TransferArmor = 0x8001c0b0; // type:func rom:0x1ccb0
SaveEntity::TransferWeapons = 0x8001c198; // type:func rom:0x1cd98
SaveEntity::TransferGear = 0x8001c250; // type:func rom:0x1ce50
SaveEntity::TransferSpells = 0x8001c354; // type:func rom:0x1cf54
Entity::Copy = 0x8001c45c; // type:func rom:0x1d05c
SaveEntity::BenchInSlot = 0x8001c52c; // type:func rom:0x1d12c
SaveEntity::GetSlot = 0x8001c5bc; // type:func rom:0x1d1bc
SaveEntity::NOOP = 0x8001c634; // type:func rom:0x1d234
SaveParty::SavePotionEffect = 0x8001c640; // type:func rom:0x1d240
SaveParty::LoadPotionEffect = 0x8001c6ac; // type:func rom:0x1d2ac
SaveParty::SaveSpellEffect = 0x8001c730; // type:func rom:0x1d330
SaveParty::LoadSpellEffect = 0x8001c7c4; // type:func rom:0x1d3c4
SaveParty::SaveStatMod = 0x8001c8b4; // type:func rom:0x1d4b4
SaveParty::LoadStatMod = 0x8001c908; // type:func rom:0x1d508
SaveParty::SaveItem = 0x8001c980; // type:func rom:0x1d580
SaveParty::LoadItem = 0x8001ca00; // type:func rom:0x1d600
SaveParty::SaveCharEXP = 0x8001cab0; // type:func rom:0x1d6b0
SaveParty::LoadCharEXP = 0x8001cb10; // type:func rom:0x1d710
SaveParty::SaveCharStats = 0x8001cb88; // type:func rom:0x1d788
SaveParty::LoadCharStats = 0x8001cbc0; // type:func rom:0x1d7c0
SaveParty::SaveSpell = 0x8001cbfc; // type:func rom:0x1d7fc
SaveParty::LoadSpell = 0x8001ccfc; // type:func rom:0x1d8fc
SaveParty::SaveSpellsFromSchool = 0x8001cdd4; // type:func rom:0x1d9d4
SaveParty::LoadSpellsFromSchool = 0x8001ce70; // type:func rom:0x1da70
SaveParty::SaveInGameTime = 0x8001cf0c; // type:func rom:0x1db0c
SaveParty::LoadInGameTime = 0x8001cf4c; // type:func rom:0x1db4c
SaveParty::SaveGold = 0x8001cf78; // type:func rom:0x1db78
SaveParty::LoadGold = 0x8001cfa0; // type:func rom:0x1dba0
SaveParty::SaveTimer = 0x8001cfbc; // type:func rom:0x1dbbc
SaveParty::LoadTimer = 0x8001cff0; // type:func rom:0x1dbf0
SaveParty::SaveAlaron = 0x8001d038; // type:func rom:0x1dc38
SaveParty::LoadAlaron = 0x8001d0fc; // type:func rom:0x1dcfc
SaveParty::SaveCharSheet = 0x8001d19c; // type:func rom:0x1dd9c
SaveParty::LoadCharSheet = 0x8001d29c; // type:func rom:0x1de9c
SaveParty::SaveCharSheetEffects = 0x8001d3bc; // type:func rom:0x1dfbc
SaveParty::LoadCharSheetEffects = 0x8001d4a8; // type:func rom:0x1e0a8
SaveParty::LoadShield = 0x8001d590; // type:func rom:0x1e190
SaveParty::LoadWeapon = 0x8001d638; // type:func rom:0x1e238
SaveParty::LoadArmor = 0x8001d6d8; // type:func rom:0x1e2d8
SaveParty::LoadGear = 0x8001d780; // type:func rom:0x1e380
QuestData::Save = 0x8001d820; // type:func rom:0x1e420
QuestData::Load = 0x8001db2c; // type:func rom:0x1e72c
QuestData::SaveVoxelChart = 0x8001ddfc; // type:func rom:0x1e9fc
QuestData::LoadVoxelChart = 0x8001de70; // type:func rom:0x1ea70
QuestData::VerifyChecksum = 0x8001dee4; // type:func rom:0x1eae4
QuestData::CopySnapshot = 0x8001df00; // type:func rom:0x1eb00
QuestData::SaveItemID = 0x8001df28; // type:func rom:0x1eb28
SavePartyPlaytime = 0x8001df40; // type:func rom:0x1eb40
CopyEngineZone = 0x8001dfe0; // type:func rom:0x1ebe0
SaveData::Save = 0x8001e034; // type:func rom:0x1ec34
SaveDatStruct_Save = 0x8001e09c; // type:func rom:0x1ec9c
SaveData::SetPointers = 0x8001e0f8; // type:func rom:0x1ecf8
MemoryMaker::setPointers = 0x8001e134; // type:func rom:0x1ed34
SaveData::Load = 0x8001e168; // type:func rom:0x1ed68
SaveDatStruct_Load = 0x8001e21c; // type:func rom:0x1ee1c
QuestData::TakeSnapshot = 0x8001e248; // type:func rom:0x1ee48
QuestData::FreeSnapshot = 0x8001e458; // type:func rom:0x1f058
QuestData::Teleport = 0x8001e494; // type:func rom:0x1f094
QuestData::SetWeather = 0x8001e500; // type:func rom:0x1f100
display_debug_stats = 0x8001e7a0; // type:func rom:0x1f3a0
appInit = 0x8001ec1c; // type:func rom:0x1f81c
appProc_init = 0x8001f088; // type:func rom:0x1fc88
appProc_caseSwitch = 0x8001f23c; // type:func rom:0x1fe3c
clear_audio_video = 0x8001f358; // type:func rom:0x1ff58
load_intro_music = 0x8001f4f0; // type:func rom:0x200f0
noop_intromusic = 0x8001f680; // type:func rom:0x20280
TitleSplash::ShowVerion = 0x8001f690; // type:func rom:0x20290
TitleSplash::Noop = 0x8001f750; // type:func rom:0x20350
TitleSplash::Timer = 0x8001f758; // type:func rom:0x20358
TitleSplash::Init = 0x8001f85c; // type:func rom:0x2045c
TitleSplash::N64Free = 0x8001f974; // type:func rom:0x20574
TitleSplash::Load = 0x8001f9e0; // type:func rom:0x205e0
TitleSplash::Free = 0x8001fac8; // type:func rom:0x206c8
TitleSplash::Show = 0x8001fb4c; // type:func rom:0x2074c
TitleSplash::Borg8 = 0x8001fcb0; // type:func rom:0x208b0
TitleSplash::Println = 0x8001fe60; // type:func rom:0x20a60
Sky::ResetSubstruct = 0x80020660; // type:func rom:0x21260
Sky::FreeSubstruct = 0x80020670; // type:func rom:0x21270
loadDay = 0x800206ac; // type:func rom:0x212ac
Sky::AllocGradient = 0x80020790; // type:func rom:0x21390
Sky::Free = 0x800207e0; // type:func rom:0x213e0
Sky::Reset = 0x80020830; // type:func rom:0x21430
Sky::GenerateGradient = 0x800208b8; // type:func rom:0x214b8
Sky::GenerateSky = 0x8002126c; // type:func rom:0x21e6c
Sky::SetColors = 0x800215a0; // type:func rom:0x221a0
Sky::RenderGradient = 0x80021e60; // type:func rom:0x22a60
Sky::RenderSky = 0x80021f00; // type:func rom:0x22b00
set_two_SkyStruct_floats = 0x800225d8; // type:func rom:0x231d8
SetBackgroundType = 0x800225f8; // type:func rom:0x231f8
Sky::ClearColors = 0x80022778; // type:func rom:0x23378
Sky::ResetColors = 0x80022790; // type:func rom:0x23390
Weather::Init = 0x800227c0; // type:func rom:0x233c0
Weather::Free = 0x800227e0; // type:func rom:0x233e0
Align_Particle = 0x800227fc; // type:func rom:0x233fc
Weather::RemoveSFX = 0x80022f20; // type:func rom:0x23b20
Weather::ProcessWeather = 0x80022f70; // type:func rom:0x23b70
init_DBs = 0x80023630; // type:func rom:0x24230
clear_DBs = 0x800238a8; // type:func rom:0x244a8
Gameover_func = 0x80024060; // type:func rom:0x24c60
Event_flag_stat = 0x800241f0; // type:func rom:0x24df0
event_flag_skill_ = 0x80024308; // type:func rom:0x24f08
set_flag_array = 0x80024410; // type:func rom:0x25010
find_event_flag_array_index = 0x80024494; // type:func rom:0x25094
load_gamestateFunnel = 0x800244d8; // type:func rom:0x250d8
clear_gamestatefunnel = 0x80024564; // type:func rom:0x25164
getEventFlag = 0x800245a0; // type:func rom:0x251a0
Get_eventFlagCheck = 0x800245e8; // type:func rom:0x251e8
setEventFlag = 0x80024634; // type:func rom:0x25234
SetFlagArray_on_Time = 0x80024678; // type:func rom:0x25278
set_weather_flags = 0x80024728; // type:func rom:0x25328
set_terrain_flags = 0x8002474c; // type:func rom:0x2534c
Passto_State_typeA_branch = 0x80024770; // type:func rom:0x25370
state_TypeA_LOG = 0x800247a8; // type:func rom:0x253a8
state_typeA_VAL = 0x800248bc; // type:func rom:0x254bc
State_TypeA_CNT = 0x800249dc; // type:func rom:0x255dc
StateTypeA_branch = 0x80024b58; // type:func rom:0x25758
check_some_toggle = 0x80024c40; // type:func rom:0x25840
isPaused = 0x80025388; // type:func rom:0x25f88
player_control_func = 0x80025428; // type:func rom:0x26028
GetSnapshot_ = 0x80025744; // type:func rom:0x26344
some_flycam_dat_func = 0x80025858; // type:func rom:0x26458
draw_hud_elements = 0x80025a68; // type:func rom:0x26668
zoneEngine_debug = 0x80025b48; // type:func rom:0x26748
TickGameTime = 0x80025bac; // type:func rom:0x267ac
func_calling_orphaned_dat = 0x80025c50; // type:func rom:0x26850
tick_trek_features = 0x80025ca4; // type:func rom:0x268a4
SetNewJounalEntry = 0x80025d94; // type:func rom:0x26994
NewJournalEntryPopup = 0x80025da0; // type:func rom:0x269a0
initGameTrek = 0x80025e30; // type:func rom:0x26a30
clear_HUD_elements = 0x8002609c; // type:func rom:0x26c9c
smaller_debug_menu = 0x800266c0; // type:func rom:0x272c0
debug_combat_options = 0x8002699c; // type:func rom:0x2759c
create_enemy_list = 0x80026ba0; // type:func rom:0x277a0
prepare_singe_enemy = 0x80026e54; // type:func rom:0x27a54
choose_combat_arena = 0x80026f54; // type:func rom:0x27b54
set_debug_combat_battlefeild = 0x800271b8; // type:func rom:0x27db8
change_actor_menu = 0x800272b8; // type:func rom:0x27eb8
debug_change_form = 0x80027570; // type:func rom:0x28170
debug_teleport = 0x800278c8; // type:func rom:0x284c8
Combat_SetHideMarkers = 0x800279e0; // type:func rom:0x285e0
Set_keelover_aniType = 0x800279ec; // type:func rom:0x285ec
Print_damage_healing = 0x80027a04; // type:func rom:0x28604
Combat::Render = 0x80027d0c; // type:func rom:0x2890c
func_keel_over_after_ambush = 0x800280d8; // type:func rom:0x28cd8
some_death_func_B = 0x80028414; // type:func rom:0x29014
fleeing_reinforcements_func = 0x8002927c; // type:func rom:0x29e7c
combat_start_turn_ = 0x8002942c; // type:func rom:0x2a02c
init_combat_struct = 0x800294ac; // type:func rom:0x2a0ac
clear_combat_func = 0x800297f0; // type:func rom:0x2a3f0
refersh_terrain_check_anidat_alaronMerge = 0x80029af0; // type:func rom:0x2a6f0
gamecombat_weapon_func = 0x80029bc4; // type:func rom:0x2a7c4
random_enemy_generator = 0x80029f40; // type:func rom:0x2ab40
clear_alaron_shadow_indices = 0x8002a03c; // type:func rom:0x2ac3c
alaron_shadow_merge_attempt = 0x8002a054; // type:func rom:0x2ac54
shadow_merge_cinematic = 0x8002a154; // type:func rom:0x2ad54
merge_no_horn = 0x8002a184; // type:func rom:0x2ad84
set_shadow_index = 0x8002a23c; // type:func rom:0x2ae3c
set_alaron_index = 0x8002a248; // type:func rom:0x2ae48
clear_shadow_index = 0x8002a254; // type:func rom:0x2ae54
clear_alaron_index = 0x8002a264; // type:func rom:0x2ae64
HasHornOfKynon = 0x8002a274; // type:func rom:0x2ae74
shadow_combat_func = 0x8002a2a0; // type:func rom:0x2aea0
CombatEntity::IsInRange = 0x8002a514; // type:func rom:0x2b114
CombatEntity::IsShadowNearAnyone = 0x8002a66c; // type:func rom:0x2b26c
CombatEntity::IsNearShadow = 0x8002a704; // type:func rom:0x2b304
combat_func_if_alaron_dead = 0x8002a768; // type:func rom:0x2b368
combat_byte_0xd = 0x8002a7a0; // type:func rom:0x2b3a0
combat_byte_0x1a = 0x8002a7bc; // type:func rom:0x2b3bc
set_combat_byte_to_0x1c = 0x8002a7e4; // type:func rom:0x2b3e4
Compass::Init = 0x8002a800; // type:func rom:0x2b400
Compass::Draw = 0x8002a888; // type:func rom:0x2b488
Compass::Free = 0x8002aec8; // type:func rom:0x2bac8
Sundail::Init = 0x8002af90; // type:func rom:0x2bb90
Sundial::Draw = 0x8002b074; // type:func rom:0x2bc74
Sundial::ToggleSun = 0x8002bc84; // type:func rom:0x2c884
Sundial::ToggleMoon = 0x8002bc98; // type:func rom:0x2c898
Sundial::Free = 0x8002bcac; // type:func rom:0x2c8ac
Portrait::InitBorder = 0x8002be10; // type:func rom:0x2ca10
Portraits::Draw = 0x8002be6c; // type:func rom:0x2ca6c
Portraits::BlendColors = 0x8002bed0; // type:func rom:0x2cad0
Portraits::DrawParty = 0x8002c00c; // type:func rom:0x2cc0c
Portraits::FreeBorder = 0x8002c434; // type:func rom:0x2d034
BorgMaps::GetMapTerrain = 0x8002c470; // type:func rom:0x2d070
BorgMaps::ClearMapIndecies = 0x8002c5c8; // type:func rom:0x2d1c8
BorgMaps::GetMapList = 0x8002c82c; // type:func rom:0x2d42c
BorgMaps::LoadMap = 0x8002ca5c; // type:func rom:0x2d65c
MemoryMaker::Init = 0x8002d710; // type:func rom:0x2e310
MemoryMaker::Unload = 0x8002d798; // type:func rom:0x2e398
MemoryMaker::Reload = 0x8002d828; // type:func rom:0x2e428
N64Print::Toggle = 0x8002d8f0; // type:func rom:0x2e4f0
N64Print::Clear = 0x8002d974; // type:func rom:0x2e574
N64Print::Init = 0x8002d9b0; // type:func rom:0x2e5b0
N64Print::Free = 0x8002da10; // type:func rom:0x2e610
N64Print::CleanText = 0x8002da58; // type:func rom:0x2e658
N64Print::Print = 0x8002dae0; // type:func rom:0x2e6e0
N64Print::Draw = 0x8002dc0c; // type:func rom:0x2e80c
lensflare::Init = 0x8002de10; // type:func rom:0x2ea10
lensflare::Free = 0x8002df10; // type:func rom:0x2eb10
lensflare::Render = 0x8002dfa4; // type:func rom:0x2eba4
Clouds::Init = 0x8002e380; // type:func rom:0x2ef80
Clouds::Free = 0x8002e58c; // type:func rom:0x2f18c
Clouds::Draw = 0x8002e644; // type:func rom:0x2f244
Clouds::CalcWind = 0x8002ea14; // type:func rom:0x2f614
WidgetCombatScrollMenu::WidgetCombatScrollMenu = 0x8002ec38; // type:func rom:0x2f838
WidgetScrollMenuGray::WidgetScrollMenuGray = 0x8002f310; // type:func rom:0x2ff10
WidgetScrollMenuGray::SetChoice = 0x8002f500; // type:func rom:0x30100
WidgetFastScrollMenu::WidgetFastScrollMenu = 0x8002f840; // type:func rom:0x30440
WidgetFastScrollMenu::Additem = 0x80030100; // type:func rom:0x30d00
WidgetFastScrollMenu::SetSubstructColors = 0x80030280; // type:func rom:0x30e80
WidgetChild9::WidgetChild9 = 0x80030300; // type:func rom:0x30f00
Skyobjects::Init = 0x800303f0; // type:func rom:0x30ff0
Skyobjects::Free = 0x800306b4; // type:func rom:0x312b4
Skyobjects::RenderClouds = 0x80030774; // type:func rom:0x31374
update_sun_moon = 0x80030e94; // type:func rom:0x31a94
set_sun_coords = 0x80030f30; // type:func rom:0x31b30
draw_moon_phase = 0x800310a0; // type:func rom:0x31ca0
lockpicking_check = 0x80031320; // type:func rom:0x31f20
WidgetBufferedMenu::WidgetBufferedMenu = 0x80031440; // type:func rom:0x32040
WidgetBufferedMenu::~WidgetBufferedMenu = 0x80031730; // type:func rom:0x32330
WidgetGroup::WidgetGroup = 0x80032140; // type:func rom:0x32d40
WidgetGroup::AddToGroup = 0x80032698; // type:func rom:0x33298
WidgetMenuChild::WidgetMenuChild = 0x8003289c; // type:func rom:0x3349c
WidgetMenuChild::FreeMenu = 0x80032b7c; // type:func rom:0x3377c
gamestate_cheat_check1 = 0x80033114; // type:func rom:0x33d14
gamestate_cheat_check2 = 0x80033140; // type:func rom:0x33d40
WidgetGamestateCheats = 0x800331a8; // type:func rom:0x33da8
WidgetCredits::WidgetCredits = 0x80033650; // type:func rom:0x34250
InputMenu::InputMenu = 0x800343f0; // type:func rom:0x34ff0
InputMenu::InitMenu = 0x800344b4; // type:func rom:0x350b4
InputMenu::SetCurrentName = 0x80034878; // type:func rom:0x35478
PauseWidget::PauseWidget = 0x80035a50; // type:func rom:0x36650
PauseWidget::BigAssMenu = 0x80035b38; // type:func rom:0x36738
PauseWidget::bigAssOpenCallback_2 = 0x80035fdc; // type:func rom:0x36bdc
PauseWidget::InitOptionsMenu = 0x80036134; // type:func rom:0x36d34
PauseWiodget::BuildDollMenu = 0x80036208; // type:func rom:0x36e08
calender_menu = 0x800362c4; // type:func rom:0x36ec4
WidgetDollMenu::WidgetDollMenu = 0x80037650; // type:func rom:0x38250
WidgetDollMenu::InitMenu = 0x800376d0; // type:func rom:0x382d0
WidgetTrainShop::WidgetTrainShop = 0x80037d10; // type:func rom:0x38910
WidgetTrainShop::Tick = 0x80037ec8; // type:func rom:0x38ac8
make_upDown_arrows = 0x8003802c; // type:func rom:0x38c2c
WidgetChild4::WidgetChild4 = 0x80038140; // type:func rom:0x38d40
WidgetChild4::InitMenu = 0x80038290; // type:func rom:0x38e90
WidgetChild4::ShowEXPCosts = 0x80038e20; // type:func rom:0x39a20
WidgetMenuSpells::WidgetMenuSpells = 0x80039150; // type:func rom:0x39d50
WidgetMenuSpells::InitMenu = 0x8003924c; // type:func rom:0x39e4c
WidgetItemDetail::AddLeftText = 0x80039f54; // type:func rom:0x3ab54
WidgetItemDetail::AddRightText = 0x80039ff0; // type:func rom:0x3abf0
itemdetail_potion_other = 0x8003a0a4; // type:func rom:0x3aca4
itemdetail_spells = 0x8003a55c; // type:func rom:0x3b15c
itemdetail_stats = 0x8003aae8; // type:func rom:0x3b6e8
itemdetail = 0x8003abe4; // type:func rom:0x3b7e4
WidgetMenuPopup = 0x8003ade4; // type:func rom:0x3b9e4
WidgetItemDetail::SidePopup = 0x8003af00; // type:func rom:0x3bb00
WidgetItemDetail::PrintNameIcon = 0x8003af2c; // type:func rom:0x3bb2c
WidgetItemDetail::PrintWeaponType = 0x8003b0a4; // type:func rom:0x3bca4
WidgetItemDetail::PrintAspect = 0x8003b10c; // type:func rom:0x3bd0c
WidgetItemDetail::PrintStrReq = 0x8003b1e4; // type:func rom:0x3bde4
WidgetItemDetail::PrintBaseHit = 0x8003b264; // type:func rom:0x3be64
WidgetItemDetail::PrintDamage = 0x8003b2e0; // type:func rom:0x3bee0
WidgetItemDetail::PrintStatMod = 0x8003b35c; // type:func rom:0x3bf5c
WidgetItemDetail::PrintSkillInfo = 0x8003b434; // type:func rom:0x3c034
WidgetItemDetail::PrintMagicInfo = 0x8003b4dc; // type:func rom:0x3c0dc
WidgetItemDetail::PrintEnchantment = 0x8003b5b4; // type:func rom:0x3c1b4
WidgetItemDetail::PrintResistance = 0x8003b668; // type:func rom:0x3c268
weapon_info = 0x8003b770; // type:func rom:0x3c370
armor_info = 0x8003b890; // type:func rom:0x3c490
itemDetail_Gear = 0x8003bf74; // type:func rom:0x3cb74
WidgetMenuPrompt::WidgetMenuPrompt = 0x8003c3e0; // type:func rom:0x3cfe0
WidgetMenuPrompt::Close = 0x8003c54c; // type:func rom:0x3d14c
WidgetInvShop::WidgetInvShop = 0x8003c838; // type:func rom:0x3d438
WidgetInvShop::InitMenu = 0x8003c974; // type:func rom:0x3d574
WidgetInvShop::Tick = 0x8003cecc; // type:func rom:0x3dacc
SMI::AddItem = 0x8003d378; // type:func rom:0x3df78
quicksort_call_1 = 0x8003d5dc; // type:func rom:0x3e1dc
SMIItem::SMIItem = 0x8003e160; // type:func rom:0x3ed60
WidgetSkillInfo = 0x8003e640; // type:func rom:0x3f240
get_crafting_menu = 0x8003ec5c; // type:func rom:0x3f85c
WidgetSkillTrain::WidgetSkillTrain = 0x8003ed50; // type:func rom:0x3f950
WidgetSkillTrain::InitMenu = 0x8003ee10; // type:func rom:0x3fa10
WidgetSpellEntry::WidgetSpellEntry = 0x8003fe90; // type:func rom:0x40a90
WidgetSpellTrain::WidgetSpellTrain = 0x80040310; // type:func rom:0x40f10
WidgetSpellTrain::InitMenu = 0x80040400; // type:func rom:0x41000
shopkeepNotOriana = 0x800409f0; // type:func rom:0x415f0
SMStatItem::SMStatItem = 0x80041390; // type:func rom:0x41f90
WidgetStatTrain::WidgetStatTrain = 0x80041820; // type:func rom:0x42420
WidgetStatTrain::InitMenu = 0x80041a40; // type:func rom:0x42640
WidgetMenuChild2::WidgetMenuChild2 = 0x80042590; // type:func rom:0x43190
func_getting_aspect_school_icons = 0x80042c0c; // type:func rom:0x4380c
WidgetHealthGold::WidgetHealthGold = 0x80043360; // type:func rom:0x43f60
WidgetHealthGold::Update = 0x8004369c; // type:func rom:0x4429c
DollBarterConfirm::DollBarterConfirm = 0x80043c64; // type:func rom:0x44864
WidgetBarter::WidgetBarter = 0x800443e8; // type:func rom:0x44fe8
WidgetBarter::UpdateGoldText = 0x80044864; // type:func rom:0x45464
DollEquipmentMenu::DollEquipmentMenu = 0x80045ab0; // type:func rom:0x466b0
DollEquipmentMenu::GetSlotIcons = 0x80045c04; // type:func rom:0x46804
DollEquipmentMenu::GetSlotIcon = 0x80045c80; // type:func rom:0x46880
DollEquipmentMenu::GetEntityItemId = 0x80045ec8; // type:func rom:0x46ac8
DollEquipmentMenu::SetSlotCoords = 0x8004607c; // type:func rom:0x46c7c
Cheats::check_for_cheats = 0x800461e0; // type:func rom:0x46de0
Cheats::fatboy_crawdaddy_tweety = 0x8004660c; // type:func rom:0x4720c
WidgetOptionsMenu::WidgetOptionsMenu = 0x80046c90; // type:func rom:0x47890
WidgetOptionsMenu::InitMenu = 0x80046e04; // type:func rom:0x47a04
WidgetOptionsMenu::MakeScrollList = 0x80047134; // type:func rom:0x47d34
WidgetOptionsMenu::InitConfigMenu = 0x800475cc; // type:func rom:0x481cc
pausemenu_contpakdata = 0x80047954; // type:func rom:0x48554
WidgetCalendar::WidgetCalendar = 0x80047e80; // type:func rom:0x48a80
WidgetCalendar::Init = 0x80047f1c; // type:func rom:0x48b1c
WidgetOptionsConfig::WidgetOptionsConfig = 0x800489f0; // type:func rom:0x495f0
build_options_menu = 0x80048b04; // type:func rom:0x49704
selectResMode = 0x80049940; // type:func rom:0x4a540
Options_RenameMenu = 0x800499c4; // type:func rom:0x4a5c4
IntroMenu::IntroMenu = 0x8004a050; // type:func rom:0x4ac50
IntroMenu::InitMenu = 0x8004a258; // type:func rom:0x4ae58
IntroMenu::BlinkTimer = 0x8004a6fc; // type:func rom:0x4b2fc
IntroMenu::ShadowBG = 0x8004a750; // type:func rom:0x4b350
IntroMenu::InitTitleCard = 0x8004ab54; // type:func rom:0x4b754
IntroMenu::ShowStartGameMenu = 0x8004ae38; // type:func rom:0x4ba38
IntroMenu::InitOptionsMenu = 0x8004af68; // type:func rom:0x4bb68
IntroMenu::NamePlayer = 0x8004b098; // type:func rom:0x4bc98
IntroMenu::StartGameMenu = 0x8004b388; // type:func rom:0x4bf88
TheatreMenu::TheatreMenu = 0x8004bd10; // type:func rom:0x4c910
TheatreMenu::InitMenu = 0x8004bda4; // type:func rom:0x4c9a4
TheatreMenu::AddAvailableCinematics = 0x8004c064; // type:func rom:0x4cc64
TheatreMenu::LoadOptionStrings = 0x8004c148; // type:func rom:0x4cd48
TextPopup_New = 0x8004c5d0; // type:func rom:0x4d1d0
some_textbox_func = 0x8004c784; // type:func rom:0x4d384
GetItemImage = 0x8004c860; // type:func rom:0x4d460
getAspectIcon = 0x8004c970; // type:func rom:0x4d570
getSchoolIcon = 0x8004c9d8; // type:func rom:0x4d5d8
GetSpellIcon = 0x8004ca40; // type:func rom:0x4d640
GetSpellIcons = 0x8004cad0; // type:func rom:0x4d6d0
GetSkillIcons = 0x8004cbbc; // type:func rom:0x4d7bc
WidgetBorg8At = 0x8004cd24; // type:func rom:0x4d924
free_borg8_widget = 0x8004cf94; // type:func rom:0x4db94
WidgetChild8::WidgetChild8 = 0x8004d184; // type:func rom:0x4dd84
WidgetCombatActions::WidgetCombatActions = 0x8004d484; // type:func rom:0x4e084
WidgetCombatActions::~WidgetCombatActions = 0x8004d5ec; // type:func rom:0x4e1ec
WidgetChild8::AppendScrollMenu = 0x8004d898; // type:func rom:0x4e498
ofunc_sub_8004dc98 = 0x8004dc98; // type:func rom:0x4e898
superMenuClasses_init = 0x8004e100; // type:func rom:0x4ed00
set_superMenuClasses = 0x8004e168; // type:func rom:0x4ed68
supermenuclasses_free = 0x8004e184; // type:func rom:0x4ed84
supermenuclasses_func = 0x8004e214; // type:func rom:0x4ee14
Init_DialogStruct = 0x8004e984; // type:func rom:0x4f584
StartDialoug = 0x8004e9ac; // type:func rom:0x4f5ac
big_text_bg_func = 0x8004eb74; // type:func rom:0x4f774
Dialoug_Setup8004ecc8 = 0x8004ecc8; // type:func rom:0x4f8c8
ofunc_sub_dialouge = 0x8004fa74; // type:func rom:0x50674
look_for_dialouge_v_Num = 0x8004fa7c; // type:func rom:0x5067c
set_screenshot_tint = 0x8004fecc; // type:func rom:0x50acc
func_clearing_shopkeep = 0x800507d8; // type:func rom:0x513d8
WidgetBarter::setGlobalsPointer = 0x80050990; // type:func rom:0x51590
passto_getSnapshot = 0x800509ec; // type:func rom:0x515ec
set_shopkeep_skills = 0x80050a08; // type:func rom:0x51608
build_loot_menu = 0x80050a48; // type:func rom:0x51648
WidgetMenuWorldMap::ShowMap = 0x80050ad0; // type:func rom:0x516d0
WidgetMenuWorldMap::Init = 0x80050c84; // type:func rom:0x51884
WidgetMenuWorldMap::FreePieces = 0x80050dd0; // type:func rom:0x519d0
set_map_event_flag = 0x8005105c; // type:func rom:0x51c5c
MiniMap::Save = 0x800511b0; // type:func rom:0x51db0
MiniMap::Load = 0x800512b8; // type:func rom:0x51eb8
MiniMap::Init = 0x800513b4; // type:func rom:0x51fb4
MiniMap::Free2 = 0x80051438; // type:func rom:0x52038
MiniMap::Free = 0x800517f0; // type:func rom:0x523f0
MiniMap::SpecialSections = 0x800518fc; // type:func rom:0x524fc
Minimap::Render = 0x80052764; // type:func rom:0x53364
MiniMap::UpdateSection = 0x8005295c; // type:func rom:0x5355c
minimap_struct_queue_free = 0x80052f80; // type:func rom:0x53b80
MiniMap::ToggleShowAll = 0x80053028; // type:func rom:0x53c28
MiniMap::ShowAll = 0x80053088; // type:func rom:0x53c88
MiniMap::Toggle = 0x80053140; // type:func rom:0x53d40
process_minimap_dats_2 = 0x800538c4; // type:func rom:0x544c4
PlaneObj_SetupGfx = 0x80053da0; // type:func rom:0x549a0
PlaneObj_GetTexture = 0x80053e88; // type:func rom:0x54a88
PlaneObj_Render = 0x80053ef4; // type:func rom:0x54af4
InitLight_ = 0x800548d0; // type:func rom:0x554d0
color_magnitude = 0x800549dc; // type:func rom:0x555dc
color_XOR = 0x80054bd0; // type:func rom:0x557d0
tint_color_with_screenfade = 0x80054c74; // type:func rom:0x55874
light_init_func = 0x800552dc; // type:func rom:0x55edc
passto_initLight = 0x80055414; // type:func rom:0x56014
passto_InitLight_2 = 0x80055444; // type:func rom:0x56044
init_dynamic_light = 0x80055484; // type:func rom:0x56084
dynamic_lights_free_all = 0x80055504; // type:func rom:0x56104
AllocDynamicLight = 0x80055580; // type:func rom:0x56180
FreeDynamicLight = 0x80055654; // type:func rom:0x56254
adjust_soundstruct_vec3 = 0x800557d0; // type:func rom:0x563d0
set_SFX_ZoneDatByte = 0x80055828; // type:func rom:0x56428
SoundStructA_get_borg12 = 0x800558d8; // type:func rom:0x564d8
ClearAudioBubble = 0x80055914; // type:func rom:0x56514
init_sfx_struct = 0x80055988; // type:func rom:0x56588
SoundStructA_remove = 0x80055a84; // type:func rom:0x56684
soundStructA_set = 0x80055af8; // type:func rom:0x566f8
PlayAudioSound = 0x80055bd0; // type:func rom:0x567d0
FreeAudioSound = 0x80055d14; // type:func rom:0x56914
clear_sfx_substruct_2 = 0x80055da0; // type:func rom:0x569a0
play_sfx_before_delete = 0x80055e68; // type:func rom:0x56a68
get_audio_substruct_2_by_index = 0x80055f54; // type:func rom:0x56b54
audio_ref_objs = 0x80056018; // type:func rom:0x56c18
clear_sfx_entries = 0x800561c4; // type:func rom:0x56dc4
sfx_struct_free = 0x80056278; // type:func rom:0x56e78
clear_sfx_on_map = 0x800562f0; // type:func rom:0x56ef0
renderAudioVoxel = 0x8005638c; // type:func rom:0x56f8c
Sound_Volume_proximity = 0x80056570; // type:func rom:0x57170
ProcessAudioBubbles = 0x8005672c; // type:func rom:0x5732c
Dialoug::GetActor = 0x80056b50; // type:func rom:0x57750
Dialoug::FreeActors = 0x80056bec; // type:func rom:0x577ec
DialoguePreCallback = 0x80056c84; // type:func rom:0x57884
Dialog::CallbackC = 0x800572d0; // type:func rom:0x57ed0
Dialoug::findPlayerNameSpace = 0x80057800; // type:func rom:0x58400
Dialoug::InsertPlayerName = 0x80057894; // type:func rom:0x58494
some_string_func = 0x80057950; // type:func rom:0x58550
tick_and_render_widgets = 0x80057a70; // type:func rom:0x58670
dialoug_func = 0x80057b40; // type:func rom:0x58740
run_dialougemode_funcs3 = 0x80057d90; // type:func rom:0x58990
run_dialougemode_funcs1 = 0x80058150; // type:func rom:0x58d50
run_dialougemode_funcs2 = 0x800581a8; // type:func rom:0x58da8
set_dialougemode_0x90 = 0x800583fc; // type:func rom:0x58ffc
monsterparty_wanderstruct = 0x800584d8; // type:func rom:0x590d8
some_debug_func_3 = 0x80058634; // type:func rom:0x59234
set_shopkeep = 0x8005866c; // type:func rom:0x5926c
ApplyStimulus = 0x80058c2c; // type:func rom:0x5982c
get_dialougemode_funcs = 0x80058cac; // type:func rom:0x598ac
NOOP_80058dc8 = 0x80058dc8; // type:func rom:0x599c8
get_some_borg13 = 0x80058dd0; // type:func rom:0x599d0
dialougmode_struct_init = 0x80058e00; // type:func rom:0x59a00
clear_borg13_pointer = 0x80058f34; // type:func rom:0x59b34
dialougmode_free = 0x80058f78; // type:func rom:0x59b78
cutScene_control_func = 0x80058ff8; // type:func rom:0x59bf8
run_dialougemode_funcs4 = 0x80059250; // type:func rom:0x59e50
run_dialougemode_funcs5 = 0x80059288; // type:func rom:0x59e88
DialogueModeInitPrescripted_set_map = 0x800596a8; // type:func rom:0x5a2a8
isDialougeMode = 0x80059de0; // type:func rom:0x5a9e0
build_camera_debug = 0x80059e10; // type:func rom:0x5aa10
WidgetCameraDebug::WidgetCameraDebug = 0x80059ea8; // type:func rom:0x5aaa8
textbox_showing_1 = 0x8005a66c; // type:func rom:0x5b26c
borg13_widget_get_actor_names = 0x8005a9e0; // type:func rom:0x5b5e0
some_char_to_int_parsing = 0x8005aea0; // type:func rom:0x5baa0
StringToFlag = 0x8005aed0; // type:func rom:0x5bad0
Journal::Journal = 0x8005af64; // type:func rom:0x5bb64
Journal::InitMenu = 0x8005afd8; // type:func rom:0x5bbd8
Journal::ShowTriggeredEntry = 0x8005b31c; // type:func rom:0x5bf1c
Journal::Load = 0x8005b3ec; // type:func rom:0x5bfec
load_audiokey = 0x8005be30; // type:func rom:0x5ca30
Audiokey_free = 0x8005bee8; // type:func rom:0x5cae8
player_audiokey = 0x8005c394; // type:func rom:0x5cf94
load_cinematic = 0x8005c6b0; // type:func rom:0x5d2b0
clear_cinematic_borgs = 0x8005c908; // type:func rom:0x5d508
cinematic_muteMusic_getName = 0x8005c9a4; // type:func rom:0x5d5a4
cinematic_case_switch = 0x8005ca50; // type:func rom:0x5d650
Cinematic::Control = 0x8005cb48; // type:func rom:0x5d748
cinematic_increment = 0x8005cbe4; // type:func rom:0x5d7e4
func_loading_cinematics = 0x8005cc9c; // type:func rom:0x5d89c
noop_8005cfac = 0x8005cfac; // type:func rom:0x5dbac
cinematicFade_init = 0x8005cfc0; // type:func rom:0x5dbc0
reset_scene_timers = 0x8005d024; // type:func rom:0x5dc24
cinematic_fade = 0x8005d040; // type:func rom:0x5dc40
CinematicText::Init = 0x8005d420; // type:func rom:0x5e020
CinematicTect::Free = 0x8005d504; // type:func rom:0x5e104
CinematicText::SetText = 0x8005d570; // type:func rom:0x5e170
dec_caption_timer = 0x8005d5d4; // type:func rom:0x5e1d4
NOOP_8005d704 = 0x8005d704; // type:func rom:0x5e304
Cinematic::StringEquals = 0x8005d70c; // type:func rom:0x5e30c
Cinematic::InsertPlayerName = 0x8005d740; // type:func rom:0x5e340
Cinematic::ReadyNextLine = 0x8005d7fc; // type:func rom:0x5e3fc
Cinematic::IncRuntime = 0x8005d8cc; // type:func rom:0x5e4cc
Cinematic::LoadNextLine = 0x8005d8e0; // type:func rom:0x5e4e0
cinematictext_func = 0x8005da0c; // type:func rom:0x5e60c
free_cinematictext_pointer_0x8 = 0x8005dab4; // type:func rom:0x5e6b4
cinematic_seqs = 0x8005daf4; // type:func rom:0x5e6f4
flycam_func = 0x8005dbc0; // type:func rom:0x5e7c0
set_title_screen = 0x8005dd54; // type:func rom:0x5e954
Flycam::Render = 0x8005ddc0; // type:func rom:0x5e9c0
check_input_7 = 0x8005e3b0; // type:func rom:0x5efb0
clear_flycam = 0x8005e4e0; // type:func rom:0x5f0e0
start_intermediate_game = 0x8005e560; // type:func rom:0x5f160
WidgetCinematicText::WigetCinematicText = 0x8005e670; // type:func rom:0x5f270
WidgetCinematicText::~WigetCinematicText = 0x8005e89c; // type:func rom:0x5f49c
WidgetCinematicText::SetText = 0x8005e8f0; // type:func rom:0x5f4f0
print_entity_name = 0x8005eb20; // type:func rom:0x5f720
WidgetDebugParty = 0x8005ebb0; // type:func rom:0x5f7b0
WidgetCrafting::WidgetCrafting = 0x8005edf8; // type:func rom:0x5f9f8
WidgetCrafting::BButton = 0x8005ef70; // type:func rom:0x5fb70
WidgetCrafting::TextPopup = 0x8005f034; // type:func rom:0x5fc34
TrapMenu::InitMenu = 0x8005f1c0; // type:func rom:0x5fdc0
TrapMenu::TrapDisarmed = 0x8005f420; // type:func rom:0x60020
TrapMenu::TrrapExploded = 0x8005f4c4; // type:func rom:0x600c4
TrapMenu::TakeDamage = 0x8005f590; // type:func rom:0x60190
TrapMenu::GetTrapLV = 0x8005f834; // type:func rom:0x60434
voxelChart_sub = 0x8005f890; // type:func rom:0x60490
memset_voxelChart = 0x8005f8c0; // type:func rom:0x604c0
WriteTo_VoxelChart = 0x8005f950; // type:func rom:0x60550
passto_WriteTo_VoxelChart = 0x8005fad0; // type:func rom:0x606d0
memset_voxelChart_entries = 0x8005fb10; // type:func rom:0x60710
some_monsterparty_checker = 0x8005fbd8; // type:func rom:0x607d8
some_ref_obj_lookup_func = 0x8005fcb8; // type:func rom:0x608b8
clear_VoxelChart_entry_Vobject = 0x8005fec0; // type:func rom:0x60ac0
NOOP_8005ff90 = 0x8005ff90; // type:func rom:0x60b90
Combat::WillTheyFlee = 0x8005ff98; // type:func rom:0x60b98
CombatEntity::JudgeAIMorale = 0x80060128; // type:func rom:0x60d28
CombatEntity::AiIsTiredOrLonely = 0x800603ac; // type:func rom:0x60fac
CombatAIInfo::DebateFleeing = 0x8006042c; // type:func rom:0x6102c
CombatAIInfo::IsNotDeadNorAlly = 0x800604fc; // type:func rom:0x610fc
CombatAIInfo::CanMoveToTarget = 0x80060570; // type:func rom:0x61170
CombatAIInfo::GetSpellPriority = 0x80060618; // type:func rom:0x61218
fireball_func = 0x80061188; // type:func rom:0x61d88
some_prioirty_getter = 0x8006130c; // type:func rom:0x61f0c
other_func_checking_fireball = 0x80061348; // type:func rom:0x61f48
ai_spell_stam = 0x80061730; // type:func rom:0x62330
combatAI_run_cmd = 0x800627a8; // type:func rom:0x633a8
CombatAIInfo::SwapWeapons = 0x800636e0; // type:func rom:0x642e0
CombatAIInfo::ShouldSwapWeapons = 0x800637a0; // type:func rom:0x643a0
combat_ai_shadow = 0x800638b4; // type:func rom:0x644b4
CombatAI::FindFleeingRefpoint = 0x80063fbc; // type:func rom:0x64bbc
CombatAI::GetFleePointCoords = 0x800640f8; // type:func rom:0x64cf8
CombatAIInfo::FaceTarget = 0x80064460; // type:func rom:0x65060
CombatAIInfo::ClearEntIndex = 0x80064b18; // type:func rom:0x65718
CombatAIInfo::IsAlly = 0x80064b2c; // type:func rom:0x6572c
CombatAIInfo::LookToFlee = 0x80064b64; // type:func rom:0x65764
CombatAIInfo::IsBoss = 0x80064bc0; // type:func rom:0x657c0
CombatAIInfo::Init = 0x80064bfc; // type:func rom:0x657fc
CombatAIInfo::Free = 0x80064f10; // type:func rom:0x65b10
CombatAIScore::Reset = 0x80065008; // type:func rom:0x65c08
CombatAIScore::SetEntry = 0x800650a0; // type:func rom:0x65ca0
CombatAIScore::Sort = 0x80065144; // type:func rom:0x65d44
CombatAIScore::MoveEntry = 0x80065198; // type:func rom:0x65d98
CombatAIScore::Free = 0x80065200; // type:func rom:0x65e00
EntityCannotFight = 0x80065240; // type:func rom:0x65e40
memset_combat_struct = 0x800652d0; // type:func rom:0x65ed0
get_refpoint_by_name = 0x80065390; // type:func rom:0x65f90
Combat_GetSpawnPoint = 0x80065414; // type:func rom:0x66014
combatEnt_setup = 0x80065610; // type:func rom:0x66210
count_enemies = 0x80065820; // type:func rom:0x66420
find_sholeh = 0x8006585c; // type:func rom:0x6645c
NOOP_800658a0 = 0x800658a0; // type:func rom:0x664a0
recount_enemy_party = 0x800658a8; // type:func rom:0x664a8
look_for_flasks = 0x800658ec; // type:func rom:0x664ec
Combat::CreatePartyMembers = 0x80065964; // type:func rom:0x66564
Combat::CreateAlly = 0x80065bfc; // type:func rom:0x667fc
look_for_boss_shadow = 0x80065e68; // type:func rom:0x66a68
Combat::CreateEnemies = 0x80065f34; // type:func rom:0x66b34
encounter_id_check = 0x800661f0; // type:func rom:0x66df0
scoot_enemy_list = 0x8006628c; // type:func rom:0x66e8c
Combat::InitEncounter = 0x800662f8; // type:func rom:0x66ef8
some_combat_proximity_check = 0x80066610; // type:func rom:0x67210
func_settting_leader_dead_flag = 0x80066ab0; // type:func rom:0x676b0
get_gear_drop = 0x80066e14; // type:func rom:0x67a14
get_exp_mod = 0x800670d4; // type:func rom:0x67cd4
calc_loot = 0x8006728c; // type:func rom:0x67e8c
add_globalLoot = 0x800673d4; // type:func rom:0x67fd4
calc_combat_loot = 0x80067448; // type:func rom:0x68048
copy_string_to_combat_textbox = 0x800677a0; // type:func rom:0x683a0
print_combat_textbox = 0x800677f4; // type:func rom:0x683f4
copy_to_combat_textbox_2 = 0x80067834; // type:func rom:0x68434
passto_combat_widget_print_func = 0x80067874; // type:func rom:0x68474
copy_to_textbox_1 = 0x80067890; // type:func rom:0x68490
check_battlefeild_fleeing_refpoints = 0x80067908; // type:func rom:0x68508
renderTicker_GreaterThan3 = 0x800679a4; // type:func rom:0x685a4
get_borg9_floatB_X_ShortA = 0x800679c0; // type:func rom:0x685c0
get_borg9_floatB_Y_ShortB = 0x80067a30; // type:func rom:0x68630
CombatEntity::Init = 0x80067c80; // type:func rom:0x68880
CombatEntity::FreeAi = 0x80067f24; // type:func rom:0x68b24
CombatEntity::GetCoordU8 = 0x80067f70; // type:func rom:0x68b70
CombatEntity::GetCoordXU8 = 0x80068030; // type:func rom:0x68c30
CombatEntity::GetCoordYU8 = 0x80068084; // type:func rom:0x68c84
CombatEntity::GetCoord2XU8 = 0x800680d8; // type:func rom:0x68cd8
CombatEntity::GetCoord2YU8 = 0x8006812c; // type:func rom:0x68d2c
CombatEntity::GetCoordX = 0x80068180; // type:func rom:0x68d80
CombatEntity::GetCoordY = 0x80068188; // type:func rom:0x68d88
CombatEntity::GetCoord2X = 0x80068190; // type:func rom:0x68d90
CombatEntity::GetCoord2Y = 0x80068198; // type:func rom:0x68d98
CombatEntity::SetCoords = 0x800681a0; // type:func rom:0x68da0
ConbatEnt_Setcoord2 = 0x800681ac; // type:func rom:0x68dac
CombatEntity::Flag0 = 0x800681b8; // type:func rom:0x68db8
CombatEntity::Flag1 = 0x800681c4; // type:func rom:0x68dc4
CombatEntity::Flag2 = 0x800681d4; // type:func rom:0x68dd4
CombatEntity::Flag3 = 0x800681e4; // type:func rom:0x68de4
CombatEntity::Flag4 = 0x800681f4; // type:func rom:0x68df4
CombatEntity::Flag5 = 0x80068204; // type:func rom:0x68e04
CombatEntity::Flag6 = 0x80068214; // type:func rom:0x68e14
CombatEntity::Flag7 = 0x80068224; // type:func rom:0x68e24
CombatEntity::Flag89 = 0x80068234; // type:func rom:0x68e34
CombatEntity::FlagSet = 0x80068244; // type:func rom:0x68e44
CombatEntity::FlagUnset = 0x80068254; // type:func rom:0x68e54
NOOP_80068350 = 0x80068350; // type:func rom:0x68f50
CombatEntity::SetMovementRange = 0x8006843c; // type:func rom:0x6903c
CombatEntity::DEXCheck = 0x80068670; // type:func rom:0x69270
get_combatEnt_protection = 0x80068710; // type:func rom:0x69310
get_sheild_warrior_skill = 0x80068850; // type:func rom:0x69450
CombatEntity::GetProtection = 0x800688bc; // type:func rom:0x694bc
CombatEntity::Coord2IsCoord = 0x80068910; // type:func rom:0x69510
CombatEntity::SetCardinalFacing = 0x80068a5c; // type:func rom:0x6965c
CombatEntity::CheckFacings = 0x80068be4; // type:func rom:0x697e4
CombatEntity::CheckBackstab = 0x80068cf4; // type:func rom:0x698f4
CombatEntity::FaceTarget = 0x80068ec8; // type:func rom:0x69ac8
CombatEntity::TeleportMovePlayer = 0x80068fa4; // type:func rom:0x69ba4
CombatEntity::SetPlayerRotate = 0x80069004; // type:func rom:0x69c04
CombatEntity::GetWeaponAnimation = 0x80069084; // type:func rom:0x69c84
CombatEntity::Get2DProximity = 0x800694fc; // type:func rom:0x6a0fc
combat_can_use_potion = 0x8006959c; // type:func rom:0x6a19c
Combat_can_use_flask = 0x800695c0; // type:func rom:0x6a1c0
CombatEntity::CanBeTargeted = 0x80069730; // type:func rom:0x6a330
CombatEntity::GetSpellTargetCount = 0x800699b8; // type:func rom:0x6a5b8
CombatEntity::canControl = 0x80069a2c; // type:func rom:0x6a62c
CombatEntity::SpellEffectsTarget = 0x80069b28; // type:func rom:0x6a728
CombatEntity::AIShouldNotCastSpell = 0x80069c34; // type:func rom:0x6a834
ai_should_cast_magic = 0x80069dd8; // type:func rom:0x6a9d8
CombatEntity::SpellEffectsPartyInArea = 0x8006a1a8; // type:func rom:0x6ada8
CombatEntity::EndTurn = 0x8006a4b4; // type:func rom:0x6b0b4
combat_escape_func = 0x8006a634; // type:func rom:0x6b234
NotAspectBonus = 0x8006a768; // type:func rom:0x6b368
getNotAspectBonus = 0x8006a7a8; // type:func rom:0x6b3a8
IsAspectBonus = 0x8006a7d0; // type:func rom:0x6b3d0
CombatEntity::isMagicElement = 0x8006aba4; // type:func rom:0x6b7a4
CombatEntity::DoesElementResist = 0x8006abe4; // type:func rom:0x6b7e4
CombatEntity::CalcGearResist = 0x8006ac58; // type:func rom:0x6b858
CanResistSpell = 0x8006ae10; // type:func rom:0x6ba10
magic_resist_element_checks = 0x8006af38; // type:func rom:0x6bb38
check_vs_magic = 0x8006b0f0; // type:func rom:0x6bcf0
CombatEntity::GetSTRSteps = 0x8006b1bc; // type:func rom:0x6bdbc
CombatEntity::Death = 0x8006b234; // type:func rom:0x6be34
CombatEntity::HasPetrifyEffect = 0x8006b404; // type:func rom:0x6c004
multiple_skill_checks = 0x8006b478; // type:func rom:0x6c078
skillcheck_float = 0x8006b748; // type:func rom:0x6c348
CombatEntity::WeaponSkillUpChance = 0x8006b804; // type:func rom:0x6c404
CombatEntity::CalcAttackResist = 0x8006b8b8; // type:func rom:0x6c4b8
CombatEntity::UseWeaponEnchantment = 0x8006b984; // type:func rom:0x6c584
CombatEntity::CalculateWeaponAttack = 0x8006ba58; // type:func rom:0x6c658
some_STR_Theif_check = 0x8006bc98; // type:func rom:0x6c898
CombatEntity::TroubadorMod = 0x8006be0c; // type:func rom:0x6ca0c
some_aspect_multi = 0x8006beac; // type:func rom:0x6caac
some_night_check = 0x8006bf2c; // type:func rom:0x6cb2c
CombatEntity::TheifBackstabMod = 0x8006c08c; // type:func rom:0x6cc8c
CombatEntity::CalculateAttackAccuracy = 0x8006c104; // type:func rom:0x6cd04
some_combat_weapon_func = 0x8006c4d8; // type:func rom:0x6d0d8
isDispelMagic = 0x8006c6fc; // type:func rom:0x6d2fc
CombatEntity::GetSpellError = 0x8006c76c; // type:func rom:0x6d36c
combat_spell_fail = 0x8006c858; // type:func rom:0x6d458
combat_textbox_spell = 0x8006c8cc; // type:func rom:0x6d4cc
combat_print_failed_spell = 0x8006c974; // type:func rom:0x6d574
print_spell_cast_resist = 0x8006c9e0; // type:func rom:0x6d5e0
print_spell_error = 0x8006ca7c; // type:func rom:0x6d67c
IsControlMagic = 0x8006caf8; // type:func rom:0x6d6f8
CombatEntity::isPetrify = 0x8006cb60; // type:func rom:0x6d760
check_for_control_petrify = 0x8006ccc4; // type:func rom:0x6d8c4
check_for_petrify = 0x8006cd50; // type:func rom:0x6d950
combat_check_spell_ingredient = 0x8006cdb0; // type:func rom:0x6d9b0
some_aspect_multi_check = 0x8006ce54; // type:func rom:0x6da54
some_spell_ingredient_check = 0x8006cfa8; // type:func rom:0x6dba8
Entity::CheckSpellWizard_combat = 0x8006d130; // type:func rom:0x6dd30
func_using_spell_charges = 0x8006d220; // type:func rom:0x6de20
some_magic_check = 0x8006d36c; // type:func rom:0x6df6c
func_checking_vs_magic = 0x8006d44c; // type:func rom:0x6e04c
banishing_func = 0x8006d690; // type:func rom:0x6e290
dispel_magic_combat = 0x8006d704; // type:func rom:0x6e304
calc_spell_damage_ = 0x8006d894; // type:func rom:0x6e494
magic_damage_resist_calc = 0x8006da80; // type:func rom:0x6e680
func_calcing_magic_resist = 0x8006dbac; // type:func rom:0x6e7ac