-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpcsx-ab.map
3246 lines (3159 loc) · 197 KB
/
pcsx-ab.map
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
Archive member included to satisfy reference by file (symbol)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o)
plugins/gpu_neon/psx_gpu_if.o (__aeabi_ldivmod)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_uldivmod.o)
libpcsxcore/cdriso.o (__aeabi_uldivmod)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_dvmd_lnx.o)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o) (__aeabi_ldiv0)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_clear_cache.o)
libpcsxcore/new_dynarec/new_dynarec.o (__clear_cache)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o) (__udivmoddi4)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o (__libc_csu_init)
/home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
libpcsxcore/sio.o (stat64)
Allocating common symbols
Common symbol size file
CDR_getStatus 0x4 libpcsxcore/plugins.o
pl_plat_hud_print 0x4 frontend/plugin_lib.o
GPU_clearDynarec 0x4 libpcsxcore/plugins.o
ok_image 0x80 frontend/main.o
PAD1_setSensitive 0x4 libpcsxcore/plugins.o
PAD_CONFIG_ARRAY 0x40 frontend/libpicofe/in_ableem.o
ffile 0x40 libpcsxcore/psxbios.o
SPU_registerScheduleCb
0x4 libpcsxcore/plugins.o
NET_recvPadData 0x4 libpcsxcore/plugins.o
g_layer_y 0x4 frontend/plugin_lib.o
PAD2_query 0x4 libpcsxcore/plugins.o
translation_cache 0x1000000 libpcsxcore/new_dynarec/new_dynarec.o
PAD2_close 0x4 libpcsxcore/plugins.o
State_CdlPause 0x1 libpcsxcore/cdrom.o
PAD1_about 0x4 libpcsxcore/plugins.o
changedisc_message 0x80 frontend/main.o
cycle_multiplier 0x4 libpcsxcore/new_dynarec/new_dynarec.o
cfgfile_basename 0x100 frontend/main.o
SPU_init 0x4 libpcsxcore/plugins.o
plat_sdl_resize_cb 0x4 frontend/libpicofe/plat_sdl.o
soft_filter 0x4 frontend/menu.o
CDR_configure 0x4 libpcsxcore/plugins.o
PAD2_setSensitive 0x4 libpcsxcore/plugins.o
cdr 0x89d8 libpcsxcore/cdrom.o
GPU_makeSnapshot 0x4 libpcsxcore/plugins.o
emu_action 0x4 frontend/main.o
new_dynarec_hacks 0x4 libpcsxcore/new_dynarec/new_dynarec.o
p2_connected 0x4 libpcsxcore/sio.o
jump_in 0x4000 libpcsxcore/new_dynarec/new_dynarec.o
g_layer_h 0x4 frontend/plugin_lib.o
gl_es_surface 0x4 frontend/libpicofe/gl.o
plat_target 0x34 frontend/libpicofe/plat_dummy.o
in_state_gun 0x4 frontend/plugin_lib.o
cdimg_read_func 0x4 libpcsxcore/cdriso.o
SPU_about 0x4 libpcsxcore/plugins.o
GPU_writeData 0x4 libpcsxcore/plugins.o
CDR_open 0x4 libpcsxcore/plugins.o
vertexes 0x40 plugins/gpu_neon/psx_gpu_if.o
NET_init 0x4 libpcsxcore/plugins.o
xaSave_iRightVolume
0x4 libpcsxcore/cdrom.o
GPU_init 0x4 libpcsxcore/plugins.o
PAD1_init 0x4 libpcsxcore/plugins.o
PAD2_startPoll 0x4 libpcsxcore/plugins.o
psxMapHook 0x4 libpcsxcore/psxmem.o
PAD1_configure 0x4 libpcsxcore/plugins.o
CDR_readCDDA 0x4 libpcsxcore/plugins.o
Mcd2Data 0x20000 libpcsxcore/sio.o
pl_plat_clear 0x4 frontend/plugin_lib.o
biosB0 0x400 libpcsxcore/psxbios.o
McdDisable 0x2 libpcsxcore/sio.o
GPU_readDataMem 0x4 libpcsxcore/plugins.o
gpu 0x1134 plugins/gpulib/gpu.o
PAD2_test 0x4 libpcsxcore/plugins.o
CurCmd 0x1 plugins/dfinput/main.o
plat_sdl_gl_active 0x4 frontend/libpicofe/plat_sdl.o
CDR_readTrack 0x4 libpcsxcore/plugins.o
NET_close 0x4 libpcsxcore/plugins.o
GPU_dmaChain 0x4 libpcsxcore/plugins.o
plat_sdl_screen 0x4 frontend/libpicofe/plat_sdl.o
g_menuscreen_h 0x4 frontend/menu.o
GPU_displayText 0x4 libpcsxcore/plugins.o
PAD2_shutdown 0x4 libpcsxcore/plugins.o
SPU_registerCallback
0x4 libpcsxcore/plugins.o
sdl2_texture 0x4 frontend/libpicofe/plat_sdl.o
PAD2_about 0x4 libpcsxcore/plugins.o
psxUnmapHook 0x4 libpcsxcore/psxmem.o
PAD1_keypressed 0x4 libpcsxcore/plugins.o
GPU_shutdown 0x4 libpcsxcore/plugins.o
g_menubg_src_ptr 0x4 frontend/menu.o
analog_deadzone 0x4 frontend/menu.o
Config 0xd0e libpcsxcore/psxcommon.o
GPU_test 0x4 libpcsxcore/plugins.o
padd1 0x66 libpcsxcore/plugins.o
solodisc_message 0x80 frontend/main.o
PAD2_configure 0x4 libpcsxcore/plugins.o
g_layer_x 0x4 frontend/plugin_lib.o
CDR_getBufferSub 0x4 libpcsxcore/plugins.o
SPU_async 0x4 libpcsxcore/plugins.o
gl_es_display 0x4 frontend/libpicofe/gl.o
SPU_playADPCMchannel
0x4 libpcsxcore/plugins.o
sbi_sectors 0x4 libpcsxcore/ppf.o
spu 0x900 plugins/dfsound/spu.o
NET_recvData 0x4 libpcsxcore/plugins.o
NET_pause 0x4 libpcsxcore/plugins.o
NET_keypressed 0x4 libpcsxcore/plugins.o
g_autostateld_opt 0x4 frontend/menu.o
SPU_writeDMA 0x4 libpcsxcore/plugins.o
GPU_writeDataMem 0x4 libpcsxcore/plugins.o
SPU_fadein 0x4 libpcsxcore/plugins.o
GPU_about 0x4 libpcsxcore/plugins.o
CDR_shutdown 0x4 libpcsxcore/plugins.o
GPU_vBlank 0x4 libpcsxcore/plugins.o
CDR_getTD 0x4 libpcsxcore/plugins.o
g_menuscreen_ptr 0x4 frontend/menu.o
PAD1_readPort1 0x4 libpcsxcore/plugins.o
Mcd1Data 0x20000 libpcsxcore/sio.o
ChanBuf 0xe08 plugins/dfsound/spu.o
NET_test 0x4 libpcsxcore/plugins.o
plat_sdl_quit_cb 0x4 frontend/libpicofe/plat_sdl.o
GPU_readData 0x4 libpcsxcore/plugins.o
SPU_close 0x4 libpcsxcore/plugins.o
PAD2_readPort2 0x4 libpcsxcore/plugins.o
scanlines 0x4 frontend/menu.o
CDR_close 0x4 libpcsxcore/plugins.o
GPU_readStatus 0x4 libpcsxcore/plugins.o
SPU_writeDMAMem 0x4 libpcsxcore/plugins.o
GPU_configure 0x4 libpcsxcore/plugins.o
hud_new_msg 0x4 frontend/main.o
isUnknowCdrom 0x4 frontend/main.o
PAD1_test 0x4 libpcsxcore/plugins.o
PAD1_query 0x4 libpcsxcore/plugins.o
PAD1_poll 0x4 libpcsxcore/plugins.o
spu_config 0x20 plugins/dfsound/spu.o
padd2 0x66 libpcsxcore/plugins.o
SPU_enableRvbConfig
0x4 libpcsxcore/plugins.o
NET_shutdown 0x4 libpcsxcore/plugins.o
GPU_setPatchFlag 0x4 libpcsxcore/plugins.o
new_dynarec_did_compile
0x4 libpcsxcore/new_dynarec/new_dynarec.o
INCLUDE_TITLE 0x8 libpcsxcore/cdrom.o
g_layer_w 0x4 frontend/plugin_lib.o
NET_about 0x4 libpcsxcore/plugins.o
SPU_open 0x4 libpcsxcore/plugins.o
CmdLen 0x1 plugins/dfinput/main.o
CDR_setfilename 0x4 libpcsxcore/plugins.o
ready_to_go 0x4 frontend/main.o
cdrIsoMultidiskSelect
0x4 libpcsxcore/cdriso.o
PAD2_keypressed 0x4 libpcsxcore/plugins.o
CDR_test 0x4 libpcsxcore/plugins.o
pl_plat_blit 0x4 frontend/plugin_lib.o
CDR_getDriveLetter 0x4 libpcsxcore/plugins.o
nottime_message 0x80 frontend/main.o
g_emu_want_quit 0x4 frontend/main.o
NET_configure 0x4 libpcsxcore/plugins.o
biosC0 0x400 libpcsxcore/psxbios.o
GPU_keypressed 0x4 libpcsxcore/plugins.o
tsdev 0x4 frontend/plugin_lib.o
pfile 0x4 libpcsxcore/psxbios.o
CDR_getTE 0x4 libpcsxcore/plugins.o
event_cycles 0x3c libpcsxcore/new_dynarec/emu_if.o
CDR_getBuffer 0x4 libpcsxcore/plugins.o
in_evdev_allow_abs_only
0x4 frontend/libpicofe/linux/in_evdev.o
g_menuscreen_w 0x4 frontend/menu.o
SPU_shutdown 0x4 libpcsxcore/plugins.o
NET_sendData 0x4 libpcsxcore/plugins.o
PAD1_open 0x4 libpcsxcore/plugins.o
cdrIsoMultidiskCount
0x4 libpcsxcore/cdriso.o
in_keystate 0x4 frontend/plugin_lib.o
SPU_readRegister 0x4 libpcsxcore/plugins.o
PAD1_close 0x4 libpcsxcore/plugins.o
NET_sendPadData 0x4 libpcsxcore/plugins.o
ostr 0x100 libpcsxcore/disr3000a.o
CurPad 0x1 plugins/dfinput/main.o
g_emu_resetting 0x4 frontend/main.o
PAD1_shutdown 0x4 libpcsxcore/plugins.o
GPU_getScreenPic 0x4 libpcsxcore/plugins.o
in_enable_vibration
0x4 frontend/plugin_lib.o
GPU_showScreenPic 0x4 libpcsxcore/plugins.o
emu_action_old 0x4 frontend/main.o
state_slot 0x4 frontend/main.o
GPU_writeStatus 0x4 libpcsxcore/plugins.o
sdl2_window 0x4 frontend/libpicofe/plat_sdl.o
GPU_freeze 0x4 libpcsxcore/plugins.o
in_type1 0x4 frontend/plugin_lib.o
g_scaler 0x4 frontend/menu.o
CDR_init 0x4 libpcsxcore/plugins.o
CDR_play 0x4 libpcsxcore/plugins.o
NET_resume 0x4 libpcsxcore/plugins.o
SPU_freeze 0x4 libpcsxcore/plugins.o
SPU_readDMAMem 0x4 libpcsxcore/plugins.o
jump_dirty 0x4000 libpcsxcore/new_dynarec/new_dynarec.o
CDR_stop 0x4 libpcsxcore/plugins.o
NET_queryPlayer 0x4 libpcsxcore/plugins.o
PAD1_startPoll 0x4 libpcsxcore/plugins.o
NET_open 0x4 libpcsxcore/plugins.o
GPU_updateLace 0x4 libpcsxcore/plugins.o
g_opts 0x4 frontend/menu.o
out_current 0x4 plugins/dfsound/out.o
GPU_open 0x4 libpcsxcore/plugins.o
reciprocal_table 0x1000 plugins/gpu_neon/psx_gpu_if.o
PAD2_poll 0x4 libpcsxcore/plugins.o
pl_vout_buf 0x4 frontend/plugin_lib.o
CDR_about 0x4 libpcsxcore/plugins.o
hash_table 0x100000 libpcsxcore/new_dynarec/new_dynarec.o
soft_scaling 0x4 frontend/menu.o
CurByte 0x1 plugins/dfinput/main.o
nfile 0x4 libpcsxcore/psxbios.o
zero_mem 0x1000 libpcsxcore/new_dynarec/pcsxmem.o
SPU_writeRegister 0x4 libpcsxcore/plugins.o
xaSave_iLeftVolume 0x4 libpcsxcore/cdrom.o
GPU_close 0x4 libpcsxcore/plugins.o
CDR_getTN 0x4 libpcsxcore/plugins.o
SPU_configure 0x4 libpcsxcore/plugins.o
hud_msg 0x40 frontend/main.o
SPU_readDMA 0x4 libpcsxcore/plugins.o
sdl2_renderer 0x4 frontend/libpicofe/plat_sdl.o
gte_handlers 0x100 libpcsxcore/new_dynarec/emu_if.o
NET_setInfo 0x4 libpcsxcore/plugins.o
PAD2_init 0x4 libpcsxcore/plugins.o
open_invalid_time 0x4 frontend/menu.o
PAD2_open 0x4 libpcsxcore/plugins.o
gpuDisp 0x4 frontend/main.o
in_adev_is_nublike 0x8 frontend/plugin_lib.o
g_menubg_ptr 0x4 frontend/menu.o
invalid_code 0x100000 libpcsxcore/new_dynarec/emu_if.o
biosA0 0x400 libpcsxcore/psxbios.o
in_type2 0x4 frontend/plugin_lib.o
SPU_playSample 0x4 libpcsxcore/plugins.o
SPU_playCDDAchannel
0x4 libpcsxcore/plugins.o
SPU_test 0x4 libpcsxcore/plugins.o
GPU_boStatus 0x4 libpcsxcore/plugins.o
out 0x4 libpcsxcore/new_dynarec/new_dynarec.o
Discarded input sections
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.debug_aranges
0x0000000000000000 0x38 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.debug_info 0x0000000000000000 0xa3f /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.debug_abbrev 0x0000000000000000 0x175 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.debug_line 0x0000000000000000 0x1f0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.debug_str 0x0000000000000000 0x8b5 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
.debug_line 0x0000000000000000 0x6c /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
.debug_info 0x0000000000000000 0x78 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
.debug_abbrev 0x0000000000000000 0x12 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
.debug_aranges
0x0000000000000000 0x30 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
.debug_ranges 0x0000000000000000 0x28 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/crtbegin.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/cdriso.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/cdrom.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/cheat.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/debug.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/decode_xa.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/disr3000a.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/mdec.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/misc.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/plugins.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/ppf.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxbios.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxcommon.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxcounters.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxdma.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxhle.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxhw.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxinterpreter.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/psxmem.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/r3000a.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/sio.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/socket.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/spu.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/gte.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/gte_nf.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/gte_divider.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/new_dynarec/new_dynarec.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/new_dynarec/pcsxmem.o
.note.GNU-stack
0x0000000000000000 0x0 libpcsxcore/new_dynarec/emu_if.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfsound/dma.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfsound/freeze.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfsound/registers.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfsound/spu.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfsound/out.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfsound/nullsnd.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfsound/sdl.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/gpulib/gpu.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/gpulib/vout_pl.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/gpu_neon/psx_gpu_if.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/cdrcimg/cdrcimg.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfinput/main.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfinput/pad.o
.note.GNU-stack
0x0000000000000000 0x0 plugins/dfinput/guncon.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/cspace.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/in_sdl.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/in_ableem.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/plat_sdl.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/plat_dummy.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/linux/in_evdev.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/plat_sdl.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/gl.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/gl_platform.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/plugin_lib.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/linux/plat.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/readpng.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/fonts.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/menu.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/libpicofe/input.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/main.o
.note.GNU-stack
0x0000000000000000 0x0 frontend/plugin.o
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o)
.debug_line 0x0000000000000000 0xba /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o)
.debug_info 0x0000000000000000 0x111 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o)
.debug_abbrev 0x0000000000000000 0x14 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o)
.debug_aranges
0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o)
.debug_frame 0x0000000000000000 0x44 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_ldivmod.o)
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_uldivmod.o)
.debug_line 0x0000000000000000 0x9c /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_uldivmod.o)
.debug_info 0x0000000000000000 0x111 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_uldivmod.o)
.debug_abbrev 0x0000000000000000 0x14 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_uldivmod.o)
.debug_aranges
0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_uldivmod.o)
.debug_frame 0x0000000000000000 0x2c /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_aeabi_uldivmod.o)
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_dvmd_lnx.o)
.debug_frame 0x0000000000000000 0x28 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_dvmd_lnx.o)
.debug_line 0x0000000000000000 0xa1 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_dvmd_lnx.o)
.debug_info 0x0000000000000000 0x115 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_dvmd_lnx.o)
.debug_abbrev 0x0000000000000000 0x14 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_dvmd_lnx.o)
.debug_aranges
0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_dvmd_lnx.o)
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_clear_cache.o)
.debug_line 0x0000000000000000 0xa2 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_clear_cache.o)
.debug_info 0x0000000000000000 0x115 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_clear_cache.o)
.debug_abbrev 0x0000000000000000 0x14 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_clear_cache.o)
.debug_aranges
0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_clear_cache.o)
.debug_info 0x0000000000000000 0x114a /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_abbrev 0x0000000000000000 0x20d /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_loc 0x0000000000000000 0x91e /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_aranges
0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_ranges 0x0000000000000000 0x40 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_line 0x0000000000000000 0x6a8 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_str 0x0000000000000000 0x1799 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_frame 0x0000000000000000 0x38 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a(_udivmoddi4.o)
.debug_info 0x0000000000000000 0x198 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.debug_abbrev 0x0000000000000000 0x128 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.debug_loc 0x0000000000000000 0xb3 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.debug_aranges
0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.debug_line 0x0000000000000000 0x12e /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.debug_str 0x0000000000000000 0x228 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.debug_frame 0x0000000000000000 0x44 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(elf-init.oS)
.debug_info 0x0000000000000000 0x297 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.debug_abbrev 0x0000000000000000 0xd8 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.debug_loc 0x0000000000000000 0x58 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.debug_aranges
0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.debug_line 0x0000000000000000 0xc0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.debug_str 0x0000000000000000 0x30d /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.debug_frame 0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a(stat64.oS)
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/crtend.o
.note.GNU-stack
0x0000000000000000 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
.debug_line 0x0000000000000000 0x54 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
.debug_info 0x0000000000000000 0x78 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
.debug_abbrev 0x0000000000000000 0x12 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
.debug_aranges
0x0000000000000000 0x28 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
.debug_ranges 0x0000000000000000 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
Memory Configuration
Name Origin Length Attributes
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/crtbegin.o
LOAD libpcsxcore/cdriso.o
LOAD libpcsxcore/cdrom.o
LOAD libpcsxcore/cheat.o
LOAD libpcsxcore/debug.o
LOAD libpcsxcore/decode_xa.o
LOAD libpcsxcore/disr3000a.o
LOAD libpcsxcore/mdec.o
LOAD libpcsxcore/misc.o
LOAD libpcsxcore/plugins.o
LOAD libpcsxcore/ppf.o
LOAD libpcsxcore/psxbios.o
LOAD libpcsxcore/psxcommon.o
LOAD libpcsxcore/psxcounters.o
LOAD libpcsxcore/psxdma.o
LOAD libpcsxcore/psxhle.o
LOAD libpcsxcore/psxhw.o
LOAD libpcsxcore/psxinterpreter.o
LOAD libpcsxcore/psxmem.o
LOAD libpcsxcore/r3000a.o
LOAD libpcsxcore/sio.o
LOAD libpcsxcore/socket.o
LOAD libpcsxcore/spu.o
LOAD libpcsxcore/gte.o
LOAD libpcsxcore/gte_nf.o
LOAD libpcsxcore/gte_divider.o
LOAD libpcsxcore/gte_arm.o
LOAD libpcsxcore/gte_neon.o
LOAD libpcsxcore/new_dynarec/new_dynarec.o
LOAD libpcsxcore/new_dynarec/linkage_arm.o
LOAD libpcsxcore/new_dynarec/pcsxmem.o
LOAD libpcsxcore/new_dynarec/emu_if.o
LOAD plugins/dfsound/dma.o
LOAD plugins/dfsound/freeze.o
LOAD plugins/dfsound/registers.o
LOAD plugins/dfsound/spu.o
LOAD plugins/dfsound/out.o
LOAD plugins/dfsound/nullsnd.o
LOAD plugins/dfsound/arm_utils.o
LOAD plugins/dfsound/sdl.o
LOAD plugins/gpulib/gpu.o
LOAD plugins/gpulib/vout_pl.o
LOAD plugins/gpu_neon/psx_gpu_if.o
LOAD plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
LOAD plugins/cdrcimg/cdrcimg.o
LOAD plugins/dfinput/main.o
LOAD plugins/dfinput/pad.o
LOAD plugins/dfinput/guncon.o
LOAD frontend/cspace.o
LOAD frontend/cspace_neon.o
LOAD frontend/libpicofe/in_sdl.o
LOAD frontend/libpicofe/in_ableem.o
LOAD frontend/libpicofe/plat_sdl.o
LOAD frontend/libpicofe/plat_dummy.o
LOAD frontend/libpicofe/linux/in_evdev.o
LOAD frontend/plat_sdl.o
LOAD frontend/libpicofe/gl.o
LOAD frontend/libpicofe/gl_platform.o
LOAD frontend/plugin_lib.o
LOAD frontend/libpicofe/linux/plat.o
LOAD frontend/libpicofe/readpng.o
LOAD frontend/libpicofe/fonts.o
LOAD frontend/libpicofe/arm/neon_scale2x.o
LOAD frontend/libpicofe/arm/neon_eagle2x.o
LOAD frontend/menu.o
LOAD frontend/libpicofe/input.o
LOAD frontend/main.o
LOAD frontend/plugin.o
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libSDL2.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libpng.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libdl.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libm.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libpthread.so
START GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/lib/libpthread.so.0
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libpthread_nonshared.a
END GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libz.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libwayland-client.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libwayland-egl.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libEGL.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libGLESv1_CM.so
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/../../../../armv8-sony-linux-gnueabihf/lib/libgcc_s.so
START GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/../../../../armv8-sony-linux-gnueabihf/lib/libgcc_s.so.1
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a
END GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc.so
START GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/lib/libc.so.6
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/libc_nonshared.a
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/lib/ld-linux-armhf.so.3
END GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/../../../../armv8-sony-linux-gnueabihf/lib/libgcc_s.so
START GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/../../../../armv8-sony-linux-gnueabihf/lib/libgcc_s.so.1
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/libgcc.a
END GROUP
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/crtend.o
LOAD /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
[!provide] PROVIDE (__executable_start, 0x10000)
0x0000000000010134 . = (0x10000 + SIZEOF_HEADERS)
.interp 0x0000000000010134 0x19
*(.interp)
.interp 0x0000000000010134 0x19 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.note.ABI-tag 0x0000000000010150 0x20
.note.ABI-tag 0x0000000000010150 0x20 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.note.gnu.build-id
*(.note.gnu.build-id)
.hash 0x0000000000010170 0x6c8
*(.hash)
.hash 0x0000000000010170 0x6c8 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.gnu.hash
*(.gnu.hash)
.dynsym 0x0000000000010838 0xeb0
*(.dynsym)
.dynsym 0x0000000000010838 0xeb0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.dynstr 0x00000000000116e8 0xb3e
*(.dynstr)
.dynstr 0x00000000000116e8 0xb3e /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.gnu.version 0x0000000000012226 0x1d6
*(.gnu.version)
.gnu.version 0x0000000000012226 0x1d6 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.gnu.version_d 0x00000000000123fc 0x0
*(.gnu.version_d)
.gnu.version_d
0x00000000000123fc 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.gnu.version_r 0x00000000000123fc 0xe0
*(.gnu.version_r)
.gnu.version_r
0x00000000000123fc 0xe0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.rel.dyn 0x00000000000124dc 0x18
*(.rel.init)
*(.rel.text .rel.text.* .rel.gnu.linkonce.t.*)
*(.rel.fini)
*(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*)
*(.rel.data.rel.ro .rel.data.rel.ro.* .rel.gnu.linkonce.d.rel.ro.*)
*(.rel.data .rel.data.* .rel.gnu.linkonce.d.*)
*(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*)
*(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*)
*(.rel.ctors)
*(.rel.dtors)
*(.rel.got)
.rel.got 0x00000000000124dc 0x8 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
*(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*)
.rel.bss 0x00000000000124e4 0x10 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
[!provide] PROVIDE (__rel_iplt_start, .)
*(.rel.iplt)
.rel.iplt 0x00000000000124f4 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
[!provide] PROVIDE (__rel_iplt_end, .)
.rela.dyn 0x00000000000124f4 0x0
*(.rela.init)
*(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
*(.rela.fini)
*(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
*(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
*(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
*(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
*(.rela.ctors)
*(.rela.dtors)
*(.rela.got)
*(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
[!provide] PROVIDE (__rela_iplt_start, .)
*(.rela.iplt)
[!provide] PROVIDE (__rela_iplt_end, .)
.rel.plt 0x00000000000124f4 0x6e8
*(.rel.plt)
.rel.plt 0x00000000000124f4 0x6e8 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.rela.plt
*(.rela.plt)
.init 0x0000000000012bdc 0xc
*(SORT(.init))
.init 0x0000000000012bdc 0x8 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
0x0000000000012bdc _init
.init 0x0000000000012be4 0x4 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crtn.o
.plt 0x0000000000012be8 0xa70
*(.plt)
.plt 0x0000000000012be8 0xa70 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
0x0000000000012bfc SDL_FreeSurface
0x0000000000012c08 SDL_JoystickOpen
0x0000000000012c14 qsort@@GLIBC_2.4
0x0000000000012c20 strerror@@GLIBC_2.4
0x0000000000012c2c SDL_PeepEvents
0x0000000000012c38 glEnable
0x0000000000012c44 __ctype_toupper_loc@@GLIBC_2.4
0x0000000000012c50 fileno@@GLIBC_2.4
0x0000000000012c5c mkdir@@GLIBC_2.4
0x0000000000012c68 glTexCoordPointer
0x0000000000012c74 png_write_image@@PNG16_0
0x0000000000012c80 inflateReset
0x0000000000012c8c abort@@GLIBC_2.4
0x0000000000012c98 SDL_UpperBlitScaled
0x0000000000012ca4 vprintf@@GLIBC_2.4
0x0000000000012cb0 strcasestr@@GLIBC_2.4
0x0000000000012cbc localtime@@GLIBC_2.4
0x0000000000012cc8 opendir@@GLIBC_2.4
0x0000000000012cd4 memcmp@@GLIBC_2.4
0x0000000000012ce0 pthread_attr_setdetachstate@@GLIBC_2.4
0x0000000000012cec sysconf@@GLIBC_2.4
0x0000000000012cf8 getchar@@GLIBC_2.4
0x0000000000012d04 pthread_exit@@GLIBC_2.4
0x0000000000012d10 SDL_GetWindowWMInfo
0x0000000000012d1c png_destroy_read_struct@@PNG16_0
0x0000000000012d28 __libc_start_main@@GLIBC_2.4
0x0000000000012d34 glEnableClientState
0x0000000000012d40 mremap@@GLIBC_2.4
0x0000000000012d4c SDL_GetCurrentVideoDriver
0x0000000000012d58 __isoc99_fscanf@@GLIBC_2.7
0x0000000000012d64 glFrontFace
0x0000000000012d70 SDL_SetSurfaceAlphaMod
0x0000000000012d7c clock_gettime@@GLIBC_2.17
0x0000000000012d88 signal@@GLIBC_2.4
0x0000000000012d94 gzseek64@@ZLIB_1.2.3.3
0x0000000000012da0 SDL_JoystickName
0x0000000000012db8 png_write_end@@PNG16_0
0x0000000000012dc4 glTexParameterf
0x0000000000012dd0 SDL_CreateTexture
0x0000000000012ddc __isoc99_sscanf@@GLIBC_2.7
0x0000000000012de8 vsnprintf@@GLIBC_2.4
0x0000000000012df4 gzclose
0x0000000000012e00 strncpy@@GLIBC_2.4
0x0000000000012e0c fclose@@GLIBC_2.4
0x0000000000012e18 fgets@@GLIBC_2.4
0x0000000000012e24 recv@@GLIBC_2.4
0x0000000000012e30 getenv@@GLIBC_2.4
0x0000000000012e3c ftello64@@GLIBC_2.4
0x0000000000012e48 strchr@@GLIBC_2.4
0x0000000000012e54 putchar@@GLIBC_2.4
0x0000000000012e60 strcasecmp@@GLIBC_2.4
0x0000000000012e6c glGetError
0x0000000000012e78 scandir64@@GLIBC_2.4
0x0000000000012e84 listen@@GLIBC_2.4
0x0000000000012e90 calloc@@GLIBC_2.4
0x0000000000012e9c sem_init@@GLIBC_2.4
0x0000000000012ea8 dlclose@@GLIBC_2.4
0x0000000000012eb4 eglInitialize
0x0000000000012ec0 SDL_UnlockSurface
0x0000000000012ecc png_get_image_width@@PNG16_0
0x0000000000012ed8 memset@@GLIBC_2.4
0x0000000000012ee4 sem_destroy@@GLIBC_2.4
0x0000000000012ef0 SDL_GetWindowSize
0x0000000000012efc SDL_InitSubSystem
0x0000000000012f08 SDL_LockSurface
0x0000000000012f14 strrchr@@GLIBC_2.4
0x0000000000012f20 SDL_GetWindowSurface
0x0000000000012f2c fsync@@GLIBC_2.4
0x0000000000012f38 perror@@GLIBC_2.4
0x0000000000012f44 SDL_FillRect
0x0000000000012f50 eglDestroyContext
0x0000000000012f5c glLoadIdentity
0x0000000000012f68 dlopen@@GLIBC_2.4
0x0000000000012f74 SDL_JoystickEventState
0x0000000000012f80 SDL_CreateRGBSurfaceFrom
0x0000000000012f8c SDL_NumJoysticks
0x0000000000012f98 inflateInit2_
0x0000000000012fa4 eglCreateContext
0x0000000000012fb0 eglMakeCurrent
0x0000000000012fbc usleep@@GLIBC_2.4
0x0000000000012fc8 inflate
0x0000000000012fd4 free@@GLIBC_2.4
0x0000000000012fe0 read@@GLIBC_2.4
0x0000000000012fec write@@GLIBC_2.4
0x0000000000012ff8 SDL_RenderPresent
0x0000000000013004 gzwrite
0x0000000000013010 SDL_PumpEvents
0x000000000001301c gettimeofday@@GLIBC_2.4
0x0000000000013028 fseek@@GLIBC_2.4
0x0000000000013034 accept@@GLIBC_2.4
0x0000000000013040 SDL_MapRGB
0x000000000001304c pthread_mutex_unlock@@GLIBC_2.4
0x0000000000013058 socket@@GLIBC_2.4
0x0000000000013064 eglSwapBuffers
0x0000000000013070 SDL_UpperBlit
0x000000000001307c fflush@@GLIBC_2.4
0x0000000000013088 SDL_CreateWindow
0x0000000000013094 SDL_Init
0x00000000000130a0 _setjmp@@GLIBC_2.4
0x00000000000130ac png_set_longjmp_fn@@PNG16_0
0x00000000000130b8 ioctl@@GLIBC_2.4
0x00000000000130c4 SDL_CreateRenderer
0x00000000000130d0 tanh@@GLIBC_2.4
0x00000000000130dc pthread_mutex_lock@@GLIBC_2.4
0x00000000000130e8 strlen@@GLIBC_2.4
0x00000000000130f4 sscanf@@GLIBC_2.4
0x0000000000013100 glBindTexture
0x000000000001310c unlink@@GLIBC_2.4
0x0000000000013118 SDL_OpenAudio
0x0000000000013124 strtoul@@GLIBC_2.4
0x0000000000013130 pthread_create@@GLIBC_2.4
0x000000000001313c SDL_LogError
0x0000000000013148 memcpy@@GLIBC_2.4
0x0000000000013154 gzopen64@@ZLIB_1.2.3.3
0x0000000000013160 setlocale@@GLIBC_2.4
0x000000000001316c fopen64@@GLIBC_2.4
0x0000000000013178 png_create_read_struct@@PNG16_0
0x0000000000013184 mprotect@@GLIBC_2.4
0x0000000000013190 eglDestroySurface
0x000000000001319c feof@@GLIBC_2.4
0x00000000000131a8 ftell@@GLIBC_2.4
0x00000000000131b4 fgetc@@GLIBC_2.4
0x00000000000131c0 png_create_info_struct@@PNG16_0
0x00000000000131cc strtol@@GLIBC_2.4
0x00000000000131d8 strcpy@@GLIBC_2.4
0x00000000000131e4 fseeko64@@GLIBC_2.4
0x00000000000131f0 sem_post@@GLIBC_2.4
0x00000000000131fc strncat@@GLIBC_2.4
0x0000000000013208 atol@@GLIBC_2.4
0x0000000000013214 SDL_UpdateWindowSurface
0x0000000000013220 printf@@GLIBC_2.4
0x000000000001322c open64@@GLIBC_2.4
0x0000000000013238 raise@@GLIBC_2.4
0x0000000000013244 atoi@@GLIBC_2.4
0x0000000000013250 longjmp@@GLIBC_2.4
0x000000000001325c png_read_png@@PNG16_0
0x0000000000013268 shutdown@@GLIBC_2.4
0x0000000000013274 bind@@GLIBC_2.4
0x0000000000013280 strstr@@GLIBC_2.4
0x000000000001328c select@@GLIBC_2.4
0x0000000000013298 close@@GLIBC_2.4
0x00000000000132a4 SDL_CreateRGBSurface
0x00000000000132b0 fwrite@@GLIBC_2.4
0x00000000000132bc closedir@@GLIBC_2.4
0x00000000000132c8 strncasecmp@@GLIBC_2.4
0x00000000000132d4 remove@@GLIBC_2.4
0x00000000000132e0 time@@GLIBC_2.4
0x00000000000132ec __ctype_b_loc@@GLIBC_2.4
0x00000000000132f8 __xstat64@@GLIBC_2.4
0x0000000000013304 fprintf@@GLIBC_2.4
0x0000000000013310 alphasort64@@GLIBC_2.4
0x000000000001331c glTexImage2D
0x0000000000013328 SDL_RenderSetLogicalSize
0x0000000000013334 strdup@@GLIBC_2.4
0x0000000000013340 lseek64@@GLIBC_2.4
0x000000000001334c malloc@@GLIBC_2.4
0x0000000000013358 SDL_CloseAudio
0x0000000000013364 eglGetError
0x0000000000013370 mmap64@@GLIBC_2.4
0x000000000001337c SDL_PauseAudio
0x0000000000013388 pthread_attr_init@@GLIBC_2.4
0x0000000000013394 glDrawArrays
0x00000000000133a0 wl_egl_window_create
0x00000000000133ac dlerror@@GLIBC_2.4
0x00000000000133b8 inotify_rm_watch@@GLIBC_2.4
0x00000000000133c4 fputc@@GLIBC_2.4
0x00000000000133d0 strtok@@GLIBC_2.4
0x00000000000133dc getcwd@@GLIBC_2.4
0x00000000000133e8 png_write_info@@PNG16_0
0x00000000000133f4 png_get_bit_depth@@PNG16_0
0x0000000000013400 sleep@@GLIBC_2.4
0x000000000001340c send@@GLIBC_2.4
0x0000000000013418 strcat@@GLIBC_2.4
0x0000000000013424 memmove@@GLIBC_2.4
0x0000000000013430 glTexSubImage2D
0x000000000001343c png_init_io@@PNG16_0
0x0000000000013448 puts@@GLIBC_2.4
0x0000000000013454 strftime@@GLIBC_2.4
0x0000000000013460 SDL_SetWindowTitle
0x000000000001346c inotify_add_watch@@GLIBC_2.4
0x0000000000013478 fcntl@@GLIBC_2.4
0x0000000000013484 SDL_QuitSubSystem
0x0000000000013490 SDL_Quit
0x000000000001349c readlink@@GLIBC_2.4
0x00000000000134a8 png_get_image_height@@PNG16_0
0x00000000000134b4 SDL_WasInit
0x00000000000134c0 pthread_attr_destroy@@GLIBC_2.4
0x00000000000134cc munmap@@GLIBC_2.4
0x00000000000134d8 glVertexPointer
0x00000000000134e4 gzread
0x00000000000134f0 readdir64@@GLIBC_2.4
0x00000000000134fc png_destroy_write_struct@@PNG16_0
0x0000000000013508 vfprintf@@GLIBC_2.4
0x0000000000013514 png_set_IHDR@@PNG16_0
0x0000000000013520 snprintf@@GLIBC_2.4
0x000000000001352c SDL_JoystickClose
0x0000000000013538 fread@@GLIBC_2.4
0x0000000000013544 SDL_GetError
0x0000000000013550 SDL_FlushEvents
0x000000000001355c strncmp@@GLIBC_2.4
0x0000000000013568 png_get_rows@@PNG16_0
0x0000000000013574 eglGetDisplay
0x0000000000013580 realloc@@GLIBC_2.4
0x000000000001358c eglTerminate
0x0000000000013598 png_create_write_struct@@PNG16_0
0x00000000000135a4 inotify_init@@GLIBC_2.4
0x00000000000135b0 sem_wait@@GLIBC_2.4
0x00000000000135bc glTexParameteri
0x00000000000135c8 SDL_PushEvent
0x00000000000135d4 uncompress
0x00000000000135e0 strcmp@@GLIBC_2.4
0x00000000000135ec exit@@GLIBC_2.4
0x00000000000135f8 eglCreateWindowSurface
0x0000000000013604 __errno_location@@GLIBC_2.4
0x0000000000013610 dlsym@@GLIBC_2.4
0x000000000001361c glGenTextures
0x0000000000013628 sprintf@@GLIBC_2.4
0x0000000000013634 pthread_join@@GLIBC_2.4
0x0000000000013640 eglChooseConfig
0x000000000001364c fputs@@GLIBC_2.4
.iplt 0x0000000000013658 0x0
*(.iplt)
.iplt 0x0000000000013658 0x0 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
.text 0x0000000000013660 0x879f4
*(.text.unlikely .text.*_unlikely .text.unlikely.*)
*(.text.exit .text.exit.*)
*(.text.startup .text.startup.*)
.text.startup 0x0000000000013660 0x904 frontend/main.o
0x0000000000013660 main
*(.text.hot .text.hot.*)
*(.text .stub .text.* .gnu.linkonce.t.*)
.text 0x0000000000013f64 0x3c /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crt1.o
0x0000000000013f64 _start
.text 0x0000000000013fa0 0x24 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/armv8-sony-linux-gnueabihf/sysroot/usr/lib/crti.o
.text 0x0000000000013fc4 0x90 /home/screemer/x-tools/armv8-sony-linux-gnueabihf/lib/gcc/armv8-sony-linux-gnueabihf/8.2.0/crtbegin.o
.text 0x0000000000014054 0x2bc0 libpcsxcore/cdriso.o
0x0000000000014140 ISOreadCDDA
0x0000000000016a80 cdrIsoInit
0x0000000000016bfc cdrIsoActive
*fill* 0x0000000000016c14 0x4
.text 0x0000000000016c18 0x402c libpcsxcore/cdrom.o
0x0000000000016f7c CheckDiscChange
0x00000000000170ac cdrLidSeekInterrupt
0x0000000000017394 cdrAttenuate
0x0000000000017608 cdrRead0
0x000000000001765c cdrWrite0
0x000000000001767c cdrRead1
0x00000000000176d4 cdrWrite1
0x000000000001896c cdrRead2
0x000000000001899c cdrWrite2
0x0000000000018a04 cdrRead3
0x0000000000018a40 cdrWrite3
0x0000000000018b8c psxDma3
0x0000000000018e58 cdrDmaInterrupt
0x0000000000018eb0 cdrReset
0x0000000000018f14 LidInterrupt
0x0000000000018f80 check_Motionjpeg
0x00000000000190c0 check_scenes
0x0000000000019194 check_scenesforSPU
0x0000000000019410 cdrPlayInterrupt
0x0000000000019784 cdrInterrupt
0x000000000001a3e8 cdrReadInterrupt
0x000000000001a9fc cdrFreeze
.text 0x000000000001ac44 0x1c2c libpcsxcore/cheat.o
0x000000000001aca4 ClearAllCheats
0x000000000001ad20 LoadCheats
0x000000000001af60 SaveCheats
0x000000000001b048 ApplyCheats
0x000000000001b490 AddCheat
0x000000000001b638 RemoveCheat
0x000000000001b698 EditCheat
0x000000000001b7dc FreeCheatSearchResults
0x000000000001b80c FreeCheatSearchMem
0x000000000001b838 CheatSearchBackupMemory
0x000000000001b88c CheatSearchEqual8
0x000000000001b94c CheatSearchEqual16
0x000000000001ba0c CheatSearchEqual32
0x000000000001bacc CheatSearchNotEqual8
0x000000000001bb8c CheatSearchNotEqual16
0x000000000001bc4c CheatSearchNotEqual32
0x000000000001bd0c CheatSearchRange8
0x000000000001bdf8 CheatSearchRange16
0x000000000001bee4 CheatSearchRange32
0x000000000001bfd0 CheatSearchIncreasedBy8
0x000000000001c050 CheatSearchIncreasedBy16
0x000000000001c0d0 CheatSearchIncreasedBy32
0x000000000001c150 CheatSearchDecreasedBy8
0x000000000001c1d0 CheatSearchDecreasedBy16
0x000000000001c250 CheatSearchDecreasedBy32
0x000000000001c2d0 CheatSearchIncreased8
0x000000000001c348 CheatSearchIncreased16
0x000000000001c3c0 CheatSearchIncreased32
0x000000000001c438 CheatSearchDecreased8
0x000000000001c4b0 CheatSearchDecreased16
0x000000000001c528 CheatSearchDecreased32
0x000000000001c5a0 CheatSearchDifferent8
0x000000000001c618 CheatSearchDifferent16
0x000000000001c690 CheatSearchDifferent32
0x000000000001c708 CheatSearchNoChange8
0x000000000001c780 CheatSearchNoChange16
0x000000000001c7f8 CheatSearchNoChange32
.text 0x000000000001c870 0x251c libpcsxcore/debug.o
0x000000000001c870 add_breakpoint
0x000000000001c8e4 delete_breakpoint
0x000000000001c920 next_breakpoint
0x000000000001c93c find_breakpoint
0x000000000001c984 StartDebugger
0x000000000001c9f4 StopDebugger
0x000000000001ca50 PauseDebugger
0x000000000001ca68 ResumeDebugger
0x000000000001ca80 MarkMap
0x000000000001caac IsMapMarked
0x000000000001e7c0 DebugVSync
0x000000000001e82c DebugCheckBP
0x000000000001ec94 ProcessDebug
.text 0x000000000001ed8c 0x73c libpcsxcore/decode_xa.o
0x000000000001f3f8 ADPCM_InitDecode
0x000000000001f408 xa_decode_sector
.text 0x000000000001f4c8 0x3774 libpcsxcore/disr3000a.o
0x0000000000022c14 disR3000AF
.text 0x0000000000022c3c 0x14c8 libpcsxcore/mdec.o
0x0000000000023a0c mdecInit
0x0000000000023a64 mdecWrite0
0x0000000000023a74 mdecRead0
0x0000000000023a84 mdecWrite1
0x0000000000023aac mdecRead1
0x0000000000023abc mdec0Interrupt
0x0000000000023b14 psxDma1
0x0000000000023b28 psxDma0
0x0000000000023d10 mdec1Interrupt
0x0000000000023de4 mdecFreeze
.text 0x0000000000024104 0x2ff0 libpcsxcore/misc.o
0x00000000000243c8 LogPrint
0x0000000000024408 save_error
0x000000000002448c isTitleName
0x00000000000244a8 initTitleName
0x00000000000244bc setCdromId
0x0000000000024538 setTitleName
0x0000000000024728 setDiscChangeType