forked from dism-exe/bn6f
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ewram.s
3457 lines (3394 loc) · 73.8 KB
/
ewram.s
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
.include "include/macros.inc"
.section ewram_2000000
// temporarily making this as a constant to
// make detecting fake instances of this easier
// timer_2000000:: // 0x2000000
.space 96
dword_2000060:: // 0x2000060
.space 16
byte_2000070:: // 0x2000070
.space 32
unk_2000090:: // 0x2000090
.space 16
unk_20000A0:: // 0x20000a0
.space 96
unk_2000100:: // 0x2000100
.space 256
unk_2000200:: // 0x2000200
.space 16
byte_2000210:: // 0x2000210
.space 2
.space 1
.space 1
.space 2
.space 2
.space 8
.space 64
unk_2000260:: // 0x2000260
.space 48
reqBBS_requestEntriesList:: // 0x2000290
.space 128
unk_2000310:: // 0x2000310
.space 2
byte_2000312:: // 0x2000312
.space 2
byte_2000314:: // 0x2000314
.space 1
byte_2000315:: // 0x2000315
.space 3
byte_2000318:: // 0x2000318
.space 4
byte_200031C:: // 0x200031c
.space 2
byte_200031E:: // 0x200031e
.space 1
byte_200031F:: // 0x200031f
.space 1
byte_2000320:: // 0x2000320
.space 1
byte_2000321:: // 0x2000321
.space 1
word_2000322:: // 0x2000322
.space 2
dword_2000324:: // 0x2000324
.space 4
byte_2000328:: // 0x2000328
.space 4
byte_200032C:: // 0x200032c
.space 4
dword_2000330:: // 0x2000330
.space 64
unk_2000370:: // 0x2000370
.space 368
byte_20004E0:: // 0x20004e0
.space 400
byte_2000670:: // 0x2000670
.space 256
unk_2000770:: // 0x2000770
.space 16
eScenarioEffectState2000780:: // 0x2000780
.space 1
byte_2000781:: // 0x2000781
.space 1
byte_2000782:: // 0x2000782
.space 1
byte_2000783:: // 0x2000783
.space 1
byte_2000784:: // 0x2000784
.space 7
byte_200078B:: // 0x200078b
.space 2
byte_200078D:: // 0x200078d
.space 1
byte_200078E:: // 0x200078e
.space 2
dword_2000790:: // 0x2000790
.space 8
byte_2000798:: // 0x2000798
.space 16
byte_20007A8:: // 0x20007a8
.space 46
byte_20007D6:: // 0x20007d6
.space 100
byte_200083A:: // 0x200083a
.space 102
byte_20008A0:: // 0x20008a0
.space 512
eStruct2000aa0:: // 0x2000aa0
s_2000aa0_struct eStruct2000aa0
eStruct2000aa0End:: // 0x2000abc
.space 4
unk_2000AC0:: // 0x2000ac0
.space 15
byte_2000ACF:: // 0x2000acf
.space 2
byte_2000AD1:: // 0x2000ad1
.space 2
byte_2000AD3:: // 0x2000ad3
.space 2
byte_2000AD5:: // 0x2000ad5
.space 1
byte_2000AD6:: // 0x2000ad6
.space 1
byte_2000AD7:: // 0x2000ad7
.space 1
byte_2000AD8:: // 0x2000ad8
.space 1
byte_2000AD9:: // 0x2000ad9
.space 1
word_2000ADA:: // 0x2000ada
.space 2
word_2000ADC:: // 0x2000adc
.space 20
unk_2000AF0:: // 0x2000af0
.space 64
dword_2000B30:: // 0x2000b30
.space 16
unk_2000B40:: // 0x2000b40
.space 3
byte_2000B43:: // 0x2000b43
.space 1
byte_2000B44:: // 0x2000b44
.space 1
byte_2000B45:: // 0x2000b45
.space 1
word_2000B46:: // 0x2000b46
.space 2
byte_2000B48:: // 0x2000b48
.space 1
byte_2000B49:: // 0x2000b49
.space 3
byte_2000B4C:: // 0x2000b4c
.space 6
word_2000B52:: // 0x2000b52
.space 2
word_2000B54:: // 0x2000b54
.space 6
word_2000B5A:: // 0x2000b5a
.space 2
word_2000B5C:: // 0x2000b5c
.space 132
unk_2000BE0:: // 0x2000be0
.space 320
byte_2000D20:: // 0x2000d20
.space 1
byte_2000D21:: // 0x2000d21
.space 7
dword_2000D28:: // 0x2000d28
.space 4
dword_2000D2C:: // 0x2000d2c
.space 148
dword_2000DC0:: // 0x2000dc0
.space 4
dword_2000DC4:: // 0x2000dc4
.space 252
byte_2000EC0:: // 0x2000ec0
.space 6
byte_2000EC6:: // 0x2000ec6
.space 16
byte_2000ED6:: // 0x2000ed6
.space 178
dword_2000F88:: // 0x2000f88
.space 12
dword_2000F94:: // 0x2000f94
.space 4
dword_2000F98:: // 0x2000f98
.space 4
dword_2000F9C:: // 0x2000f9c
.space 4
word_2000FA0:: // 0x2000fa0
.space 32
unk_2000FC0:: // 0x2000fc0
.space 16
unk_2000FD0:: // 0x2000fd0
.space 16
byte_2000FE0:: // 0x2000fe0
.space 1
byte_2000FE1:: // 0x2000fe1
.space 15
unk_2000FF0:: // 0x2000ff0
.space 32
eStruct2001010:: // 0x2001010
.space 1
byte_2001011:: // 0x2001011
.space 1
byte_2001012:: // 0x2001012
.space 1
byte_2001013:: // 0x2001013
.space 1
dword_2001014:: // 0x2001014
.space 4
byte_2001018:: // 0x2001018
.space 1
byte_2001019:: // 0x2001019
.space 1
byte_200101A:: // 0x200101a
.space 2
dword_200101C:: // 0x200101c
.space 4
dword_2001020:: // 0x2001020
.space 4
dword_2001024:: // 0x2001024
.space 4
dword_2001028:: // 0x2001028
.space 4
dword_200102C:: // 0x200102c
.space 4
dword_2001030:: // 0x2001030
.space 4
dword_2001034:: // 0x2001034
.space 4
byte_2001038:: // 0x2001038
.space 1
byte_2001039:: // 0x2001039
.space 1
byte_200103A:: // 0x200103a
.space 1
byte_200103B:: // 0x200103b
.space 37
eUnusedExtraToolkitPtrsOffset:: // 0x2001060
.space 4
dword_2001064:: // 0x2001064
.space 124
eActiveOverworldNPCObjectsBitfield:: // 0x20010e0
.space 16
gameProgressBuffer_20010f0:: // 0x20010f0
.space 48
rngSeed_2001120:: // 0x2001120
.space 16
byte_2001130:: // 0x2001130
.space 16
dword_2001140:: // 0x2001140
.space 16
eReqBBS2001150:: // 0x2001150
.space 4
byte_2001154:: // 0x2001154
.space 36
dword_2001178:: // 0x2001178
.space 12
unk_2001184:: // 0x2001184
.space 2
unk_2001186:: // 0x2001186
.space 22
unk_200119C:: // 0x200119c
.space 2
unk_200119E:: // 0x200119E
.space 382
.space 212
eRngSeed20013F0:: // 0x20013f0
.space 16
byte_2001400:: // 0x2001400
.space 268
unk_200150C:: // 0x200150c
.space 244
byte_2001600:: // 0x2001600
.space 512
word_2001800:: // 0x2001800
.space 2
byte_2001802:: // 0x2001802
.space 6
unk_2001808:: // 0x2001808
.space 16
byte_2001818:: // 0x2001818
.space 16
unk_2001828:: // 0x2001828
.space 20
byte_200183C:: // 0x200183c
.space 20
unk_2001850:: // 0x2001850
.space 16
byte_2001860:: // 0x2001860
.space 32
byte_2001880:: // 0x2001880
.space 32
byte_20018A0:: // 0x20018a0
.space 16
byte_20018B0:: // 0x20018b0
.space 8
dword_20018B8:: // 0x20018b8
.space 8
unk_20018C0:: // 0x20018c0
.space 40
dword_20018E8:: // 0x20018e8
.space 4
unk_20018EC:: // 0x20018ec
.space 1
byte_20018ED:: // 0x20018ed
.space 1
byte_20018EE:: // 0x20018ee
.space 2
dword_20018F0:: // 0x20018f0
.space 4
byte_20018F4:: // 0x20018f4
.space 88
dword_200194C:: // 0x200194c
.space 4
byte_2001950:: // 0x2001950
.space 88
dword_20019A8:: // 0x20019a8
.space 4
byte_20019AC:: // 0x20019ac
.space 88
dword_2001A04:: // 0x2001a04
.space 4
byte_2001A08:: // 0x2001a08
.space 88
dword_2001A60:: // 0x2001a60
.space 4
byte_2001A64:: // 0x2001a64
.space 88
dword_2001ABC:: // 0x2001abc
.space 4
byte_2001AC0:: // 0x2001ac0
.space 192
eToolkitExtraPtrsMemory::
eGameState:: // 0x2001b80
game_state_struct eGameState
eGameStateEnd::
.space 4
eStruct2001c04:: // 0x2001c04
s_2001c04_struct eStruct2001c04
eStruct2001c04End:: // 0x2001c88
// u8[1448]
// continuous buffer of bit flags addressed with a u16 flag offset
eEventFlags:: // 0x2001C88
.space 1264
eFolders:: // 0x2002178
.space 184
unk_2002230:: // 0x2002230
.space 236
unk_200231C:: // 0x200231c
.space 3608
eKeyItems:: // 0x2003134
.space 404
unk_20032C8:: // 0x20032c8
.space 108
unk_2003334:: // 0x2003334
.space 232
unk_200341C:: // 0x200341c
.space 1024
unk_200381C:: // 0x200381c
.space 2352
unk_200414C:: // 0x200414c
.space 68
unk_2004190:: // 0x2004190
.space 396
unk_200431C:: // 0x200431c
.space 20
unk_2004330:: // 0x2004330
.space 4
unk_2004334:: // 0x2004334
.space 4
unk_2004338:: // 0x2004338
.space 16
unk_2004348:: // 0x2004348
.space 1156
eNaviStats:: // 0x20047cc
navi_stats_struct eNaviStats0
navi_stats_struct eNaviStats1
// enough space for 5 more navis here
// but the code seems to only use slot 1 for other navis
.space 504
unk_2004A8C:: // 0x2004a8c
.space 404
unk_2004C20:: // 0x2004c20
.space 516
unk_2004E24:: // 0x2004e24
.space 516
unk_2005028:: // 0x2005028
.space 8
unk_2005030:: // 0x2005030
.space 8
unk_2005038:: // 0x2005038
.space 260
eToolkitExtraPtrsMemoryEnd:: // 0x200153c
// 0x200153c, end of eToolkit extra pointers
.space 256 // additional buffer for dummied out randomization
.space 1348
eReqBBSGui:: // 0x2005780
req_bbs_gui_struct eReqBBSGui
.balign 0x10, 0x00
eOverworldNPCObjects:: // 0x20057b0
overworld_npc_object_struct eOverworldNPCObject0
overworld_npc_object_struct eOverworldNPCObject1
overworld_npc_object_struct eOverworldNPCObject2
overworld_npc_object_struct eOverworldNPCObject3
overworld_npc_object_struct eOverworldNPCObject4
overworld_npc_object_struct eOverworldNPCObject5
overworld_npc_object_struct eOverworldNPCObject6
overworld_npc_object_struct eOverworldNPCObject7
overworld_npc_object_struct eOverworldNPCObject8
overworld_npc_object_struct eOverworldNPCObject9
overworld_npc_object_struct eOverworldNPCObject10
overworld_npc_object_struct eOverworldNPCObject11
overworld_npc_object_struct eOverworldNPCObject12
overworld_npc_object_struct eOverworldNPCObject13
overworld_npc_object_struct eOverworldNPCObject14
overworld_npc_object_struct eOverworldNPCObject15
eOverworldNPCObjectsEnd::
byte_2006530:: // 0x2006530
.space 128
reqBBS_numRequestsSent:: // 0x20065b0
.space 4
byte_20065B4:: // 0x20065b4
.space 12
byte_20065C0:: // 0x20065c0
.space 32
byte_20065E0:: // 0x20065E0
.space 1
byte_20065E1:: // 0x20065E1
.space 2
byte_20065E3:: // 0x20065E3
.space 2
byte_20065E5:: // 0x20065E5
.space 2
byte_20065E7:: // 0x20065E7
.space 137
byte_2006670:: // 0x2006670
.space 4
byte_2006674:: // 0x2006674
.space 2
byte_2006676:: // 0x2006676
.space 154
byte_2006710:: // 0x2006710
.space 4
byte_2006714:: // 0x2006714
.space 12
byte_2006720:: // 0x2006720
.space 32
dword_2006740:: // 0x2006740
.space 4
dword_2006744:: // 0x2006744
.space 12
byte_2006750:: // 0x2006750
.space 32
word_2006770:: // 0x2006770
.space 2
byte_2006772:: // 0x2006772
.space 2
word_2006774:: // 0x2006774
.space 2
word_2006776:: // 0x2006776
.space 2
unk_2006778:: // 0x2006778
.space 16
byte_2006788:: // 0x2006788
.space 16
unk_2006798:: // 0x2006798
.space 22
byte_20067AE:: // 0x20067ae
.space 18
dword_20067C0:: // 0x20067c0
.space 128
unk_2006840:: // 0x2006840
.space 8
byte_2006848:: // 0x2006848
.space 1
byte_2006849:: // 0x2006849
.space 1021
unk_2006C46:: // 0x2006c46
.space 2
dword_2006C48:: // 0x2006c48
.space 8
byte_2006C50:: // 0x2006c50
.space 56
unk_2006C88:: // 0x2006c88
.space 56
unk_2006CC0:: // 0x2006cc0
.space 56
unk_2006CF8:: // 0x2006cf8
.space 56
byte_2006D30:: // 0x2006d30
.space 56
byte_2006D68:: // 0x2006d68
.space 56
byte_2006DA0:: // 0x2006da0
.space 56
byte_2006DD8:: // 0x2006dd8
.space 36
word_2006DFC:: // 0x2006dfc
.space 2
byte_2006DFE:: // 0x2006dfe
.space 2
byte_2006E00:: // 0x2006e00
.space 1
byte_2006E01:: // 0x2006e01
.space 1
word_2006E02:: // 0x2006e02
.space 2
word_2006E04:: // 0x2006e04
.space 4
unk_2006E08:: // 0x2006e08
.space 240
unk_2006EF8:: // 0x2006ef8
.space 4728
unk_2008170:: // 0x2008170
.space 64
byte_20081B0:: // 0x20081b0
.space 1
byte_20081B1:: // 0x20081b1
.space 1
word_20081B2:: // 0x20081b2
.space 2
dword_20081B4:: // 0x20081b4
.space 4
dword_20081B8:: // 0x20081b8
.space 4
dword_20081BC:: // 0x20081bc
.space 4
dword_20081C0:: // 0x20081c0
.space 16
eOWObjectInteractionAreas:: // 0x20081d0
ow_object_interaction_area_struct eOWObjectInteractionArea_0
ow_object_interaction_area_struct eOWObjectInteractionArea_1
ow_object_interaction_area_struct eOWObjectInteractionArea_2
ow_object_interaction_area_struct eOWObjectInteractionArea_3
ow_object_interaction_area_struct eOWObjectInteractionArea_4
ow_object_interaction_area_struct eOWObjectInteractionArea_5
ow_object_interaction_area_struct eOWObjectInteractionArea_6
ow_object_interaction_area_struct eOWObjectInteractionArea_7
ow_object_interaction_area_struct eOWObjectInteractionArea_8
ow_object_interaction_area_struct eOWObjectInteractionArea_9
ow_object_interaction_area_struct eOWObjectInteractionArea_10
ow_object_interaction_area_struct eOWObjectInteractionArea_11
ow_object_interaction_area_struct eOWObjectInteractionArea_12
ow_object_interaction_area_struct eOWObjectInteractionArea_13
ow_object_interaction_area_struct eOWObjectInteractionArea_14
ow_object_interaction_area_struct eOWObjectInteractionArea_15
ow_object_interaction_area_struct eOWObjectInteractionArea_16
ow_object_interaction_area_struct eOWObjectInteractionArea_17
ow_object_interaction_area_struct eOWObjectInteractionArea_18
ow_object_interaction_area_struct eOWObjectInteractionArea_19
ow_object_interaction_area_struct eOWObjectInteractionArea_20
ow_object_interaction_area_struct eOWObjectInteractionArea_21
ow_object_interaction_area_struct eOWObjectInteractionArea_22
ow_object_interaction_area_struct eOWObjectInteractionArea_23
ow_object_interaction_area_struct eOWObjectInteractionArea_24
ow_object_interaction_area_struct eOWObjectInteractionArea_25
ow_object_interaction_area_struct eOWObjectInteractionArea_26
ow_object_interaction_area_struct eOWObjectInteractionArea_27
ow_object_interaction_area_struct eOWObjectInteractionArea_28
ow_object_interaction_area_struct eOWObjectInteractionArea_29
ow_object_interaction_area_struct eOWObjectInteractionArea_30
ow_object_interaction_area_struct eOWObjectInteractionArea_31
eOWObjectInteractionAreasEnd:: // 0x2008450
// looks dynamic
eStructArr2008450:: // 0x2008453
.space 1320
byte_2008978:: // 0x2008978
.space 4
dword_200897C:: // 0x200897c
.space 4
unk_2008980:: // 0x2008980
.space 1280
unk_2008E80:: // 0x2008e80
.space 1280
eBattleObjectsLinkedListStart:: // 0x2009380
battle_object_linked_list_struct eBattleObjectsLinkedListStart
byte_2009390:: // 0x2009390
.space 8
word_2009398:: // 0x2009398
.space 2
word_200939A:: // 0x200939a
.space 2
byte_200939C:: // 0x200939c
.space 8
flags32_20093A4:: // 0x20093a4
// type: Flags20093A4
.space 4
dword_20093A8:: // 0x20093a8
.space 8
eToolkit:: // 0x20093b0
toolkit_struct eToolkit
eToolkitEnd:: // 0x2009444
.space 12
unk_2009450:: // 0x2009450
.space 16
unk_2009460:: // 0x2009460
.space 16
byte_2009470:: // 0x2009470
.space 16
unk_2009480:: // 0x2009480
.space 64
eGFXAnimStates:: // 0x20094c0
gfx_anim_state_struct eGFXAnimState0
gfx_anim_state_struct eGFXAnimState1
gfx_anim_state_struct eGFXAnimState2
gfx_anim_state_struct eGFXAnimState3
gfx_anim_state_struct eGFXAnimState4
gfx_anim_state_struct eGFXAnimState5
gfx_anim_state_struct eGFXAnimState6
gfx_anim_state_struct eGFXAnimState7
gfx_anim_state_struct eGFXAnimState8
gfx_anim_state_struct eGFXAnimState9
gfx_anim_state_struct eGFXAnimState10
gfx_anim_state_struct eGFXAnimState11
gfx_anim_state_struct eGFXAnimState12
gfx_anim_state_struct eGFXAnimState13
gfx_anim_state_struct eGFXAnimState14
gfx_anim_state_struct eGFXAnimState15
gfx_anim_state_struct eGFXAnimState16
gfx_anim_state_struct eGFXAnimState17
eGFXAnimStatesEnd::
.space 32
eBGScrollCBCounters:: // 0x2009690
bg_scroll_cb_counters_struct eBGScrollCBCounters
eBGScrollCBCountersEnd:: // 0x2009698
.space 8
unk_20096A0:: // 0x20096a0
.space 3
byte_20096A3:: // 0x20096a3
.space 1
dword_20096A4:: // 0x20096a4
.space 4
dword_20096A8:: // 0x20096a8
.space 4
dword_20096AC:: // 0x20096ac
.space 4
dword_20096B0:: // 0x20096b0
.space 4
dword_20096B4:: // 0x20096b4
.space 4
dword_20096B8:: // 0x20096b8
.space 4
dword_20096BC:: // 0x20096bc
.space 4
dword_20096C0:: // 0x20096c0
.space 4
dword_20096C4:: // 0x20096c4
.space 4
dword_20096C8:: // 0x20096c8
.space 4
dword_20096CC:: // 0x20096cc
.space 4
dword_20096D0:: // 0x20096d0
.space 8
byte_20096D8:: // 0x20096d8
.space 8
unk_20096E0:: // 0x20096e0
.space 96
unk_2009740:: // 0x2009740
.space 16
unk_2009750:: // 0x2009750
.space 64
byte_2009790:: // 0x2009790
.space 16
ePalette20097a0:: // 0x20097a0
palette_20097a0_struct ePalette20097a0_0
palette_20097a0_struct ePalette20097a0_1
palette_20097a0_struct ePalette20097a0_2
palette_20097a0_struct ePalette20097a0_3
palette_20097a0_struct ePalette20097a0_4
palette_20097a0_struct ePalette20097a0_5
palette_20097a0_struct ePalette20097a0_6
palette_20097a0_struct ePalette20097a0_7
palette_20097a0_struct ePalette20097a0_8
palette_20097a0_struct ePalette20097a0_9
palette_20097a0_struct ePalette20097a0_10
palette_20097a0_struct ePalette20097a0_11
palette_20097a0_struct ePalette20097a0_12
palette_20097a0_struct ePalette20097a0_13
palette_20097a0_struct ePalette20097a0_14
palette_20097a0_struct ePalette20097a0_15
palette_20097a0_struct ePalette20097a0_16
palette_20097a0_struct ePalette20097a0_17
palette_20097a0_struct ePalette20097a0_18
palette_20097a0_struct ePalette20097a0_19
palette_20097a0_struct ePalette20097a0_20
palette_20097a0_struct ePalette20097a0_21
ePalette20097a0End:: // 0x20098a8
byte_20098A8:: // 0x20098a8
.space 1
byte_20098A9:: // 0x20098a9
.space 1
word_20098AA:: // 0x20098aa
.space 6
unk_20098B0:: // 0x20098b0
.space 128
dword_2009930:: // 0x2009930
.space 16
byte_2009940:: // 0x2009940
.space 64
eCamera:: // 0x2009980
camera_struct eCamera
eCameraEnd:: // 0x20099d0
.space 64
dword_2009A10:: // 0x2009a10
.space 8
dword_2009A18:: // 0x2009a18
.space 12
dword_2009A24:: // 0x2009a24
.space 4
dword_2009A28:: // 0x2009a28
.space 4
dword_2009A2C:: // 0x2009a2c
.space 4
sSubmenu:: // 0x2009a30
.space 80
unk_2009A80:: // 0x2009a80
.space 2
unk_2009A82:: // 0x2009a82
.space 2
unk_2009A84:: // 0x2009a84
.space 2
unk_2009A86:: // 0x2009a86
.space 2
unk_2009A88:: // 0x2009a88
.space 2
unk_2009A8A:: // 0x2009a8a
.space 38
eBattleObjectsLinkedListSentinel:: // 0x2009ab0
battle_object_linked_list_struct eBattleObjectsLinkedListSentinel
unk_2009AC0:: // 0x2009ac0
.space 512
dword_2009CC0:: // 0x2009cc0
.space 16
eChatbox:: // 0x2009cd0
chatbox_struct eChatbox
unk_2009F00:: // 0x2009f00
.space 52
eActiveOWPlayerObjectBitfield:: // 0x2009f34
.space 4
eFlags2009F38:: // 0x2009f38
.space 8
eOWPlayerObject:: // 0x2009f40
overworld_player_object_struct eOWPlayerObject
eOWPlayerObjectEnd:: // 0x200a008
.space 1
byte_200A009:: // 0x200a009
.space 1
byte_200A00A:: // 0x200a00a
.space 1
byte_200A00B:: // 0x200a00b
.space 1
word_200A00C:: // 0x200a00c
.space 2
word_200A00E:: // 0x200a00e
.space 2
word_200A010:: // 0x200a010
.space 512
iCurrFrame:: // 0x200a210
.space 16
byte_200A220:: // 0x200a220
.space 1
byte_200A221:: // 0x200a221
.space 1
byte_200A222:: // 0x200a222
.space 1
byte_200A223:: // 0x200a223
.space 1
byte_200A224:: // 0x200a224
.space 20
dword_200A238:: // 0x200a238
.space 4
dword_200A23C:: // 0x200a23c
.space 4
dword_200A240:: // 0x200a240
.space 4
dword_200A244:: // 0x200a244
.space 12
dword_200A250:: // 0x200a250
.space 4
dword_200A254:: // 0x200a254
.space 4
dword_200A258:: // 0x200a258
.space 4
dword_200A25C:: // 0x200a25c
.space 20
eJoypad:: // 0x200a270
joypad_struct eJoypad
eJoypadEnd::
unk_200A284:: // 0x200a284
.space 4
.space 8
byte_200A290:: // 0x200a290
.space 1
byte_200A291:: // 0x200a291
.space 2
unk_200A293:: // 0x200a293
.space 17
byte_200A2A4:: // 0x200a2a4
.space 2
byte_200A2A6:: // 0x200a2a6
.space 1
byte_200A2A7:: // 0x200a2a7
.space 9
word_200A2B0:: // 0x200a2b0
.space 2
word_200A2B2:: // 0x200a2b2
.space 2
word_200A2B4:: // 0x200a2b4
.space 2
word_200A2B6:: // 0x200a2b6
.space 234
unk_200A3A0:: // 0x200a3a0
.space 16
unk_200A3B0:: // 0x200a3b0
.space 16
unk_200A3C0:: // 0x200a3c0
.space 32
unk_200A3E0:: // 0x200a3e0
.space 32
unk_200A400:: // 0x200a400
.space 32
unk_200A420:: // 0x200a420
.space 32
eScreenFade:: // 0x200a440
screen_fade_struct eScreenFade
eScreenFadeEnd:: // 0x200a460
eScreenFade2:: // 0x200a460
screen_fade_struct eScreenFade2
eScreenFade2End:: // 0x200a480
i_joGameSubsysSel:: // 0x200a480
.space 16
dword_200A490:: // 0x200a490
.space 4
byte_200A494:: // 0x200a494
.space 4
dword_200A498:: // 0x200a498
.space 520
eStruct200a6a0:: // 0x200a6a0
.space 4
dword_200A6A4:: // 0x200a6a4
.space 4
dword_200A6A8:: // 0x200a6a8
.space 4
dword_200A6AC:: // 0x200a6ac
.space 68
word_200A6F0:: // 0x200a6f0
.space 2
word_200A6F2:: // 0x200a6f2
.space 2
word_200A6F4:: // 0x200a6f4
.space 2
word_200A6F6:: // 0x200a6f6
.space 378
dword_200A870:: // 0x200a870
.space 16
eBGScrollCallbacks:: // 0x200a880
bg_scroll_callbacks_struct eBGScrollCallbacks
eBGScrollCallbacksEnd:: // 0x200a88c
.space 4
dword_200A890:: // 0x200a890
.space 4
dword_200A894:: // 0x200a894
.space 516
unk_200AA98:: // 0x200aa98
.space 384
eNumOWObjectInteractionAreas:: // 0x200ac18
.space 4
dword_200AC1C:: // 0x200ac1c
.space 4
byte_200AC20:: // 0x200ac20
.space 1
byte_200AC21:: // 0x200ac21
.space 1
byte_200AC22:: // 0x200ac22
.space 1
byte_200AC23:: // 0x200ac23
.space 4
byte_200AC27:: // 0x200ac27
.space 9
unk_200AC30:: // 0x200ac30
.space 3
byte_200AC33:: // 0x200ac33
.space 1
byte_200AC34:: // 0x200ac34
.space 1
byte_200AC35:: // 0x200ac35
.space 11
eRenderInfo:: // 0x200ac40
render_info_struct eRenderInfo
eRenderInfoEnd::
eS200AC80:: // 0x200ac80
.space 4
word_200AC84:: // 0x200ac84
.space 44
dword_200ACB0:: // 0x200acb0
.space 28
dword_200ACCC:: // 0x200accc
.space 4
dword_200ACD0:: // 0x200acd0
.space 16
eStruct200ace0:: // 0x200ace0
s_200ace0_struct eStruct200ace0
eStruct200ace0End::
word_200AD04:: // 0x200ad04
.space 1
byte_200AD05:: // 0x200ad05
.space 1
word_200AD06:: // 0x200ad06
.space 10
eStartScreen:: // 0x200ad10
start_screen_struct eStartScreen
.space 560
BattleSettings_200AF60:: // 0x200af60
.space 16
eUnkBattleObjectLinkedList:: // 0x200af70
battle_object_linked_list_struct eUnkBattleObjectLinkedList
byte_200AF80:: // 0x200af80
.space 1
byte_200AF81:: // 0x200af81
.space 1
byte_200AF82:: // 0x200af82
.space 1
byte_200AF83:: // 0x200af83
.space 1
byte_200AF84:: // 0x200af84
.space 1
byte_200AF85:: // 0x200af85
.space 3
dword_200AF88:: // 0x200af88
.space 4
dword_200AF8C:: // 0x200af8c
.space 4
byte_200AF90:: // 0x200af90
.space 4
dword_200AF94:: // 0x200af94
.space 12
byte_200AFA0:: // 0x200afa0
.space 512
eStartScreenAnimationControl200B1A0:: // 0x200b1a0
.space 8
dword_200B1A8:: // 0x200b1a8
.space 8
dword_200B1B0:: // 0x200b1b0
.space 4
word_200B1B4:: // 0x200b1b4
.space 2
word_200B1B6:: // 0x200b1b6
.space 2
word_200B1B8:: // 0x200b1b8
.space 2
word_200B1BA:: // 0x200b1ba
.space 246
unk_200B2B0:: // 0x200b2b0
.space 512
// array of 5 words, then zeros?
fiveWordArr200B4B0:: // 0x200b4b0
.space 4*5
.space 4*5
.space 4*5
.space 4*5
.space 4*5
.space 4*5
.space 1800
eStruct200BC30:: // 0x200bc30
.space 1
byte_200BC31:: // 0x200bc31
.space 1
byte_200BC32:: // 0x200bc32
.space 3
eStruct200BC30_JumpOffset05:: // 0x200bc35
.space 7