summaryrefslogtreecommitdiff
path: root/asm/filenametable.s
blob: c5699171a4e6391ec8e11d7150d49b708bf14206 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
	.section .text
	.global FileNameTable
FileNameTable:
	.word 0x00000228 ; offset
	.short 0x0057 ; first file
	.short 0x0045 ; dir count
	.word 0x000002CD ; offset
	.short 0x0057 ; first file
	.short 0xF000 ; parent id
	.word 0x000002F5 ; offset
	.short 0x0057 ; first file
	.short 0xF001 ; parent id
	.word 0x000002FD ; offset
	.short 0x0057 ; first file
	.short 0xF002 ; parent id
	.word 0x0000030B ; offset
	.short 0x0058 ; first file
	.short 0xF001 ; parent id
	.word 0x00000332 ; offset
	.short 0x005A ; first file
	.short 0xF001 ; parent id
	.word 0x0000033E ; offset
	.short 0x005A ; first file
	.short 0xF005 ; parent id
	.word 0x0000037B ; offset
	.short 0x005D ; first file
	.short 0xF000 ; parent id
	.word 0x000003CF ; offset
	.short 0x0063 ; first file
	.short 0xF000 ; parent id
	.word 0x000003F4 ; offset
	.short 0x0063 ; first file
	.short 0xF008 ; parent id
	.word 0x0000040B ; offset
	.short 0x0065 ; first file
	.short 0xF008 ; parent id
	.word 0x00000458 ; offset
	.short 0x006A ; first file
	.short 0xF008 ; parent id
	.word 0x00000480 ; offset
	.short 0x006D ; first file
	.short 0xF008 ; parent id
	.word 0x00000490 ; offset
	.short 0x006E ; first file
	.short 0xF000 ; parent id
	.word 0x000004A2 ; offset
	.short 0x006E ; first file
	.short 0xF00D ; parent id
	.word 0x000004B5 ; offset
	.short 0x006F ; first file
	.short 0xF00D ; parent id
	.word 0x000004D7 ; offset
	.short 0x0071 ; first file
	.short 0xF000 ; parent id
	.word 0x00000D2E ; offset
	.short 0x00F4 ; first file
	.short 0xF010 ; parent id
	.word 0x00000D47 ; offset
	.short 0x00F6 ; first file
	.short 0xF010 ; parent id
	.word 0x00000D58 ; offset
	.short 0x00F7 ; first file
	.short 0xF000 ; parent id
	.word 0x00000D83 ; offset
	.short 0x00F7 ; first file
	.short 0xF013 ; parent id
	.word 0x00000D8B ; offset
	.short 0x00F7 ; first file
	.short 0xF014 ; parent id
	.word 0x00000DA5 ; offset
	.short 0x00F8 ; first file
	.short 0xF015 ; parent id
	.word 0x00000DBD ; offset
	.short 0x00F9 ; first file
	.short 0xF013 ; parent id
	.word 0x00000DD7 ; offset
	.short 0x00FB ; first file
	.short 0xF013 ; parent id
	.word 0x00000DDF ; offset
	.short 0x00FB ; first file
	.short 0xF018 ; parent id
	.word 0x00000DEB ; offset
	.short 0x00FB ; first file
	.short 0xF019 ; parent id
	.word 0x00000E06 ; offset
	.short 0x00FC ; first file
	.short 0xF013 ; parent id
	.word 0x00000E15 ; offset
	.short 0x00FD ; first file
	.short 0xF013 ; parent id
	.word 0x00000E32 ; offset
	.short 0x00FF ; first file
	.short 0xF000 ; parent id
	.word 0x00000E3F ; offset
	.short 0x0100 ; first file
	.short 0xF000 ; parent id
	.word 0x00000EB9 ; offset
	.short 0x0100 ; first file
	.short 0xF01E ; parent id
	.word 0x00000EFD ; offset
	.short 0x0101 ; first file
	.short 0xF01F ; parent id
	.word 0x00000F21 ; offset
	.short 0x0103 ; first file
	.short 0xF01F ; parent id
	.word 0x00000F33 ; offset
	.short 0x0104 ; first file
	.short 0xF01F ; parent id
	.word 0x00000F49 ; offset
	.short 0x0105 ; first file
	.short 0xF01E ; parent id
	.word 0x00000F72 ; offset
	.short 0x0107 ; first file
	.short 0xF01E ; parent id
	.word 0x00000F93 ; offset
	.short 0x0109 ; first file
	.short 0xF01E ; parent id
	.word 0x00000FAC ; offset
	.short 0x010A ; first file
	.short 0xF01E ; parent id
	.word 0x00000FC4 ; offset
	.short 0x010B ; first file
	.short 0xF01E ; parent id
	.word 0x00000FD5 ; offset
	.short 0x010C ; first file
	.short 0xF01E ; parent id
	.word 0x00000FE2 ; offset
	.short 0x010D ; first file
	.short 0xF01E ; parent id
	.word 0x00000FF8 ; offset
	.short 0x010E ; first file
	.short 0xF01E ; parent id
	.word 0x00001008 ; offset
	.short 0x010F ; first file
	.short 0xF01E ; parent id
	.word 0x0000101E ; offset
	.short 0x0110 ; first file
	.short 0xF000 ; parent id
	.word 0x00001285 ; offset
	.short 0x013A ; first file
	.short 0xF000 ; parent id
	.word 0x00001291 ; offset
	.short 0x013A ; first file
	.short 0xF02D ; parent id
	.word 0x000012BF ; offset
	.short 0x013D ; first file
	.short 0xF000 ; parent id
	.word 0x000012D4 ; offset
	.short 0x013E ; first file
	.short 0xF02F ; parent id
	.word 0x000012E2 ; offset
	.short 0x013F ; first file
	.short 0xF000 ; parent id
	.word 0x000012F5 ; offset
	.short 0x0140 ; first file
	.short 0xF000 ; parent id
	.word 0x00001304 ; offset
	.short 0x0141 ; first file
	.short 0xF000 ; parent id
	.word 0x00001378 ; offset
	.short 0x0143 ; first file
	.short 0xF033 ; parent id
	.word 0x00001388 ; offset
	.short 0x0144 ; first file
	.short 0xF033 ; parent id
	.word 0x000013C1 ; offset
	.short 0x0149 ; first file
	.short 0xF033 ; parent id
	.word 0x000013CF ; offset
	.short 0x014A ; first file
	.short 0xF033 ; parent id
	.word 0x000013DE ; offset
	.short 0x014B ; first file
	.short 0xF033 ; parent id
	.word 0x0000144A ; offset
	.short 0x0152 ; first file
	.short 0xF033 ; parent id
	.word 0x00001463 ; offset
	.short 0x0154 ; first file
	.short 0xF033 ; parent id
	.word 0x0000147C ; offset
	.short 0x0156 ; first file
	.short 0xF033 ; parent id
	.word 0x00001496 ; offset
	.short 0x0158 ; first file
	.short 0xF033 ; parent id
	.word 0x000014A5 ; offset
	.short 0x0159 ; first file
	.short 0xF000 ; parent id
	.word 0x000014AC ; offset
	.short 0x0159 ; first file
	.short 0xF03D ; parent id
	.word 0x000014BD ; offset
	.short 0x0159 ; first file
	.short 0xF03E ; parent id
	.word 0x000014C9 ; offset
	.short 0x015A ; first file
	.short 0xF03E ; parent id
	.word 0x000014D5 ; offset
	.short 0x015B ; first file
	.short 0xF000 ; parent id
	.word 0x0000150F ; offset
	.short 0x015D ; first file
	.short 0xF041 ; parent id
	.word 0x00001543 ; offset
	.short 0x0161 ; first file
	.short 0xF041 ; parent id
	.word 0x0000156A ; offset
	.short 0x0163 ; first file
	.short 0xF041 ; parent id

	; Directory: /
	.byte 11 | 0x80
	.ascii "application"
	.byte 0x01, 0xF0 ; dir ID
	.byte 3 | 0x80
	.ascii "arc"
	.byte 0x07, 0xF0 ; dir ID
	.byte 6 | 0x80
	.ascii "battle"
	.byte 0x08, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "contest"
	.byte 0x0D, 0xF0 ; dir ID
	.byte 4 | 0x80
	.ascii "data"
	.byte 0x10, 0xF0 ; dir ID
	.byte 4 | 0x80
	.ascii "demo"
	.byte 0x13, 0xF0 ; dir ID
	.byte 3 | 0x80
	.ascii "dwc"
	.byte 0x1D, 0xF0 ; dir ID
	.byte 9 | 0x80
	.ascii "fielddata"
	.byte 0x1E, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "graphic"
	.byte 0x2C, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "itemtool"
	.byte 0x2D, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "msgdata"
	.byte 0x2F, 0xF0 ; dir ID
	.byte 12 | 0x80
	.ascii "particledata"
	.byte 0x31, 0xF0 ; dir ID
	.byte 9 | 0x80
	.ascii "pokeanime"
	.byte 0x32, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "poketool"
	.byte 0x33, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "resource"
	.byte 0x3D, 0xF0 ; dir ID
	.byte 10 | 0x80
	.ascii "wazaeffect"
	.byte 0x41, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /application
	.byte 11 | 0x80
	.ascii "custom_ball"
	.byte 0x02, 0xF0 ; dir ID
	.byte 10 | 0x80
	.ascii "wifi_earth"
	.byte 0x04, 0xF0 ; dir ID
	.byte 9 | 0x80
	.ascii "zukanlist"
	.byte 0x05, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /custom_ball
	.byte 4 | 0x80
	.ascii "data"
	.byte 0x03, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /application/data
	.byte 12
	.ascii "cb_data.narc"
	.byte 0 ; end

	; Directory: /wifi_earth
	.byte 15
	.ascii "wifi_earth.narc"
	.byte 21
	.ascii "wifi_earth_place.narc"
	.byte 0 ; end

	; Directory: /zukanlist
	.byte 8 | 0x80
	.ascii "zkn_data"
	.byte 0x06, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /application/zkn_data
	.byte 15
	.ascii "zukan_data.narc"
	.byte 22
	.ascii "zukan_enc_diamond.narc"
	.byte 20
	.ascii "zukan_enc_pearl.narc"
	.byte 0 ; end

	; Directory: /arc
	.byte 13
	.ascii "bm_anime.narc"
	.byte 18
	.ascii "bm_anime_list.narc"
	.byte 15
	.ascii "encdata_ex.narc"
	.byte 10
	.ascii "ppark.narc"
	.byte 14
	.ascii "ship_demo.narc"
	.byte 7
	.ascii "tv.narc"
	.byte 0 ; end

	; Directory: /battle
	.byte 7 | 0x80
	.ascii "b_tower"
	.byte 0x09, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "graphic"
	.byte 0x0A, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "skill"
	.byte 0x0B, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "tr_ai"
	.byte 0x0C, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /b_tower
	.byte 10
	.ascii "btdpm.narc"
	.byte 10
	.ascii "btdtr.narc"
	.byte 0 ; end

	; Directory: /graphic
	.byte 14
	.ascii "b_bag_gra.narc"
	.byte 16
	.ascii "b_plist_gra.narc"
	.byte 12
	.ascii "batt_bg.narc"
	.byte 13
	.ascii "batt_obj.narc"
	.byte 16
	.ascii "vs_demo_gra.narc"
	.byte 0 ; end

	; Directory: /skill
	.byte 11
	.ascii "be_seq.narc"
	.byte 12
	.ascii "sub_seq.narc"
	.byte 13
	.ascii "waza_seq.narc"
	.byte 0 ; end

	; Directory: /tr_ai
	.byte 14
	.ascii "tr_ai_seq.narc"
	.byte 0 ; end

	; Directory: /contest
	.byte 4 | 0x80
	.ascii "data"
	.byte 0x0E, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "graphic"
	.byte 0x0F, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /data
	.byte 17
	.ascii "contest_data.narc"
	.byte 0 ; end

	; Directory: /graphic
	.byte 15
	.ascii "contest_bg.narc"
	.byte 16
	.ascii "contest_obj.narc"
	.byte 0 ; end

	; Directory: /data
	.byte 15
	.ascii "area00light.txt"
	.byte 15
	.ascii "area01light.txt"
	.byte 15
	.ascii "area02light.txt"
	.byte 15
	.ascii "battle_win.NSCR"
	.byte 18
	.ascii "btower_canm.resdat"
	.byte 19
	.ascii "btower_celact.cldat"
	.byte 18
	.ascii "btower_cell.resdat"
	.byte 17
	.ascii "btower_chr.resdat"
	.byte 17
	.ascii "btower_pal.resdat"
	.byte 10
	.ascii "cell0.NCGR"
	.byte 10
	.ascii "cell0.NCLR"
	.byte 18
	.ascii "clact_default.NANR"
	.byte 13
	.ascii "crystal.nsbmd"
	.byte 16
	.ascii "demo_climax.narc"
	.byte 18
	.ascii "dp_areawindow.NCGR"
	.byte 18
	.ascii "dp_areawindow.NCLR"
	.byte 18
	.ascii "dt_test_celact.txt"
	.byte 20
	.ascii "dt_test_res_cell.txt"
	.byte 23
	.ascii "dt_test_res_cellanm.txt"
	.byte 20
	.ascii "dt_test_res_char.txt"
	.byte 21
	.ascii "dt_test_res_multi.txt"
	.byte 24
	.ascii "dt_test_res_multianm.txt"
	.byte 20
	.ascii "dt_test_res_pltt.txt"
	.byte 13
	.ascii "dun_sea.nsbtx"
	.byte 7
	.ascii "eoo.dat"
	.byte 10
	.ascii "exdata.dat"
	.byte 16
	.ascii "field_cutin.narc"
	.byte 14
	.ascii "fld_anime0.bin"
	.byte 14
	.ascii "fld_anime1.bin"
	.byte 15
	.ascii "fld_anime10.bin"
	.byte 14
	.ascii "fld_anime2.bin"
	.byte 14
	.ascii "fld_anime3.bin"
	.byte 14
	.ascii "fld_anime4.bin"
	.byte 14
	.ascii "fld_anime5.bin"
	.byte 14
	.ascii "fld_anime6.bin"
	.byte 14
	.ascii "fld_anime7.bin"
	.byte 14
	.ascii "fld_anime8.bin"
	.byte 14
	.ascii "fld_anime9.bin"
	.byte 15
	.ascii "fs_kanban.nsbca"
	.byte 12
	.ascii "ground0.NCGR"
	.byte 12
	.ascii "ground0.NCLR"
	.byte 12
	.ascii "ground0.NSCR"
	.byte 16
	.ascii "kemu_itpconv.dat"
	.byte 15
	.ascii "lake_anim.nsbtx"
	.byte 19
	.ascii "miniasahamabe.nsbtx"
	.byte 16
	.ascii "miniasasea.nsbtx"
	.byte 16
	.ascii "minihamabe.nsbtx"
	.byte 13
	.ascii "minimum.nsbtx"
	.byte 15
	.ascii "minirhana.nsbtx"
	.byte 11
	.ascii "namein.narc"
	.byte 10
	.ascii "nfont.NCGR"
	.byte 10
	.ascii "nfont.NCLR"
	.byte 8
	.ascii "pc.nsbca"
	.byte 17
	.ascii "plist_canm.resdat"
	.byte 17
	.ascii "plist_cell.resdat"
	.byte 16
	.ascii "plist_chr.resdat"
	.byte 13
	.ascii "plist_h.cldat"
	.byte 16
	.ascii "plist_pal.resdat"
	.byte 20
	.ascii "porucase_canm.resdat"
	.byte 21
	.ascii "porucase_celact.cldat"
	.byte 20
	.ascii "porucase_cell.resdat"
	.byte 19
	.ascii "porucase_chr.resdat"
	.byte 19
	.ascii "porucase_pal.resdat"
	.byte 15
	.ascii "pst_canm.resdat"
	.byte 15
	.ascii "pst_cell.resdat"
	.byte 14
	.ascii "pst_chr.resdat"
	.byte 11
	.ascii "pst_h.cldat"
	.byte 14
	.ascii "pst_pal.resdat"
	.byte 16
	.ascii "shop_canm.resdat"
	.byte 16
	.ascii "shop_cell.resdat"
	.byte 15
	.ascii "shop_chr.resdat"
	.byte 12
	.ascii "shop_h.cldat"
	.byte 15
	.ascii "shop_pal.resdat"
	.byte 9
	.ascii "slot.narc"
	.byte 16
	.ascii "smptm_koori.NANR"
	.byte 16
	.ascii "smptm_koori.NCER"
	.byte 16
	.ascii "smptm_koori.NCGR"
	.byte 16
	.ascii "smptm_koori.NCLR"
	.byte 17
	.ascii "smptm_nemuri.NANR"
	.byte 17
	.ascii "smptm_nemuri.NCER"
	.byte 17
	.ascii "smptm_nemuri.NCGR"
	.byte 17
	.ascii "smptm_nemuri.NCLR"
	.byte 13
	.ascii "t3_fl_b.nsbtx"
	.byte 13
	.ascii "t3_fl_p.nsbtx"
	.byte 13
	.ascii "t3_fl_r.nsbtx"
	.byte 13
	.ascii "t3_fl_y.nsbtx"
	.byte 8
	.ascii "test.atr"
	.byte 14
	.ascii "tmap_block.dat"
	.byte 14
	.ascii "tmap_flags.dat"
	.byte 17
	.ascii "tmapn_canm.resdat"
	.byte 18
	.ascii "tmapn_celact.cldat"
	.byte 16
	.ascii "tmapn_celact.txt"
	.byte 17
	.ascii "tmapn_cell.resdat"
	.byte 16
	.ascii "tmapn_chr.resdat"
	.byte 16
	.ascii "tmapn_pal.resdat"
	.byte 18
	.ascii "tmapn_res_canm.txt"
	.byte 18
	.ascii "tmapn_res_cell.txt"
	.byte 17
	.ascii "tmapn_res_chr.txt"
	.byte 17
	.ascii "tmapn_res_pal.txt"
	.byte 14
	.ascii "tradelist.narc"
	.byte 13
	.ascii "trapmark.narc"
	.byte 12
	.ascii "ug_anim.narc"
	.byte 17
	.ascii "ug_base_cur.nsbmd"
	.byte 15
	.ascii "ug_boygirl.NCGR"
	.byte 15
	.ascii "ug_boygirl.NCLR"
	.byte 14
	.ascii "ug_fossil.narc"
	.byte 12
	.ascii "ug_hero.NANR"
	.byte 12
	.ascii "ug_hero.NCER"
	.byte 12
	.ascii "ug_hole.NANR"
	.byte 12
	.ascii "ug_hole.NCER"
	.byte 12
	.ascii "ug_hole.NCGR"
	.byte 13
	.ascii "ug_parts.narc"
	.byte 13
	.ascii "ug_radar.narc"
	.byte 12
	.ascii "ug_trap.narc"
	.byte 25
	.ascii "ugeffect_obj_graphic.narc"
	.byte 19
	.ascii "uground_cell.resdat"
	.byte 22
	.ascii "uground_cellanm.resdat"
	.byte 19
	.ascii "uground_char.resdat"
	.byte 20
	.ascii "uground_char2.resdat"
	.byte 19
	.ascii "uground_clact.cldat"
	.byte 19
	.ascii "uground_pltt.resdat"
	.byte 20
	.ascii "uground_pltt2.resdat"
	.byte 17
	.ascii "underg_radar.narc"
	.byte 9
	.ascii "UTF16.dat"
	.byte 11
	.ascii "utility.bin"
	.byte 16
	.ascii "weather_sys.narc"
	.byte 9
	.ascii "wifi.ncgr"
	.byte 13
	.ascii "wifinote.narc"
	.byte 17
	.ascii "wifip2pmatch.narc"
	.byte 7
	.ascii "wm.ncgr"
	.byte 7
	.ascii "wm.nclr"
	.byte 6 | 0x80
	.ascii "mmodel"
	.byte 0x11, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "sound"
	.byte 0x12, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /mmodel
	.byte 11
	.ascii "fldeff.narc"
	.byte 11
	.ascii "mmodel.narc"
	.byte 0 ; end

	; Directory: /sound
	.byte 15
	.ascii "sound_data.sdat"
	.byte 0 ; end

	; Directory: /demo
	.byte 3 | 0x80
	.ascii "egg"
	.byte 0x14, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "intro"
	.byte 0x17, 0xF0 ; dir ID
	.byte 6 | 0x80
	.ascii "shinka"
	.byte 0x18, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "syoujyou"
	.byte 0x1B, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "title"
	.byte 0x1C, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /egg
	.byte 4 | 0x80
	.ascii "data"
	.byte 0x15, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /demo/data
	.byte 13
	.ascii "egg_data.narc"
	.byte 8 | 0x80
	.ascii "particle"
	.byte 0x16, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /egg/particle
	.byte 22
	.ascii "egg_demo_particle.narc"
	.byte 0 ; end

	; Directory: /intro
	.byte 10
	.ascii "intro.narc"
	.byte 13
	.ascii "intro_tv.narc"
	.byte 0 ; end

	; Directory: /shinka
	.byte 4 | 0x80
	.ascii "data"
	.byte 0x19, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /demo/data
	.byte 8 | 0x80
	.ascii "particle"
	.byte 0x1A, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /shinka/particle
	.byte 25
	.ascii "shinka_demo_particle.narc"
	.byte 0 ; end

	; Directory: /syoujyou
	.byte 13
	.ascii "syoujyou.narc"
	.byte 0 ; end

	; Directory: /title
	.byte 12
	.ascii "op_demo.narc"
	.byte 14
	.ascii "titledemo.narc"
	.byte 0 ; end

	; Directory: /dwc
	.byte 11
	.ascii "utility.bin"
	.byte 0 ; end

	; Directory: /fielddata
	.byte 8 | 0x80
	.ascii "areadata"
	.byte 0x1F, 0xF0 ; dir ID
	.byte 11 | 0x80
	.ascii "build_model"
	.byte 0x23, 0xF0 ; dir ID
	.byte 11 | 0x80
	.ascii "encountdata"
	.byte 0x24, 0xF0 ; dir ID
	.byte 9 | 0x80
	.ascii "eventdata"
	.byte 0x25, 0xF0 ; dir ID
	.byte 9 | 0x80
	.ascii "land_data"
	.byte 0x26, 0xF0 ; dir ID
	.byte 9 | 0x80
	.ascii "mapmatrix"
	.byte 0x27, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "maptable"
	.byte 0x28, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "mm_list"
	.byte 0x29, 0xF0 ; dir ID
	.byte 13 | 0x80
	.ascii "pokemon_trade"
	.byte 0x2A, 0xF0 ; dir ID
	.byte 6 | 0x80
	.ascii "script"
	.byte 0x2B, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /areadata
	.byte 14
	.ascii "area_data.narc"
	.byte 16 | 0x80
	.ascii "area_build_model"
	.byte 0x20, 0xF0 ; dir ID
	.byte 12 | 0x80
	.ascii "area_map_tex"
	.byte 0x21, 0xF0 ; dir ID
	.byte 15 | 0x80
	.ascii "area_move_model"
	.byte 0x22, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /fielddata/area_build_model
	.byte 15
	.ascii "area_build.narc"
	.byte 18
	.ascii "areabm_texset.narc"
	.byte 0 ; end

	; Directory: /fielddata/area_map_tex
	.byte 16
	.ascii "map_tex_set.narc"
	.byte 0 ; end

	; Directory: /fielddata/area_move_model
	.byte 20
	.ascii "move_model_list.narc"
	.byte 0 ; end

	; Directory: /build_model
	.byte 16
	.ascii "build_model.narc"
	.byte 22
	.ascii "build_model_matshp.dat"
	.byte 0 ; end

	; Directory: /encountdata
	.byte 15
	.ascii "d_enc_data.narc"
	.byte 15
	.ascii "p_enc_data.narc"
	.byte 0 ; end

	; Directory: /eventdata
	.byte 23
	.ascii "zone_event_release.narc"
	.byte 0 ; end

	; Directory: /land_data
	.byte 22
	.ascii "land_data_release.narc"
	.byte 0 ; end

	; Directory: /mapmatrix
	.byte 15
	.ascii "map_matrix.narc"
	.byte 0 ; end

	; Directory: /maptable
	.byte 11
	.ascii "mapname.bin"
	.byte 0 ; end

	; Directory: /mm_list
	.byte 20
	.ascii "move_model_list.narc"
	.byte 0 ; end

	; Directory: /pokemon_trade
	.byte 14
	.ascii "fld_trade.narc"
	.byte 0 ; end

	; Directory: /script
	.byte 20
	.ascii "scr_seq_release.narc"
	.byte 0 ; end

	; Directory: /graphic
	.byte 12
	.ascii "bag_gra.narc"
	.byte 8
	.ascii "box.narc"
	.byte 11
	.ascii "btower.narc"
	.byte 15
	.ascii "config_gra.narc"
	.byte 15
	.ascii "demo_trade.narc"
	.byte 16
	.ascii "dendou_demo.narc"
	.byte 14
	.ascii "dendou_pc.narc"
	.byte 11
	.ascii "ending.narc"
	.byte 18
	.ascii "ev_pokeselect.narc"
	.byte 15
	.ascii "f_note_gra.narc"
	.byte 16
	.ascii "field_board.narc"
	.byte 24
	.ascii "field_encounteffect.narc"
	.byte 15
	.ascii "fld_comact.narc"
	.byte 9
	.ascii "font.narc"
	.byte 12
	.ascii "fontoam.narc"
	.byte 17
	.ascii "hiden_effect.narc"
	.byte 14
	.ascii "imageclip.narc"
	.byte 13
	.ascii "mail_gra.narc"
	.byte 13
	.ascii "menu_gra.narc"
	.byte 11
	.ascii "mysign.narc"
	.byte 12
	.ascii "mystery.narc"
	.byte 13
	.ascii "ntag_gra.narc"
	.byte 13
	.ascii "nutmixer.narc"
	.byte 11
	.ascii "oekaki.narc"
	.byte 12
	.ascii "opening.narc"
	.byte 14
	.ascii "plist_gra.narc"
	.byte 9
	.ascii "pmsi.narc"
	.byte 12
	.ascii "poketch.narc"
	.byte 13
	.ascii "poru_gra.narc"
	.byte 12
	.ascii "poruact.narc"
	.byte 13
	.ascii "porudemo.narc"
	.byte 12
	.ascii "pst_gra.narc"
	.byte 12
	.ascii "ranking.narc"
	.byte 11
	.ascii "record.narc"
	.byte 13
	.ascii "shop_gra.narc"
	.byte 13
	.ascii "tmap_gra.narc"
	.byte 20
	.ascii "touch_subwindow.narc"
	.byte 17
	.ascii "trainer_case.narc"
	.byte 14
	.ascii "unionroom.narc"
	.byte 19
	.ascii "waza_oshie_gra.narc"
	.byte 13
	.ascii "winframe.narc"
	.byte 15
	.ascii "worldtrade.narc"
	.byte 0 ; end

	; Directory: /itemtool
	.byte 8 | 0x80
	.ascii "itemdata"
	.byte 0x2E, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /itemdata
	.byte 14
	.ascii "item_data.narc"
	.byte 14
	.ascii "item_icon.narc"
	.byte 14
	.ascii "nuts_data.narc"
	.byte 0 ; end

	; Directory: /msgdata
	.byte 8
	.ascii "msg.narc"
	.byte 8 | 0x80
	.ascii "scenario"
	.byte 0x30, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /scenario
	.byte 12
	.ascii "scr_msg.narc"
	.byte 0 ; end

	; Directory: /particledata
	.byte 17
	.ascii "particledata.narc"
	.byte 0 ; end

	; Directory: /pokeanime
	.byte 13
	.ascii "poke_anm.narc"
	.byte 0 ; end

	; Directory: /poketool
	.byte 14
	.ascii "pokezukan.narc"
	.byte 14
	.ascii "shinzukan.narc"
	.byte 7 | 0x80
	.ascii "icongra"
	.byte 0x34, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "personal"
	.byte 0x35, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "pokeanm"
	.byte 0x36, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "pokefoot"
	.byte 0x37, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "pokegra"
	.byte 0x38, 0xF0 ; dir ID
	.byte 7 | 0x80
	.ascii "trainer"
	.byte 0x39, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "trgra"
	.byte 0x3A, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "trmsg"
	.byte 0x3B, 0xF0 ; dir ID
	.byte 4 | 0x80
	.ascii "waza"
	.byte 0x3C, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /icongra
	.byte 14
	.ascii "poke_icon.narc"
	.byte 0 ; end

	; Directory: /personal
	.byte 8
	.ascii "evo.narc"
	.byte 12
	.ascii "growtbl.narc"
	.byte 13
	.ascii "personal.narc"
	.byte 8
	.ascii "pms.narc"
	.byte 10
	.ascii "wotbl.narc"
	.byte 0 ; end

	; Directory: /pokeanm
	.byte 12
	.ascii "pokeanm.narc"
	.byte 0 ; end

	; Directory: /pokefoot
	.byte 13
	.ascii "pokefoot.narc"
	.byte 0 ; end

	; Directory: /pokegra
	.byte 11
	.ascii "height.narc"
	.byte 13
	.ascii "height_o.narc"
	.byte 14
	.ascii "otherpoke.narc"
	.byte 16
	.ascii "poke_shadow.narc"
	.byte 20
	.ascii "poke_shadow_ofx.narc"
	.byte 14
	.ascii "poke_yofs.narc"
	.byte 12
	.ascii "pokegra.narc"
	.byte 0 ; end

	; Directory: /trainer
	.byte 11
	.ascii "trdata.narc"
	.byte 11
	.ascii "trpoke.narc"
	.byte 0 ; end

	; Directory: /trgra
	.byte 11
	.ascii "trbgra.narc"
	.byte 11
	.ascii "trfgra.narc"
	.byte 0 ; end

	; Directory: /trmsg
	.byte 10
	.ascii "trtbl.narc"
	.byte 13
	.ascii "trtblofs.narc"
	.byte 0 ; end

	; Directory: /waza
	.byte 13
	.ascii "waza_tbl.narc"
	.byte 0 ; end

	; Directory: /resource
	.byte 3 | 0x80
	.ascii "eng"
	.byte 0x3E, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /eng
	.byte 5 | 0x80
	.ascii "trial"
	.byte 0x3F, 0xF0 ; dir ID
	.byte 5 | 0x80
	.ascii "zukan"
	.byte 0x40, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /resource/trial
	.byte 10
	.ascii "trial.narc"
	.byte 0 ; end

	; Directory: /resource/zukan
	.byte 10
	.ascii "zukan.narc"
	.byte 0 ; end

	; Directory: /wazaeffect
	.byte 6
	.ascii "we.arc"
	.byte 11
	.ascii "we_sub.narc"
	.byte 11 | 0x80
	.ascii "effectclact"
	.byte 0x42, 0xF0 ; dir ID
	.byte 10 | 0x80
	.ascii "effectdata"
	.byte 0x43, 0xF0 ; dir ID
	.byte 8 | 0x80
	.ascii "pt_debug"
	.byte 0x44, 0xF0 ; dir ID
	.byte 0 ; end

	; Directory: /effectclact
	.byte 11
	.ascii "wecell.narc"
	.byte 14
	.ascii "wecellanm.narc"
	.byte 11
	.ascii "wechar.narc"
	.byte 11
	.ascii "wepltt.narc"
	.byte 0 ; end

	; Directory: /effectdata
	.byte 18
	.ascii "ball_particle.narc"
	.byte 18
	.ascii "waza_particle.narc"
	.byte 0 ; end

	; Directory: /pt_debug
	.byte 19
	.ascii "debug_particle.narc"
	.byte 0 ; end
	.balign 4, 0xFF