-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_obj_files.mk
3928 lines (3928 loc) · 227 KB
/
main_obj_files.mk
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
MAIN_O_FILES :=\
$(BUILD_DIR)/ref/asm/split/main/func_00100000.s.o \
$(BUILD_DIR)/ref/asm/split/main/_start.s.o \
$(BUILD_DIR)/ref/asm/split/main/_exit.s.o \
$(BUILD_DIR)/ref/asm/split/main/_root.s.o \
$(BUILD_DIR)/ref/asm/split/main/_dpfeq.s.o \
$(BUILD_DIR)/ref/asm/split/main/_dpfne.s.o \
$(BUILD_DIR)/ref/asm/split/main/_dpflt.s.o \
$(BUILD_DIR)/ref/asm/split/main/_dpfle.s.o \
$(BUILD_DIR)/ref/asm/split/main/_dpfgt.s.o \
$(BUILD_DIR)/ref/asm/split/main/_dpfge.s.o \
$(BUILD_DIR)/ref/asm/split/main/abort.s.o \
$(BUILD_DIR)/ref/asm/split/main/abs.s.o \
$(BUILD_DIR)/ref/asm/split/main/__assert.s.o \
$(BUILD_DIR)/ref/asm/split/main/atof.s.o \
$(BUILD_DIR)/ref/asm/split/main/atoi.s.o \
$(BUILD_DIR)/ref/asm/split/main/_calloc_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_close_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/quorem.s.o \
$(BUILD_DIR)/ref/asm/split/main/_dtoa_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/__errno.s.o \
$(BUILD_DIR)/ref/asm/split/main/exit__2.s.o \
$(BUILD_DIR)/ref/asm/split/main/fflush.s.o \
$(BUILD_DIR)/ref/asm/split/main/std.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sfmoreglue.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sfp.s.o \
$(BUILD_DIR)/ref/asm/split/main/_cleanup_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_cleanup.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sinit.s.o \
$(BUILD_DIR)/ref/asm/split/main/fiprintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/fprintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/_free_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_malloc_trim_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_fstat_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sfvwrite.s.o \
$(BUILD_DIR)/ref/asm/split/main/_fwalk.s.o \
$(BUILD_DIR)/ref/asm/split/main/_setlocale_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_localeconv_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/setlocale.s.o \
$(BUILD_DIR)/ref/asm/split/main/localeconv.s.o \
$(BUILD_DIR)/ref/asm/split/main/_lseek_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/__smakebuf.s.o \
$(BUILD_DIR)/ref/asm/split/main/malloc.s.o \
$(BUILD_DIR)/ref/asm/split/main/free.s.o \
$(BUILD_DIR)/ref/asm/split/main/malloc_extend_top.s.o \
$(BUILD_DIR)/ref/asm/split/main/_malloc_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_mbtowc_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/memchr.s.o \
$(BUILD_DIR)/ref/asm/split/main/memcmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/memcpy.s.o \
$(BUILD_DIR)/ref/asm/split/main/memmove.s.o \
$(BUILD_DIR)/ref/asm/split/main/memset.s.o \
$(BUILD_DIR)/ref/asm/split/main/__malloc_lock.s.o \
$(BUILD_DIR)/ref/asm/split/main/__malloc_unlock.s.o \
$(BUILD_DIR)/ref/asm/split/main/_Balloc.s.o \
$(BUILD_DIR)/ref/asm/split/main/_Bfree.s.o \
$(BUILD_DIR)/ref/asm/split/main/_multadd.s.o \
$(BUILD_DIR)/ref/asm/split/main/_s2b.s.o \
$(BUILD_DIR)/ref/asm/split/main/_hi0bits.s.o \
$(BUILD_DIR)/ref/asm/split/main/_lo0bits.s.o \
$(BUILD_DIR)/ref/asm/split/main/_i2b.s.o \
$(BUILD_DIR)/ref/asm/split/main/_multiply.s.o \
$(BUILD_DIR)/ref/asm/split/main/_pow5mult.s.o \
$(BUILD_DIR)/ref/asm/split/main/_lshift.s.o \
$(BUILD_DIR)/ref/asm/split/main/__mcmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/__mdiff.s.o \
$(BUILD_DIR)/ref/asm/split/main/_ulp.s.o \
$(BUILD_DIR)/ref/asm/split/main/_b2d.s.o \
$(BUILD_DIR)/ref/asm/split/main/_d2b.s.o \
$(BUILD_DIR)/ref/asm/split/main/_ratio.s.o \
$(BUILD_DIR)/ref/asm/split/main/_mprec_log10.s.o \
$(BUILD_DIR)/ref/asm/split/main/_printf_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/printf.s.o \
$(BUILD_DIR)/ref/asm/split/main/srand.s.o \
$(BUILD_DIR)/ref/asm/split/main/rand.s.o \
$(BUILD_DIR)/ref/asm/split/main/_read_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/copysign.s.o \
$(BUILD_DIR)/ref/asm/split/main/isinf.s.o \
$(BUILD_DIR)/ref/asm/split/main/isnan.s.o \
$(BUILD_DIR)/ref/asm/split/main/scalbn.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sbrk_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/copysignf.s.o \
$(BUILD_DIR)/ref/asm/split/main/isnanf.s.o \
$(BUILD_DIR)/ref/asm/split/main/scalbnf.s.o \
$(BUILD_DIR)/ref/asm/split/main/_init_signal_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_signal_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_raise_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sigtramp_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/raise.s.o \
$(BUILD_DIR)/ref/asm/split/main/signal.s.o \
$(BUILD_DIR)/ref/asm/split/main/_init_signal.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sigtramp.s.o \
$(BUILD_DIR)/ref/asm/split/main/_kill_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_getpid_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sprintf_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/sprintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sread.s.o \
$(BUILD_DIR)/ref/asm/split/main/__swrite.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sseek.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sclose.s.o \
$(BUILD_DIR)/ref/asm/split/main/strcasecmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/strcat.s.o \
$(BUILD_DIR)/ref/asm/split/main/strcmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/strcpy.s.o \
$(BUILD_DIR)/ref/asm/split/main/strlen.s.o \
$(BUILD_DIR)/ref/asm/split/main/strncmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/strncpy.s.o \
$(BUILD_DIR)/ref/asm/split/main/_strtod_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/strtod.s.o \
$(BUILD_DIR)/ref/asm/split/main/strtodf.s.o \
$(BUILD_DIR)/ref/asm/split/main/strtok.s.o \
$(BUILD_DIR)/ref/asm/split/main/strtok_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/_strtol_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/strtol.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sprint.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sbprintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/vfiprintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/_vfiprintf_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sprint__2.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sbprintf__2.s.o \
$(BUILD_DIR)/ref/asm/split/main/vfprintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/_vfprintf_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/cvt.s.o \
$(BUILD_DIR)/ref/asm/split/main/exponent.s.o \
$(BUILD_DIR)/ref/asm/split/main/_write_r.s.o \
$(BUILD_DIR)/ref/asm/split/main/__swsetup.s.o \
$(BUILD_DIR)/ref/asm/split/main/CB_DelayTh.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdDelayThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdCallback.s.o \
$(BUILD_DIR)/ref/asm/split/main/cd_callback.s.o \
$(BUILD_DIR)/ref/asm/split/main/_Cdvd_cbLoop.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdInitEeCB.s.o \
$(BUILD_DIR)/ref/asm/split/main/cd_read_intr.s.o \
$(BUILD_DIR)/ref/asm/split/main/cmd_sem_init.s.o \
$(BUILD_DIR)/ref/asm/split/main/cdvd_exit.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdIntToPos.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdPosToInt.s.o \
$(BUILD_DIR)/ref/asm/split/main/PowerOffCB.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdSearchFile.s.o \
$(BUILD_DIR)/ref/asm/split/main/ncmd_prechk.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdNcmdDiskReady.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdGetReadPos.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdReadChain.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdRead.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdReadIOPm.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdGetToc.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdSeek.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStandby.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStop.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdPause.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdSync.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdSyncS.s.o \
$(BUILD_DIR)/ref/asm/split/main/scmd_prechk.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdDiskReady.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdBreak.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdGetDiskType.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStatus.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdGetError.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceCdRI.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceCdRM.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdMmode.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdChangeThreadPriority.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdReadClock.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdApplyNCmd.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdTrayReq.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStStart.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStSeekF.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStSeek.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStStop.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStRead.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStPause.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStResume.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStStat.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceCdStream.s.o \
$(BUILD_DIR)/ref/asm/split/main/memclr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaGetChan.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaReset.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaDebug.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaPutEnv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaGetEnv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaPutStallAddr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaSend.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaSendN.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaSendI.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaRecv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaRecvN.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaRecvI.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaSendM.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaSync.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaWatch.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaSyncN.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaLastSyncTime.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaPause.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaRestart.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDmaCallback.s.o \
$(BUILD_DIR)/ref/asm/split/main/__divdi3.s.o \
$(BUILD_DIR)/ref/asm/split/main/__default_terminate.s.o \
$(BUILD_DIR)/ref/asm/split/main/__terminate.s.o \
$(BUILD_DIR)/ref/asm/split/main/__throw_type_match.s.o \
$(BUILD_DIR)/ref/asm/split/main/__empty.s.o \
$(BUILD_DIR)/ref/asm/split/main/new_eh_context.s.o \
$(BUILD_DIR)/ref/asm/split/main/__get_eh_context.s.o \
$(BUILD_DIR)/ref/asm/split/main/__get_eh_info.s.o \
$(BUILD_DIR)/ref/asm/split/main/eh_context_initialize.s.o \
$(BUILD_DIR)/ref/asm/split/main/eh_context_static.s.o \
$(BUILD_DIR)/ref/asm/split/main/__get_dynamic_handler_chain.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sjthrow.s.o \
$(BUILD_DIR)/ref/asm/split/main/__sjpopnthrow.s.o \
$(BUILD_DIR)/ref/asm/split/main/__eh_rtime_match.s.o \
$(BUILD_DIR)/ref/asm/split/main/__get_eh_table_version.s.o \
$(BUILD_DIR)/ref/asm/split/main/__get_eh_table_language.s.o \
$(BUILD_DIR)/ref/asm/split/main/old_find_exception_handler.s.o \
$(BUILD_DIR)/ref/asm/split/main/find_exception_handler.s.o \
$(BUILD_DIR)/ref/asm/split/main/get_reg_addr.s.o \
$(BUILD_DIR)/ref/asm/split/main/copy_reg.s.o \
$(BUILD_DIR)/ref/asm/split/main/next_stack_level.s.o \
$(BUILD_DIR)/ref/asm/split/main/__unwinding_cleanup.s.o \
$(BUILD_DIR)/ref/asm/split/main/throw_helper.s.o \
$(BUILD_DIR)/ref/asm/split/main/__throw.s.o \
$(BUILD_DIR)/ref/asm/split/main/__rethrow.s.o \
$(BUILD_DIR)/ref/asm/split/main/__fixdfdi.s.o \
$(BUILD_DIR)/ref/asm/split/main/__fixunsdfdi.s.o \
$(BUILD_DIR)/ref/asm/split/main/__fixunssfdi.s.o \
$(BUILD_DIR)/ref/asm/split/main/__floatdidf.s.o \
$(BUILD_DIR)/ref/asm/split/main/__moddi3.s.o \
$(BUILD_DIR)/ref/asm/split/main/__muldi3.s.o \
$(BUILD_DIR)/ref/asm/split/main/__udivdi3.s.o \
$(BUILD_DIR)/ref/asm/split/main/__umoddi3.s.o \
$(BUILD_DIR)/ref/asm/split/main/__pack_d.s.o \
$(BUILD_DIR)/ref/asm/split/main/__unpack_d.s.o \
$(BUILD_DIR)/ref/asm/split/main/_fpadd_parts.s.o \
$(BUILD_DIR)/ref/asm/split/main/dpadd.s.o \
$(BUILD_DIR)/ref/asm/split/main/dpsub.s.o \
$(BUILD_DIR)/ref/asm/split/main/dpmul.s.o \
$(BUILD_DIR)/ref/asm/split/main/dpdiv.s.o \
$(BUILD_DIR)/ref/asm/split/main/__fpcmp_parts_d.s.o \
$(BUILD_DIR)/ref/asm/split/main/dpcmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/litodp.s.o \
$(BUILD_DIR)/ref/asm/split/main/dptoli.s.o \
$(BUILD_DIR)/ref/asm/split/main/dptoul.s.o \
$(BUILD_DIR)/ref/asm/split/main/__negdf2.s.o \
$(BUILD_DIR)/ref/asm/split/main/__make_dp.s.o \
$(BUILD_DIR)/ref/asm/split/main/dptofp.s.o \
$(BUILD_DIR)/ref/asm/split/main/__pack_f.s.o \
$(BUILD_DIR)/ref/asm/split/main/__unpack_f.s.o \
$(BUILD_DIR)/ref/asm/split/main/_fpadd_parts__2.s.o \
$(BUILD_DIR)/ref/asm/split/main/fpadd.s.o \
$(BUILD_DIR)/ref/asm/split/main/fpsub.s.o \
$(BUILD_DIR)/ref/asm/split/main/fpmul.s.o \
$(BUILD_DIR)/ref/asm/split/main/fpdiv.s.o \
$(BUILD_DIR)/ref/asm/split/main/__fpcmp_parts_f.s.o \
$(BUILD_DIR)/ref/asm/split/main/fpcmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/sitofp.s.o \
$(BUILD_DIR)/ref/asm/split/main/fptosi.s.o \
$(BUILD_DIR)/ref/asm/split/main/fptoui.s.o \
$(BUILD_DIR)/ref/asm/split/main/__negsf2.s.o \
$(BUILD_DIR)/ref/asm/split/main/__make_fp.s.o \
$(BUILD_DIR)/ref/asm/split/main/fptodp.s.o \
$(BUILD_DIR)/ref/asm/split/main/decode_uleb128.s.o \
$(BUILD_DIR)/ref/asm/split/main/decode_sleb128.s.o \
$(BUILD_DIR)/ref/asm/split/main/fde_merge.s.o \
$(BUILD_DIR)/ref/asm/split/main/end_fde_sort.s.o \
$(BUILD_DIR)/ref/asm/split/main/count_fdes.s.o \
$(BUILD_DIR)/ref/asm/split/main/add_fdes.s.o \
$(BUILD_DIR)/ref/asm/split/main/frame_init.s.o \
$(BUILD_DIR)/ref/asm/split/main/find_fde.s.o \
$(BUILD_DIR)/ref/asm/split/main/extract_cie_info.s.o \
$(BUILD_DIR)/ref/asm/split/main/execute_cfa_insn.s.o \
$(BUILD_DIR)/ref/asm/split/main/__register_frame_info.s.o \
$(BUILD_DIR)/ref/asm/split/main/__register_frame.s.o \
$(BUILD_DIR)/ref/asm/split/main/__register_frame_info_table.s.o \
$(BUILD_DIR)/ref/asm/split/main/__register_frame_table.s.o \
$(BUILD_DIR)/ref/asm/split/main/__deregister_frame_info.s.o \
$(BUILD_DIR)/ref/asm/split/main/__deregister_frame.s.o \
$(BUILD_DIR)/ref/asm/split/main/__frame_state_for.s.o \
$(BUILD_DIR)/ref/asm/split/main/fde_split.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsResetGraph.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsGetGParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsResetPath.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSetDefDispEnv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsPutDispEnv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGszbufaddr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSetDefDrawEnv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSetDefClear.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsPutDrawEnv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSetDefDBuff.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSwapDBuff.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSyncV.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSyncPath.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSetDefLoadImage.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSetDefStoreImage.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsExecLoadImage.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsExecStoreImage.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSyncVCallback.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGsSetHalfOffset.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU000_FullReset.s.o \
$(BUILD_DIR)/ref/asm/split/main/ResetEE.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetGsCrt.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU003.s.o \
$(BUILD_DIR)/ref/asm/split/main/Exit.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU005.s.o \
$(BUILD_DIR)/ref/asm/split/main/LoadExecPS2.s.o \
$(BUILD_DIR)/ref/asm/split/main/ExecPS2.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU008.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU009.s.o \
$(BUILD_DIR)/ref/asm/split/main/AddSbusIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/RemoveSbusIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/Interrupt2Iop.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetVTLBRefillHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetVCommonHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetVInterruptHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/AddIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/AddIntcHandler2.s.o \
$(BUILD_DIR)/ref/asm/split/main/RemoveIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/AddDmacHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/AddDmacHandler2.s.o \
$(BUILD_DIR)/ref/asm/split/main/RemoveDmacHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/_EnableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/_DisableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/_EnableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/_DisableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/_SetAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/_ReleaseAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iEnableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iDisableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iEnableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iDisableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iSetAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iReleaseAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/CreateThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/DeleteThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/StartThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/ExitThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/ExitDeleteThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/TerminateThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/iTerminateThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/DisableDispatchThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/EnableDispatchThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/ChangeThreadPriority.s.o \
$(BUILD_DIR)/ref/asm/split/main/iChangeThreadPriority.s.o \
$(BUILD_DIR)/ref/asm/split/main/RotateThreadReadyQueue.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iRotateThreadReadyQueue.s.o \
$(BUILD_DIR)/ref/asm/split/main/ReleaseWaitThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/iReleaseWaitThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetThreadId.s.o \
$(BUILD_DIR)/ref/asm/split/main/ReferThreadStatus.s.o \
$(BUILD_DIR)/ref/asm/split/main/iReferThreadStatus.s.o \
$(BUILD_DIR)/ref/asm/split/main/SleepThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/WakeupThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iWakeupThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/CancelWakeupThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/iCancelWakeupThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/SuspendThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/_iSuspendThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/ResumeThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/iResumeThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/JoinThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU060.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU061.s.o \
$(BUILD_DIR)/ref/asm/split/main/EndOfHeap.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU063.s.o \
$(BUILD_DIR)/ref/asm/split/main/CreateSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/DeleteSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/SignalSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/iSignalSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/WaitSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/PollSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/iPollSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/ReferSemaStatus.s.o \
$(BUILD_DIR)/ref/asm/split/main/iReferSemaStatus.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU073.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetOsdConfigParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetOsdConfigParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetGsHParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetGsVParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetGsHParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetGsVParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU080_CreateEventFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU081_DeleteEventFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU082_SetEventFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU083_iSetEventFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU084_ClearEventFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU085_iClearEventFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU086_WaitEvnetFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU087_PollEvnetFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU088_iPollEvnetFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU089_ReferEventFlagStatus.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU090_iReferEventFlagStatus.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU091.s.o \
$(BUILD_DIR)/ref/asm/split/main/EnableIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/iEnableIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/DisableIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/iDisableIntcHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/EnableDmacHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/iEnableDmacHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/DisableDmacHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/iDisableDmacHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/KSeg0.s.o \
$(BUILD_DIR)/ref/asm/split/main/EnableCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/DisableCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetCop0.s.o \
$(BUILD_DIR)/ref/asm/split/main/FlushCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/CpuConfig.s.o \
$(BUILD_DIR)/ref/asm/split/main/iGetCop0.s.o \
$(BUILD_DIR)/ref/asm/split/main/iFlushCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/iCpuConfig.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifStopDma.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetCPUTimerHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetCPUTimer.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetOsdConfigParam2.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetOsdConfigParam2.s.o \
$(BUILD_DIR)/ref/asm/split/main/GsGetIMR.s.o \
$(BUILD_DIR)/ref/asm/split/main/iGsGetIMR.s.o \
$(BUILD_DIR)/ref/asm/split/main/GsPutIMR.s.o \
$(BUILD_DIR)/ref/asm/split/main/iGsPutIMR.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetPgifHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetVSyncFlag.s.o \
$(BUILD_DIR)/ref/asm/split/main/RFU116.s.o \
$(BUILD_DIR)/ref/asm/split/main/print.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifDmaStat.s.o \
$(BUILD_DIR)/ref/asm/split/main/isceSifDmaStat.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetDma.s.o \
$(BUILD_DIR)/ref/asm/split/main/isceSifSetDma.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetDChain.s.o \
$(BUILD_DIR)/ref/asm/split/main/isceSifSetDChain.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetReg.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifGetReg.s.o \
$(BUILD_DIR)/ref/asm/split/main/ExecOSD.s.o \
$(BUILD_DIR)/ref/asm/split/main/Deci2Call.s.o \
$(BUILD_DIR)/ref/asm/split/main/PSMode.s.o \
$(BUILD_DIR)/ref/asm/split/main/MachineType.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetMemorySize.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceResetttyinit.s.o \
$(BUILD_DIR)/ref/asm/split/main/VSync.s.o \
$(BUILD_DIR)/ref/asm/split/main/VSync2.s.o \
$(BUILD_DIR)/ref/asm/split/main/write.s.o \
$(BUILD_DIR)/ref/asm/split/main/read.s.o \
$(BUILD_DIR)/ref/asm/split/main/open.s.o \
$(BUILD_DIR)/ref/asm/split/main/close.s.o \
$(BUILD_DIR)/ref/asm/split/main/ioctl.s.o \
$(BUILD_DIR)/ref/asm/split/main/lseek.s.o \
$(BUILD_DIR)/ref/asm/split/main/sbrk.s.o \
$(BUILD_DIR)/ref/asm/split/main/isatty.s.o \
$(BUILD_DIR)/ref/asm/split/main/fstat.s.o \
$(BUILD_DIR)/ref/asm/split/main/getpid.s.o \
$(BUILD_DIR)/ref/asm/split/main/kill.s.o \
$(BUILD_DIR)/ref/asm/split/main/stat.s.o \
$(BUILD_DIR)/ref/asm/split/main/unlink.s.o \
$(BUILD_DIR)/ref/asm/split/main/putnum.s.o \
$(BUILD_DIR)/ref/asm/split/main/get_mem_info.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceSDC.s.o \
$(BUILD_DIR)/ref/asm/split/main/SyncDCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/iSyncDCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceIDC.s.o \
$(BUILD_DIR)/ref/asm/split/main/InvalidDCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/iInvalidDCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/DisableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/EnableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/DisableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/EnableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/ReleaseAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/iEnableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/iDisableIntc.s.o \
$(BUILD_DIR)/ref/asm/split/main/iEnableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/iDisableDmac.s.o \
$(BUILD_DIR)/ref/asm/split/main/iSetAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/iReleaseAlarm.s.o \
$(BUILD_DIR)/ref/asm/split/main/topThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/InitThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/iWakeupThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/iRotateThreadReadyQueue.s.o \
$(BUILD_DIR)/ref/asm/split/main/iSuspendThread.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2Open.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2Close.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2ReqSend.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2Poll.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2ExRecv.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2ExSend.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2ExReqSend.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2ExLock.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceDeci2ExUnLock.s.o \
$(BUILD_DIR)/ref/asm/split/main/kputs.s.o \
$(BUILD_DIR)/ref/asm/split/main/QueueInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/QueuePeekWriteDone.s.o \
$(BUILD_DIR)/ref/asm/split/main/QueuePeekReadDone.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceTtyHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceTtyWrite.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceTtyRead.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceTtyInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/kputchar.s.o \
$(BUILD_DIR)/ref/asm/split/main/deci2Putchar.s.o \
$(BUILD_DIR)/ref/asm/split/main/serialPutchar.s.o \
$(BUILD_DIR)/ref/asm/split/main/ftoi.s.o \
$(BUILD_DIR)/ref/asm/split/main/itof.s.o \
$(BUILD_DIR)/ref/asm/split/main/printfloat.s.o \
$(BUILD_DIR)/ref/asm/split/main/_printf.s.o \
$(BUILD_DIR)/ref/asm/split/main/kprintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePrintf.s.o \
$(BUILD_DIR)/ref/asm/split/main/_set_sreg.s.o \
$(BUILD_DIR)/ref/asm/split/main/_change_addr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifGetSreg.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetSreg.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifGetDataTable.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifInitCmd.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifExitCmd.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetCmdBuffer.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetSysCmdBuffer.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifAddCmdHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifRemoveCmdHandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceSifSendCmd.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSendCmd.s.o \
$(BUILD_DIR)/ref/asm/split/main/isceSifSendCmd.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceSifCmdIntrHdlr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifWriteBackDCache.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifInitRpc.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifExitRpc.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceRpcGetPacket.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceRpcFreePacket.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceRpcGetFPacket.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceRpcGetFPacket2.s.o \
$(BUILD_DIR)/ref/asm/split/main/_request_end.s.o \
$(BUILD_DIR)/ref/asm/split/main/_request_rdata.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifGetOtherData.s.o \
$(BUILD_DIR)/ref/asm/split/main/_search_svdata.s.o \
$(BUILD_DIR)/ref/asm/split/main/_request_bind.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifBindRpc.s.o \
$(BUILD_DIR)/ref/asm/split/main/_request_call.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifCallRpc.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifCheckStatRpc.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetRpcQueue.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifRegisterRpc.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifRemoveRpc.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifRemoveRpcQueue.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifGetNextRequest.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifExecRequest.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifRpcLoop.s.o \
$(BUILD_DIR)/ref/asm/split/main/new_iob.s.o \
$(BUILD_DIR)/ref/asm/split/main/get_iob.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceFsSemInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceFsSemExit.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceFsDbChk.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceFsSigSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceFsIntrSigSema.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceFsInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/_fs_version.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceFsReset.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceOpen.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceClose.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceLseek.s.o \
$(BUILD_DIR)/ref/asm/split/main/fs_read_intr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceRead.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceWrite.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceIoctl.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifInitIopHeap.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifAllocIopHeap.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifFreeIopHeap.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifLoadIopHeap.s.o \
$(BUILD_DIR)/ref/asm/split/main/_lf_bind.s.o \
$(BUILD_DIR)/ref/asm/split/main/_lf_version.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifLoadFileReset.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifLoadModuleBuffer.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceSifLoadModule.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifLoadModule.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceSifLoadElfPart.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifLoadElfPart.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifLoadElf.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifGetIopAddr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSetIopAddr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifResetIop.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifIsAliveIop.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifSyncIop.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSifRebootIop.s.o \
$(BUILD_DIR)/ref/asm/split/main/__ieee754_atan2.s.o \
$(BUILD_DIR)/ref/asm/split/main/__ieee754_rem_pio2.s.o \
$(BUILD_DIR)/ref/asm/split/main/__ieee754_sqrt.s.o \
$(BUILD_DIR)/ref/asm/split/main/__ieee754_acosf.s.o \
$(BUILD_DIR)/ref/asm/split/main/__ieee754_atan2f.s.o \
$(BUILD_DIR)/ref/asm/split/main/__ieee754_rem_pio2f.s.o \
$(BUILD_DIR)/ref/asm/split/main/__ieee754_sqrtf.s.o \
$(BUILD_DIR)/ref/asm/split/main/__kernel_cos.s.o \
$(BUILD_DIR)/ref/asm/split/main/__kernel_rem_pio2.s.o \
$(BUILD_DIR)/ref/asm/split/main/__kernel_sin.s.o \
$(BUILD_DIR)/ref/asm/split/main/__kernel_cosf.s.o \
$(BUILD_DIR)/ref/asm/split/main/__kernel_rem_pio2f.s.o \
$(BUILD_DIR)/ref/asm/split/main/__kernel_sinf.s.o \
$(BUILD_DIR)/ref/asm/split/main/__kernel_tanf.s.o \
$(BUILD_DIR)/ref/asm/split/main/atan.s.o \
$(BUILD_DIR)/ref/asm/split/main/cos.s.o \
$(BUILD_DIR)/ref/asm/split/main/fabs.s.o \
$(BUILD_DIR)/ref/asm/split/main/floor.s.o \
$(BUILD_DIR)/ref/asm/split/main/matherr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sin.s.o \
$(BUILD_DIR)/ref/asm/split/main/atanf.s.o \
$(BUILD_DIR)/ref/asm/split/main/cosf.s.o \
$(BUILD_DIR)/ref/asm/split/main/fabsf.s.o \
$(BUILD_DIR)/ref/asm/split/main/floorf.s.o \
$(BUILD_DIR)/ref/asm/split/main/sinf.s.o \
$(BUILD_DIR)/ref/asm/split/main/tanf.s.o \
$(BUILD_DIR)/ref/asm/split/main/atan2.s.o \
$(BUILD_DIR)/ref/asm/split/main/sqrt.s.o \
$(BUILD_DIR)/ref/asm/split/main/acosf.s.o \
$(BUILD_DIR)/ref/asm/split/main/atan2f.s.o \
$(BUILD_DIR)/ref/asm/split/main/sqrtf.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/_lmcGetClientPtr.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcChangeThreadPriority.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcGetSlotMax.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcOpen.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcMkdir.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcClose.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcSeek.s.o \
$(BUILD_DIR)/ref/asm/split/main/mceIntrReadFixAlign.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcRead.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcWrite.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcSync.s.o \
$(BUILD_DIR)/ref/asm/split/main/mceGetInfoApdx.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcGetInfo.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcGetDir.s.o \
$(BUILD_DIR)/ref/asm/split/main/mceStorePwd.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcChdir.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcFormat.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcDelete.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcFlush.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcSetFileInfo.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcRename.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcUnformat.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMcGetEntSpace.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMSIn_Init.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMSIn_ATick.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMSIn_Load.s.o \
$(BUILD_DIR)/ref/asm/split/main/put_message.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMSIn_PutMsg.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMSIn_PutExcMsg.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceMSIn_PutHsMsg.s.o \
$(BUILD_DIR)/ref/asm/split/main/_send_to_iop.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadInit2.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadEnd.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadPortOpen.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadPortClose.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetDmaStr.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetFrameCount.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadRead.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetState.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadStateIntToStr.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadSetReqState.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetReqState.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadReqIntToStr.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadInfoAct.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadInfoComb.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadInfoMode.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadSetMainMode.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadSetActDirect.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadSetActAlign.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetButtonMask.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadSetButtonInfo.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadInfoPressMode.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadEnterPressMode.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadExitPressMode.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadSetVrefParam.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetPortMax.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetSlotMax.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadGetModVersion.s.o \
$(BUILD_DIR)/ref/asm/split/main/scePadSetWarningLevel.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkReset.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkTerminate.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkCnt.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkRef.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkEnd.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkReserve.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkOpenGifTag.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkCloseGifTag.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkAddGsAD.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceGifPkRefLoadImage.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkReset.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkTerminate.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkCnt.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkRef.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkCall.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkEnd.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkOpenDirectCode.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkCloseDirectCode.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkOpenGifTag.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkCloseGifTag.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkReserve.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkAlign.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkAddCode.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkAddGsAD.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVif1PkRefLoadImage.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSdRemoteInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSdTransToIOP.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSdCallBack.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceSdRemote.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ApplyMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0MulMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0OuterProduct.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0InnerProduct.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0Normalize.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0TransposeMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0InversMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0DivVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0DivVectorXYZ.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0InterVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0AddVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0SubVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0MulVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ScaleVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0TransMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0CopyVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0CopyMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0FTOI4Vector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0FTOI0Vector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ITOF4Vector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ITOF0Vector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0UnitMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/_sceVu0ecossin.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0RotMatrixZ.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0RotMatrixX.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0RotMatrixY.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0RotMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ClampVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0CameraMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0NormalLightMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0LightColorMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ViewScreenMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0DropShadowMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0RotTransPersN.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0RotTransPers.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0CopyVectorXYZ.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0InterVectorXYZ.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ScaleVectorXYZ.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ClipScreen.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ClipScreen3.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVu0ClipAll.s.o \
$(BUILD_DIR)/ref/asm/split/main/sceVpu0Reset.s.o \
$(BUILD_DIR)/ref/asm/split/main/__construct_array.s.o \
$(BUILD_DIR)/ref/asm/split/main/__construct_new_array.s.o \
$(BUILD_DIR)/ref/asm/split/main/operator_delete.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00122590.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00122600.s.o \
$(BUILD_DIR)/ref/asm/split/main/__throw_catch_compare.s.o \
$(BUILD_DIR)/ref/asm/split/main/std__unexpected.s.o \
$(BUILD_DIR)/ref/asm/split/main/std__terminate.s.o \
$(BUILD_DIR)/ref/asm/split/main/std__duhandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/std__dthandler.s.o \
$(BUILD_DIR)/ref/asm/split/main/__register_global_object.s.o \
$(BUILD_DIR)/ref/asm/split/main/__initialize_cpp_rts.s.o \
$(BUILD_DIR)/ref/asm/split/main/__DecodeUnsignedNumber.s.o \
$(BUILD_DIR)/ref/asm/split/main/__DecodeSignedNumber.s.o \
$(BUILD_DIR)/ref/asm/split/main/__end__catch.s.o \
$(BUILD_DIR)/ref/asm/split/main/__unexpected.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00122D00.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00122D90.s.o \
$(BUILD_DIR)/ref/asm/split/main/mwInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/mwOverlayInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/MWNotifyOverlayLoaded.s.o \
$(BUILD_DIR)/ref/asm/split/main/mwBload.s.o \
$(BUILD_DIR)/ref/asm/split/main/mwLoadOverlay.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMax.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMax_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMax_3.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMin.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMin_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMaxMin.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMaxMin_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorMaxMin_3.s.o \
$(BUILD_DIR)/ref/asm/split/main/PlaneNormal.s.o \
$(BUILD_DIR)/ref/asm/split/main/DistPlanePoint.s.o \
$(BUILD_DIR)/ref/asm/split/main/ReflectionPlane.s.o \
$(BUILD_DIR)/ref/asm/split/main/IntersectionPoint_line_poly3.s.o \
$(BUILD_DIR)/ref/asm/split/main/Check_Point_Poly3_XYZ.s.o \
$(BUILD_DIR)/ref/asm/split/main/DistVector.s.o \
$(BUILD_DIR)/ref/asm/split/main/DistVector_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/MulMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/RotMatrixY.s.o \
$(BUILD_DIR)/ref/asm/split/main/LookAtMatrixZ.s.o \
$(BUILD_DIR)/ref/asm/split/main/ApplyMatrixN.s.o \
$(BUILD_DIR)/ref/asm/split/main/VectorInterpolate.s.o \
$(BUILD_DIR)/ref/asm/split/main/AngleInterpolate.s.o \
$(BUILD_DIR)/ref/asm/split/main/AngleCmp.s.o \
$(BUILD_DIR)/ref/asm/split/main/AngleLimit.s.o \
$(BUILD_DIR)/ref/asm/split/main/rnd.s.o \
$(BUILD_DIR)/ref/asm/split/main/nrnd.s.o \
$(BUILD_DIR)/ref/asm/split/main/CreateSinTable.s.o \
$(BUILD_DIR)/ref/asm/split/main/Sinf_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/Cosf_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__Step.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__Stay.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetPos.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetPos_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetNextPos.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetRef.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetRef_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetRef_3.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetNextRef.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__GetDir.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__GetCameraMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetSpeed.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__SetRoll.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__GetPos.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__GetRef.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__GetAngleH.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera__GetRoll.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera____ct.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCamera____dt.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__Step.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__Stay.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__operatorequals.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__SetFollow.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__FollowOn.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__FollowOff.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__SetAngle.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__SetAngleSoon.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__GetAngle.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__AddAngle.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__SetDistance.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__GetDistance.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__AddDistance.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__SetHeight.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__GetHeight.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow__AddHeight.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow____ct.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCameraFollow____dt.s.o \
$(BUILD_DIR)/ref/asm/split/main/vu_maxmin3.s.o \
$(BUILD_DIR)/ref/asm/split/main/vu_normal.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollision__CreateBBox.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00124EB0.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollisionMDT__GetPolygon.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollisionMDT__GetMaxY.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollisionMDT__Intersection.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollisionMDT__GetVertexAddress.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollisionMDT__PickUpNearPoly.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollisionMDT__PickUpNearPoly_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CCollisionMDT__PickUpNearPoly_3.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00125970.s.o \
$(BUILD_DIR)/ref/asm/split/main/InitializeDataBuffer.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetDataBuffer.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetPacketReadBuffer.s.o \
$(BUILD_DIR)/ref/asm/split/main/BufferAllClear.s.o \
$(BUILD_DIR)/ref/asm/split/main/htoi.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetFrameAttr.s.o \
$(BUILD_DIR)/ref/asm/split/main/LoadMDSFile.s.o \
$(BUILD_DIR)/ref/asm/split/main/CreateVisual.s.o \
$(BUILD_DIR)/ref/asm/split/main/ArrangeShadowMDT.s.o \
$(BUILD_DIR)/ref/asm/split/main/LoadMDSFileLOD.s.o \
$(BUILD_DIR)/ref/asm/split/main/LoadCollisionFile.s.o \
$(BUILD_DIR)/ref/asm/split/main/CreateCollisionMDT.s.o \
$(BUILD_DIR)/ref/asm/split/main/LoadMDSFile_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CreateBBox.s.o \
$(BUILD_DIR)/ref/asm/split/main/CopyFrameVu1.s.o \
$(BUILD_DIR)/ref/asm/split/main/CopyFrame.s.o \
$(BUILD_DIR)/ref/asm/split/main/LoadLODData.s.o \
$(BUILD_DIR)/ref/asm/split/main/LoadCollisionFile_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00127830.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00127840.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00127850.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00127860.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00127870.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00127880.s.o \
$(BUILD_DIR)/ref/asm/split/main/func_00127890.s.o \
$(BUILD_DIR)/ref/asm/split/main/CDataAlloc2_1___Alloc.s.o \
$(BUILD_DIR)/ref/asm/split/main/CDataAlloc2_1___Alloc64.s.o \
$(BUILD_DIR)/ref/asm/split/main/CDataAlloc2_1___Align64.s.o \
$(BUILD_DIR)/ref/asm/split/main/CDataAlloc_1_1690000___Alloc64.s.o \
$(BUILD_DIR)/ref/asm/split/main/CDataAlloc_1_1690000___Align64.s.o \
$(BUILD_DIR)/ref/asm/split/main/CDataAlloc2_1_____ct.s.o \
$(BUILD_DIR)/ref/asm/split/main/__nw__FUiP1.s.o \
$(BUILD_DIR)/ref/asm/split/main/__nwa__FUiP1.s.o \
$(BUILD_DIR)/ref/asm/split/main/DevInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/QuatToMat.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameAttr__Initialize.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameAttr____ct.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__Initialize.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetPosition.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetPosition_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetScale.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetScale_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__GetFrameNum.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetParent.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetBrother.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetChild.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetReference.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__DeleteReference.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__GetLWMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__GetInverseMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetTransMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetTransMatrix_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/StrCmp_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/FrameNameComp.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SearchFrame.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__GetBoundBox.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__ScaleBoundBox.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetAttr.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__GetWorldPosition.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetRotation.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__GetRotation.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetRotType.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__operatorequals.s.o \
$(BUILD_DIR)/ref/asm/split/main/ShadowMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/ShadowClipBox.s.o \
$(BUILD_DIR)/ref/asm/split/main/SetGsReg3.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameVu1__DrawVu1.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameVu1__DrawVu1_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__SetCollision.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__DrawVu1.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__DrawVu1_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame____ct.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameVu1__SetVisual.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameVu1__GetVisual.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameVu1__Initialize.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameVu1____ct.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrameVu1__operatorequals.s.o \
$(BUILD_DIR)/ref/asm/split/main/pre_trance_normal.s.o \
$(BUILD_DIR)/ref/asm/split/main/trance_normal.s.o \
$(BUILD_DIR)/ref/asm/split/main/CFrame__PickUpNearPoly.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__Init.s.o \
$(BUILD_DIR)/ref/asm/split/main/pad_button_read.s.o \
$(BUILD_DIR)/ref/asm/split/main/read_pad.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__UpDate.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__Step.s.o \
$(BUILD_DIR)/ref/asm/split/main/AxisCalibration.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetRX.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetRY.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLX.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLY.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetRX2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetRY2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLX2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLY2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__AllOn.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__CancelAutoRepeat.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__SetAutoRepeat.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__KeyLock.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__KeyLock2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetPadOn.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetPadDown.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetPadUp.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetRXf.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetRYf.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLXf.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLYf.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLXf2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__GetLYf2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__On.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__On2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__Down.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__Down2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__AutoRepeatOff.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__MenuModeOn.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__MenuModeOff.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__SetVibration.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__VibrationEnable.s.o \
$(BUILD_DIR)/ref/asm/split/main/CGamePad__StopVibration.s.o \
$(BUILD_DIR)/ref/asm/split/main/CSpriteTable__DrawTable.s.o \
$(BUILD_DIR)/ref/asm/split/main/CSpriteTable__AddTable.s.o \
$(BUILD_DIR)/ref/asm/split/main/CSpriteTable__AddTable_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/CSpriteTable__Initialize.s.o \
$(BUILD_DIR)/ref/asm/split/main/CSpriteTable__GetNext.s.o \
$(BUILD_DIR)/ref/asm/split/main/CSpriteTable__ClearPointer.s.o \
$(BUILD_DIR)/ref/asm/split/main/VSyncCallBack.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGGetVSyncCount.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGInit.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGInitVSyncCallBack.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGInitVif1Packet__FP1P1.s.o \
$(BUILD_DIR)/ref/asm/split/main/StoreImage.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGBeginFrame.s.o \
$(BUILD_DIR)/ref/asm/split/main/WaitVSync.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGEndFrame.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGFlipWaitVSync.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetRenderInfo.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetProjection.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGGetProjection.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetWindowRect.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetWindowRect_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetPLight.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGGetPLight.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetAmbient.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGGetAmbient.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetViewMatrix_sub.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetViewMatrix.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetViewMatrix_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetFogParm.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetBGColor.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetBGColor_2.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGGetBGColor.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGScisioringForce.s.o \
$(BUILD_DIR)/ref/asm/split/main/GetVif1Packet.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGRotTransPers.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGRotTransPers2D.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGRotTransPers3DSprite.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGCalcColor.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGClipVertex.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGClipBox.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGDraw.s.o \
$(BUILD_DIR)/ref/asm/split/main/MGSetGsTEST.s.o \