-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.map
7079 lines (6632 loc) · 404 KB
/
main.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
ASxxxx Linker V03.00 + NoICE + sdld, page 1.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
. .ABS. 00000000 00000000 = 0. bytes (ABS,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000000 .__.ABS.
00000000 l__CABS
00000000 l__CODE_0
00000000 l__DABS
00000000 l__HEADER
00000000 l__HEAP
00000000 l__HRAM
00000000 l__LIT
00000000 l__SFR
00000000 s__CABS
00000000 s__DABS
00000000 s__HEADER
00000000 s__HEADER0
00000000 s__HEADER1
00000000 s__HEADER10
00000000 s__HEADER2
00000000 s__HEADER3
00000000 s__HEADER4
00000000 s__HEADER5
00000000 s__HEADER6
00000000 s__HEADER7
00000000 s__HEADER8
00000000 s__HEADER9
00000000 s__HEADERa
00000000 s__HEADERb
00000000 s__HEADERc
00000000 s__HEADERd
00000000 s__HEADERe
00000000 s__HEADERf
00000000 s__HRAM
00000000 s__HRAM11
00000000 s__SFR
00000000 s__SFR0
00000000 s__SFR1
00000000 s__SFR10
00000000 s__SFR11
00000000 s__SFR12
00000000 s__SFR13
00000000 s__SFR14
00000000 s__SFR15
00000000 s__SFR16
00000000 s__SFR17
00000000 s__SFR18
00000000 s__SFR19
00000000 s__SFR1a
00000000 s__SFR1b
00000000 s__SFR1c
00000000 s__SFR1d
00000000 s__SFR1e
00000000 s__SFR1f
ASxxxx Linker V03.00 + NoICE + sdld, page 2.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
. .ABS. 00000000 00000000 = 0. bytes (ABS,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000000 s__SFR2
00000000 s__SFR20
00000000 s__SFR21
00000000 s__SFR22
00000000 s__SFR23
00000000 s__SFR24
00000000 s__SFR25
00000000 s__SFR26
00000000 s__SFR27
00000000 s__SFR28
00000000 s__SFR29
00000000 s__SFR2a
00000000 s__SFR2b
00000000 s__SFR2c
00000000 s__SFR2d
00000000 s__SFR2e
00000000 s__SFR2f
00000000 s__SFR3
00000000 s__SFR30
00000000 s__SFR31
00000000 s__SFR32
00000000 s__SFR33
00000000 s__SFR34
00000000 s__SFR35
00000000 s__SFR36
00000000 s__SFR4
00000000 s__SFR5
00000000 s__SFR6
00000000 s__SFR7
00000000 s__SFR8
00000000 s__SFR9
00000000 s__SFRa
00000000 s__SFRb
00000000 s__SFRc
00000000 s__SFRd
00000000 s__SFRe
00000000 s__SFRf
00000001 l__GSFINAL
00000001 l__HEADER0
00000001 l__HEADER10
00000001 l__HEADER8
00000001 l__HEADER9
00000001 l__HEADERa
00000001 l__HEADERc
00000001 l__HEADERd
00000001 l__SFR0
00000001 l__SFR1
00000001 l__SFR10
00000001 l__SFR11
00000001 l__SFR12
00000001 l__SFR13
ASxxxx Linker V03.00 + NoICE + sdld, page 3.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
. .ABS. 00000000 00000000 = 0. bytes (ABS,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000001 l__SFR14
00000001 l__SFR15
00000001 l__SFR16
00000001 l__SFR17
00000001 l__SFR18
00000001 l__SFR19
00000001 l__SFR1a
00000001 l__SFR1b
00000001 l__SFR1c
00000001 l__SFR1d
00000001 l__SFR1e
00000001 l__SFR1f
00000001 l__SFR2
00000001 l__SFR20
00000001 l__SFR21
00000001 l__SFR22
00000001 l__SFR23
00000001 l__SFR24
00000001 l__SFR25
00000001 l__SFR26
00000001 l__SFR27
00000001 l__SFR28
00000001 l__SFR29
00000001 l__SFR2a
00000001 l__SFR2b
00000001 l__SFR2c
00000001 l__SFR2d
00000001 l__SFR2e
00000001 l__SFR2f
00000001 l__SFR3
00000001 l__SFR30
00000001 l__SFR31
00000001 l__SFR32
00000001 l__SFR33
00000001 l__SFR34
00000001 l__SFR35
00000001 l__SFR36
00000001 l__SFR4
00000001 l__SFR5
00000001 l__SFR6
00000001 l__SFR7
00000001 l__SFR8
00000001 l__SFR9
00000001 l__SFRa
00000001 l__SFRb
00000001 l__SFRc
00000001 l__SFRd
00000001 l__SFRe
00000001 l__SFRf
00000002 l__HEADERb
00000002 l__HEADERe
ASxxxx Linker V03.00 + NoICE + sdld, page 4.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
. .ABS. 00000000 00000000 = 0. bytes (ABS,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000002 l__HRAM11
00000003 l__HEADER7
00000005 l__HEADER1
00000006 l__HEADER6
00000007 l__HEADER2
00000008 l__HEADER3
00000018 l__BSS
0000002C l__HEADER4
00000033 l__HEADER5
0000006A l__HOME
0000007E l__HEADERf
000000E4 l__BASE
00000200 s__CODE
00000671 l__CODE_1
00000689 l__DATA
00001F01 l__GSINIT
000024AB l__CODE
000026AB s__HOME
00002715 s__BASE
000027F9 s__CODE_0
000027F9 s__GSINIT
000027F9 s__LIT
000046FA s__GSFINAL
0000C000 _shadow_OAM
0000C0A0 s__DATA
0000C729 s__BSS
0000C741 s__HEAP
0000E000 .STACK
0000FF80 .refresh_OAM
00014000 s__CODE_1
ASxxxx Linker V03.00 + NoICE + sdld, page 5.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000200 G$song_intro0$0_0$0 output_intro
00000200 _song_intro0 output_intro
00000319 G$song_intro1$0_0$0 output_intro
00000319 _song_intro1 output_intro
00000431 G$song_outro0$0_0$0 output_outro
00000431 _song_outro0 output_outro
00000588 G$song_outro1$0_0$0 output_outro
00000588 _song_outro1 output_outro
000006E0 G$song_gameplay0$0_0$0 output_gameplay
000006E0 _song_gameplay0 output_gameplay
00000834 G$song_gameplay1$0_0$0 output_gameplay
00000834 _song_gameplay1 output_gameplay
0000099A G$song_gameplay2$0_0$0 output_gameplay
0000099A _song_gameplay2 output_gameplay
00000B0F G$song_gameplay3$0_0$0 output_gameplay
00000B0F _song_gameplay3 output_gameplay
00000C6B A$main$65 main
00000C6B C$main.c$169$1_0$106 main
00000C6B C$main.c$171$2_0$107 main
00000C6B C$main.c$56$0_0$106 main
00000C6B G$matts_testing_grounds$0$0 main
00000C6B _matts_testing_grounds main
00000C6D A$main$66 main
00000C6E A$main$67 main
00000C6F A$main$68 main
00000C72 A$main$69 main
00000C73 A$main$73 main
00000C73 C$main.c$172$2_0$107 main
00000C76 A$main$81 main
00000C76 C$main.c$174$1_0$106 main
00000C76 XG$matts_testing_grounds$0$0 main
00000C78 A$main$94 main
00000C78 C$main.c$178$1_0$108 main
00000C78 C$main.c$180$1_0$108 main
00000C78 G$main$0$0 main
00000C78 _main main
00000C7B A$main$102 main
00000C7B C$main.c$185$1_0$108 main
00000C7B C$main.c$187$2_0$109 main
00000C7E A$main$103 main
00000C7F A$main$104 main
00000C82 A$main$105 main
00000C84 A$main$109 main
00000C84 C$main.c$188$2_0$109 main
00000C87 A$main$113 main
00000C87 C$main.c$190$2_0$109 main
00000C89 A$main$114 main
00000C8A A$main$115 main
00000C8B A$main$116 main
00000C8E A$main$117 main
ASxxxx Linker V03.00 + NoICE + sdld, page 6.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000C8F A$main$121 main
00000C8F C$main.c$191$2_0$109 main
00000C92 A$main$132 main
00000C92 C$main.c$194$1_0$108 main
00000C92 C$main.c$195$1_0$108 main
00000C92 XG$main$0$0 main
00000C94 gbt_get_pattern_ptr
00000CB1 _gbt_play
00000D6C _gbt_pause
00000D78 _gbt_loop
00000D7F _gbt_stop
00000D8A _gbt_enable_channels
00000D91 _gbt_update
00000E96 A$lcc19720$52 audio_configuration
00000E96 C$audio_configuration.c$3$0_0$90 audio_configuration
00000E96 C$audio_configuration.c$6$1_0$90 audio_configuration
00000E96 G$init_sfx$0$0 audio_configuration
00000E96 _init_sfx audio_configuration
00000E98 A$lcc19720$53 audio_configuration
00000E9A A$lcc19720$57 audio_configuration
00000E9A C$audio_configuration.c$7$1_0$90 audio_configuration
00000E9C A$lcc19720$58 audio_configuration
00000E9E A$lcc19720$62 audio_configuration
00000E9E C$audio_configuration.c$8$1_0$90 audio_configuration
00000EA0 A$lcc19720$63 audio_configuration
00000EA2 A$lcc19720$71 audio_configuration
00000EA2 C$audio_configuration.c$9$1_0$90 audio_configuration
00000EA2 XG$init_sfx$0$0 audio_configuration
00000EA3 A$lcc19720$84 audio_configuration
00000EA3 C$audio_configuration.c$13$1_0$9 audio_configuration
00000EA3 C$audio_configuration.c$15$1_0$9 audio_configuration
00000EA3 G$play_fx$0$0 audio_configuration
00000EA3 _play_fx audio_configuration
00000EA5 A$lcc19720$85 audio_configuration
00000EA6 A$lcc19720$86 audio_configuration
00000EA7 A$lcc19720$87 audio_configuration
00000EA8 A$lcc19720$91 audio_configuration
00000EA8 C$audio_configuration.c$18$2_0$9 audio_configuration
00000EAA A$lcc19720$92 audio_configuration
00000EAC A$lcc19720$96 audio_configuration
00000EAC C$audio_configuration.c$19$2_0$9 audio_configuration
00000EAE A$lcc19720$97 audio_configuration
00000EB0 A$lcc19720$101 audio_configuration
00000EB0 C$audio_configuration.c$20$2_0$9 audio_configuration
00000EB2 A$lcc19720$102 audio_configuration
00000EB4 A$lcc19720$106 audio_configuration
00000EB4 C$audio_configuration.c$21$2_0$9 audio_configuration
00000EB6 A$lcc19720$107 audio_configuration
00000EB8 A$lcc19720$111 audio_configuration
00000EB8 C$audio_configuration.c$22$2_0$9 audio_configuration
00000EBA A$lcc19720$112 audio_configuration
ASxxxx Linker V03.00 + NoICE + sdld, page 7.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000EBC A$lcc19720$123 audio_configuration
00000EBC C$audio_configuration.c$24$1_0$9 audio_configuration
00000EBC C$audio_configuration.c$25$1_0$9 audio_configuration
00000EBC XG$play_fx$0$0 audio_configuration
00000EBD A$lcc19721$56 music_configuration
00000EBD C$music_configuration.c$7$0_0$89 music_configuration
00000EBD C$music_configuration.c$9$1_0$89 music_configuration
00000EBD G$init_music$0$0 music_configuration
00000EBD _init_music music_configuration
00000EBF A$lcc19721$57 music_configuration
00000EC1 A$lcc19721$58 music_configuration
00000EC4 A$lcc19721$59 music_configuration
00000EC6 A$lcc19721$63 music_configuration
00000EC6 C$music_configuration.c$11$1_1$9 music_configuration
00000EC9 A$lcc19721$67 music_configuration
00000EC9 C$music_configuration.c$15$1_1$9 music_configuration
00000ECB A$lcc19721$68 music_configuration
00000ECC A$lcc19721$69 music_configuration
00000ECE A$lcc19721$70 music_configuration
00000ECF A$lcc19721$71 music_configuration
00000ED2 A$lcc19721$72 music_configuration
00000ED3 A$lcc19721$73 music_configuration
00000ED6 A$lcc19721$74 music_configuration
00000ED8 A$lcc19721$78 music_configuration
00000ED8 C$music_configuration.c$17$1_1$9 music_configuration
00000EDB A$lcc19721$79 music_configuration
00000EDD A$lcc19721$80 music_configuration
00000EDE A$lcc19721$84 music_configuration
00000EDE C$music_configuration.c$18$1_1$9 music_configuration
00000EE0 A$lcc19721$85 music_configuration
00000EE1 A$lcc19721$86 music_configuration
00000EE2 A$lcc19721$87 music_configuration
00000EE5 A$lcc19721$88 music_configuration
00000EE6 A$lcc19721$92 music_configuration
00000EE6 C$music_configuration.c$20$1_1$9 music_configuration
00000EE8 A$lcc19721$93 music_configuration
00000EE9 A$lcc19721$94 music_configuration
00000EEA A$lcc19721$95 music_configuration
00000EED A$lcc19721$96 music_configuration
00000EEE A$lcc19721$107 music_configuration
00000EEE C$music_configuration.c$21$1_1$9 music_configuration
00000EEE C$music_configuration.c$23$1_1$8 music_configuration
00000EEE XG$init_music$0$0 music_configuration
00000EF1 A$lcc19722$65 game_configuration
00000EF1 C$game_configuration.c$10$1_0$97 game_configuration
00000EF1 C$game_configuration.c$8$0_0$97 game_configuration
00000EF1 G$initialize_game$0$0 game_configuration
00000EF1 _initialize_game game_configuration
00000EF4 A$lcc19722$69 game_configuration
00000EF4 C$game_configuration.c$12$1_0$97 game_configuration
00000EF6 A$lcc19722$70 game_configuration
ASxxxx Linker V03.00 + NoICE + sdld, page 8.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000EF8 A$lcc19722$71 game_configuration
00000EFA A$lcc19722$75 game_configuration
00000EFA C$game_configuration.c$13$1_0$97 game_configuration
00000EFC A$lcc19722$76 game_configuration
00000EFE A$lcc19722$77 game_configuration
00000F00 A$lcc19722$81 game_configuration
00000F00 C$game_configuration.c$14$1_0$97 game_configuration
00000F02 A$lcc19722$82 game_configuration
00000F04 A$lcc19722$83 game_configuration
00000F06 A$lcc19722$87 game_configuration
00000F06 C$game_configuration.c$16$1_0$97 game_configuration
00000F09 A$lcc19722$91 game_configuration
00000F09 C$game_configuration.c$17$1_0$97 game_configuration
00000F0C A$lcc19722$95 game_configuration
00000F0C C$game_configuration.c$19$1_0$97 game_configuration
00000F0E A$lcc19722$96 game_configuration
00000F10 A$lcc19722$97 game_configuration
00000F13 A$lcc19722$98 game_configuration
00000F15 A$lcc19722$102 game_configuration
00000F15 C$game_configuration.c$21$1_0$97 game_configuration
00000F17 A$lcc19722$103 game_configuration
00000F19 A$lcc19722$104 game_configuration
00000F1B A$lcc19722$108 game_configuration
00000F1B C$game_configuration.c$22$1_0$97 game_configuration
00000F1D A$lcc19722$109 game_configuration
00000F1F A$lcc19722$110 game_configuration
00000F21 A$lcc19722$114 game_configuration
00000F21 C$game_configuration.c$24$1_0$97 game_configuration
00000F23 A$lcc19722$115 game_configuration
00000F25 A$lcc19722$116 game_configuration
00000F27 A$lcc19722$124 game_configuration
00000F27 C$game_configuration.c$25$1_0$97 game_configuration
00000F27 XG$initialize_game$0$0 game_configuration
00000F28 A$lcc19722$137 game_configuration
00000F28 C$game_configuration.c$27$1_0$10 game_configuration
00000F28 C$game_configuration.c$31$2_0$10 game_configuration
00000F28 G$performatdelay$0$0 game_configuration
00000F28 _performatdelay game_configuration
00000F2A A$lcc19722$139 game_configuration
00000F2B A$lcc19722$140 game_configuration
00000F2D A$lcc19722$141 game_configuration
00000F2E A$lcc19722$142 game_configuration
00000F2F A$lcc19722$143 game_configuration
00000F32 A$lcc19722$144 game_configuration
00000F33 A$lcc19722$152 game_configuration
00000F33 C$game_configuration.c$32$2_0$10 game_configuration
00000F33 XG$performatdelay$0$0 game_configuration
00000F35 A$lcc19723$356 player
00000F35 C$player.c$33$0_0$101 player
00000F35 G$initialize_player$0$0 player
00000F35 _initialize_player player
ASxxxx Linker V03.00 + NoICE + sdld, page 9.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000F37 A$lcc19723$360 player
00000F37 C$player.c$35$1_0$101 player
00000F3A A$lcc19723$361 player
00000F3B A$lcc19723$362 player
00000F3C A$lcc19723$363 player
00000F3F A$lcc19723$367 player
00000F3F C$player.c$37$2_0$102 player
00000F41 A$lcc19723$371 player
00000F41 C$player.c$39$2_0$102 player
00000F43 A$lcc19723$372 player
00000F44 A$lcc19723$373 player
00000F45 A$lcc19723$374 player
00000F46 A$lcc19723$375 player
00000F47 A$lcc19723$376 player
00000F48 A$lcc19723$377 player
00000F49 A$lcc19723$378 player
00000F4A A$lcc19723$379 player
00000F4B A$lcc19723$380 player
00000F4C A$lcc19723$384 player
00000F4C C$player.c$40$2_0$102 player
00000F4F A$lcc19723$385 player
00000F50 A$lcc19723$386 player
00000F51 A$lcc19723$387 player
00000F52 A$lcc19723$388 player
00000F54 A$lcc19723$389 player
00000F55 A$lcc19723$390 player
00000F56 A$lcc19723$391 player
00000F57 A$lcc19723$392 player
00000F59 A$lcc19723$393 player
00000F5A A$lcc19723$394 player
00000F5B A$lcc19723$395 player
00000F5C A$lcc19723$396 player
00000F5D A$lcc19723$397 player
00000F5F A$lcc19723$401 player
00000F5F C$player.c$41$2_0$102 player
00000F60 A$lcc19723$402 player
00000F61 A$lcc19723$403 player
00000F62 A$lcc19723$404 player
00000F64 A$lcc19723$408 player
00000F64 C$player.c$42$2_0$102 player
00000F67 A$lcc19723$409 player
00000F68 A$lcc19723$410 player
00000F69 A$lcc19723$411 player
00000F6A A$lcc19723$412 player
00000F6B A$lcc19723$416 player
00000F6B C$player.c$43$2_0$102 player
00000F6E A$lcc19723$417 player
00000F6F A$lcc19723$418 player
00000F70 A$lcc19723$419 player
00000F71 A$lcc19723$420 player
00000F72 A$lcc19723$424 player
ASxxxx Linker V03.00 + NoICE + sdld, page 10.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000F72 C$player.c$44$2_0$102 player
00000F73 A$lcc19723$425 player
00000F74 A$lcc19723$429 player
00000F74 C$player.c$45$2_0$102 player
00000F77 A$lcc19723$430 player
00000F78 A$lcc19723$431 player
00000F79 A$lcc19723$432 player
00000F7A A$lcc19723$433 player
00000F7B A$lcc19723$434 player
00000F7C A$lcc19723$435 player
00000F7D A$lcc19723$436 player
00000F7F A$lcc19723$437 player
00000F80 A$lcc19723$438 player
00000F82 A$lcc19723$439 player
00000F85 A$lcc19723$440 player
00000F86 A$lcc19723$441 player
00000F87 A$lcc19723$442 player
00000F88 A$lcc19723$443 player
00000F8A A$lcc19723$444 player
00000F8B A$lcc19723$445 player
00000F8C A$lcc19723$446 player
00000F8D A$lcc19723$447 player
00000F8F A$lcc19723$448 player
00000F90 A$lcc19723$449 player
00000F91 A$lcc19723$450 player
00000F92 A$lcc19723$451 player
00000F93 A$lcc19723$452 player
00000F94 A$lcc19723$453 player
00000F95 A$lcc19723$454 player
00000F96 A$lcc19723$455 player
00000F97 A$lcc19723$456 player
00000F98 A$lcc19723$457 player
00000F99 A$lcc19723$458 player
00000F9A A$lcc19723$459 player
00000F9B A$lcc19723$460 player
00000F9C A$lcc19723$461 player
00000F9D A$lcc19723$462 player
00000F9E A$lcc19723$463 player
00000F9F A$lcc19723$464 player
00000FA0 A$lcc19723$465 player
00000FA1 A$lcc19723$466 player
00000FA2 A$lcc19723$467 player
00000FA3 A$lcc19723$468 player
00000FA4 A$lcc19723$469 player
00000FA5 A$lcc19723$473 player
00000FA5 C$player.c$46$2_0$102 player
00000FA8 A$lcc19723$474 player
00000FA9 A$lcc19723$475 player
00000FAA A$lcc19723$476 player
00000FAB A$lcc19723$477 player
00000FAC A$lcc19723$481 player
ASxxxx Linker V03.00 + NoICE + sdld, page 11.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000FAC C$player.c$48$2_0$102 player
00000FAF A$lcc19723$482 player
00000FB0 A$lcc19723$483 player
00000FB2 A$lcc19723$484 player
00000FB3 A$lcc19723$485 player
00000FB4 A$lcc19723$486 player
00000FB5 A$lcc19723$487 player
00000FB6 A$lcc19723$488 player
00000FB7 A$lcc19723$489 player
00000FBA A$lcc19723$490 player
00000FBC A$lcc19723$492 player
00000FBF A$lcc19723$493 player
00000FC1 A$lcc19723$495 player
00000FC3 A$lcc19723$496 player
00000FC4 A$lcc19723$497 player
00000FC5 A$lcc19723$498 player
00000FC6 A$lcc19723$499 player
00000FC7 A$lcc19723$500 player
00000FC8 A$lcc19723$501 player
00000FC9 A$lcc19723$502 player
00000FCA A$lcc19723$503 player
00000FCB A$lcc19723$504 player
00000FCC A$lcc19723$506 player
00000FCF A$lcc19723$508 player
00000FD0 A$lcc19723$509 player
00000FD1 A$lcc19723$510 player
00000FD2 A$lcc19723$518 player
00000FD2 C$player.c$51$1_0$101 player
00000FD2 C$player.c$54$1_0$101 player
00000FD5 A$lcc19723$519 player
00000FD6 A$lcc19723$523 player
00000FD8 A$lcc19723$528 player
00000FD8 C$player.c$55$1_0$101 player
00000FD8 XG$initialize_player$0$0 player
00000FD9 A$lcc19723$541 player
00000FD9 C$player.c$57$1_0$110 player
00000FD9 C$player.c$59$1_0$110 player
00000FD9 G$would_hit_surface$0$0 player
00000FD9 _would_hit_surface player
00000FDA A$lcc19723$542 player
00000FDB A$lcc19723$543 player
00000FDC A$lcc19723$544 player
00000FDD A$lcc19723$545 player
00000FDE A$lcc19723$546 player
00000FDF A$lcc19723$547 player
00000FE0 A$lcc19723$548 player
00000FE1 A$lcc19723$549 player
00000FE2 A$lcc19723$550 player
00000FE4 A$lcc19723$551 player
00000FE5 A$lcc19723$552 player
00000FE6 A$lcc19723$553 player
ASxxxx Linker V03.00 + NoICE + sdld, page 12.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00000FE7 A$lcc19723$557 player
00000FE7 C$player.c$61$1_0$110 player
00000FE9 A$lcc19723$565 player
00000FE9 C$player.c$62$1_0$110 player
00000FE9 XG$would_hit_surface$0$0 player
00000FEA A$lcc19723$575 player
00000FEA C$player.c$64$1_0$113 player
00000FEA G$player_jump$0$0 player
00000FEA _player_jump player
00000FEC A$lcc19723$579 player
00000FEC C$player.c$66$1_0$113 player
00000FEE A$lcc19723$580 player
00000FEF A$lcc19723$581 player
00000FF0 A$lcc19723$582 player
00000FF1 A$lcc19723$583 player
00000FF2 A$lcc19723$584 player
00000FF3 A$lcc19723$585 player
00000FF6 A$lcc19723$586 player
00000FF7 A$lcc19723$587 player
00000FF8 A$lcc19723$588 player
00000FF9 A$lcc19723$589 player
00000FFA A$lcc19723$590 player
00000FFD A$lcc19723$591 player
00000FFE A$lcc19723$592 player
00000FFF A$lcc19723$593 player
00001000 A$lcc19723$594 player
00001002 A$lcc19723$595 player
00001003 A$lcc19723$596 player
00001004 A$lcc19723$597 player
00001005 A$lcc19723$598 player
00001007 A$lcc19723$599 player
00001008 A$lcc19723$600 player
0000100B A$lcc19723$601 player
0000100C A$lcc19723$602 player
0000100D A$lcc19723$603 player
0000100E A$lcc19723$604 player
00001010 A$lcc19723$605 player
00001011 A$lcc19723$606 player
00001012 A$lcc19723$607 player
00001013 A$lcc19723$608 player
00001015 A$lcc19723$609 player
00001016 A$lcc19723$610 player
00001017 A$lcc19723$611 player
00001018 A$lcc19723$612 player
0000101A A$lcc19723$613 player
0000101B A$lcc19723$614 player
0000101C A$lcc19723$615 player
0000101D A$lcc19723$616 player
0000101F A$lcc19723$617 player
00001020 A$lcc19723$618 player
00001021 A$lcc19723$619 player
ASxxxx Linker V03.00 + NoICE + sdld, page 13.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00001022 A$lcc19723$620 player
00001023 A$lcc19723$621 player
00001025 A$lcc19723$622 player
00001026 A$lcc19723$623 player
00001027 A$lcc19723$624 player
00001028 A$lcc19723$625 player
00001029 A$lcc19723$626 player
0000102B A$lcc19723$627 player
0000102C A$lcc19723$628 player
0000102D A$lcc19723$629 player
0000102E A$lcc19723$630 player
0000102F A$lcc19723$631 player
00001031 A$lcc19723$632 player
00001032 A$lcc19723$633 player
00001033 A$lcc19723$634 player
00001034 A$lcc19723$635 player
00001035 A$lcc19723$636 player
00001037 A$lcc19723$637 player
00001038 A$lcc19723$638 player
00001039 A$lcc19723$639 player
0000103A A$lcc19723$640 player
0000103B A$lcc19723$641 player
0000103C A$lcc19723$642 player
0000103E A$lcc19723$643 player
0000103F A$lcc19723$644 player
00001040 A$lcc19723$645 player
00001041 A$lcc19723$646 player
00001042 A$lcc19723$647 player
00001044 A$lcc19723$648 player
00001045 A$lcc19723$649 player
00001046 A$lcc19723$650 player
00001047 A$lcc19723$651 player
00001048 A$lcc19723$652 player
0000104A A$lcc19723$653 player
0000104B A$lcc19723$654 player
0000104C A$lcc19723$655 player
0000104D A$lcc19723$656 player
0000104E A$lcc19723$657 player
0000104F A$lcc19723$658 player
00001050 A$lcc19723$659 player
00001051 A$lcc19723$660 player
00001054 A$lcc19723$661 player
00001056 A$lcc19723$662 player
00001057 A$lcc19723$663 player
00001058 A$lcc19723$664 player
00001059 A$lcc19723$665 player
0000105B A$lcc19723$669 player
0000105B C$player.c$69$2_0$114 player
0000105C A$lcc19723$670 player
0000105D A$lcc19723$671 player
0000105E A$lcc19723$672 player
ASxxxx Linker V03.00 + NoICE + sdld, page 14.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
0000105F A$lcc19723$673 player
00001062 A$lcc19723$674 player
00001063 A$lcc19723$675 player
00001064 A$lcc19723$676 player
00001065 A$lcc19723$680 player
00001065 C$player.c$71$2_0$114 player
00001066 A$lcc19723$681 player
00001067 A$lcc19723$682 player
00001068 A$lcc19723$683 player
00001069 A$lcc19723$684 player
0000106C A$lcc19723$685 player
0000106D A$lcc19723$686 player
0000106E A$lcc19723$690 player
0000106E C$player.c$73$2_0$114 player
00001070 A$lcc19723$691 player
00001071 A$lcc19723$696 player
00001071 C$player.c$76$1_0$113 player
00001072 A$lcc19723$697 player
00001073 A$lcc19723$698 player
00001076 A$lcc19723$702 player
00001076 C$player.c$90$1_0$113 player
00001079 A$lcc19723$703 player
0000107A A$lcc19723$704 player
0000107B A$lcc19723$705 player
0000107C A$lcc19723$706 player
0000107E A$lcc19723$707 player
0000107F A$lcc19723$708 player
00001080 A$lcc19723$709 player
00001081 A$lcc19723$710 player
00001083 A$lcc19723$711 player
00001084 A$lcc19723$712 player
00001087 A$lcc19723$713 player
00001088 A$lcc19723$714 player
00001089 A$lcc19723$715 player
0000108A A$lcc19723$716 player
0000108C A$lcc19723$717 player
0000108D A$lcc19723$718 player
0000108E A$lcc19723$719 player
0000108F A$lcc19723$720 player
00001091 A$lcc19723$721 player
00001092 A$lcc19723$725 player
00001092 C$player.c$92$1_0$113 player
00001094 A$lcc19723$726 player
00001095 A$lcc19723$727 player
00001097 A$lcc19723$728 player
00001098 A$lcc19723$732 player
00001098 C$player.c$78$2_0$115 player
0000109B A$lcc19723$733 player
0000109C A$lcc19723$734 player
0000109E A$lcc19723$738 player
0000109E C$player.c$80$3_0$116 player
ASxxxx Linker V03.00 + NoICE + sdld, page 15.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
000010A1 A$lcc19723$739 player
000010A2 A$lcc19723$740 player
000010A4 A$lcc19723$744 player
000010A4 C$player.c$82$4_0$117 player
000010A7 A$lcc19723$745 player
000010A8 A$lcc19723$749 player
000010A8 C$player.c$84$4_0$117 player
000010A9 A$lcc19723$750 player
000010AB A$lcc19723$751 player
000010AE A$lcc19723$755 player
000010AE C$player.c$86$5_0$118 player
000010B0 A$lcc19723$759 player
000010B0 C$player.c$88$5_0$118 player
000010B3 A$lcc19723$760 player
000010B4 A$lcc19723$761 player
000010B6 A$lcc19723$762 player
000010B7 A$lcc19723$766 player
000010B7 C$player.c$90$5_0$118 player
000010B8 A$lcc19723$767 player
000010BA A$lcc19723$768 player
000010BC A$lcc19723$769 player
000010BD A$lcc19723$770 player
000010BE A$lcc19723$771 player
000010BF A$lcc19723$772 player
000010C0 A$lcc19723$773 player
000010C1 A$lcc19723$774 player
000010C2 A$lcc19723$775 player
000010C3 A$lcc19723$776 player
000010C4 A$lcc19723$777 player
000010C5 A$lcc19723$778 player
000010C6 A$lcc19723$779 player
000010C7 A$lcc19723$780 player
000010C8 A$lcc19723$781 player
000010C9 A$lcc19723$782 player
000010CA A$lcc19723$783 player
000010CC A$lcc19723$784 player
000010CD A$lcc19723$785 player
000010CE A$lcc19723$786 player
000010CF A$lcc19723$787 player
000010D0 A$lcc19723$788 player
000010D1 A$lcc19723$789 player
000010D2 A$lcc19723$791 player
000010D4 A$lcc19723$792 player
000010D5 A$lcc19723$793 player
000010D6 A$lcc19723$794 player
000010D7 A$lcc19723$795 player
000010D8 A$lcc19723$796 player
000010D9 A$lcc19723$798 player
000010DB A$lcc19723$799 player
000010DC A$lcc19723$800 player
000010DE A$lcc19723$801 player
ASxxxx Linker V03.00 + NoICE + sdld, page 16.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
000010DF A$lcc19723$802 player
000010E0 A$lcc19723$803 player
000010E3 A$lcc19723$804 player
000010E4 A$lcc19723$806 player
000010E5 A$lcc19723$807 player
000010E6 A$lcc19723$808 player
000010E7 A$lcc19723$812 player
000010E7 C$player.c$92$3_0$116 player
000010EA A$lcc19723$817 player
000010EA C$player.c$97$4_0$119 player
000010ED A$lcc19723$818 player
000010EF A$lcc19723$822 player
000010EF C$player.c$99$4_0$119 player
000010F2 A$lcc19723$823 player
000010F4 A$lcc19723$824 player
000010F7 A$lcc19723$829 player
000010F7 C$player.c$105$3_0$120 player
000010F8 A$lcc19723$830 player
000010F9 A$lcc19723$831 player
000010FA A$lcc19723$832 player
000010FC A$lcc19723$833 player
000010FD A$lcc19723$834 player
000010FE A$lcc19723$835 player
000010FF A$lcc19723$836 player
00001100 A$lcc19723$837 player
00001102 A$lcc19723$838 player
00001103 A$lcc19723$839 player
00001104 A$lcc19723$840 player
00001105 A$lcc19723$841 player
00001106 A$lcc19723$842 player
00001108 A$lcc19723$843 player
00001109 A$lcc19723$844 player
0000110A A$lcc19723$845 player
0000110B A$lcc19723$846 player
0000110C A$lcc19723$847 player
0000110E A$lcc19723$848 player
0000110F A$lcc19723$849 player
00001110 A$lcc19723$850 player
00001111 A$lcc19723$851 player
00001112 A$lcc19723$852 player
00001114 A$lcc19723$853 player
00001115 A$lcc19723$854 player
00001116 A$lcc19723$855 player
00001117 A$lcc19723$856 player
00001118 A$lcc19723$857 player
00001119 A$lcc19723$858 player
0000111B A$lcc19723$859 player
0000111C A$lcc19723$860 player
0000111D A$lcc19723$861 player
0000111E A$lcc19723$862 player
0000111F A$lcc19723$863 player
ASxxxx Linker V03.00 + NoICE + sdld, page 17.
Hexadecimal [32-Bits]
Area Addr Size Decimal Bytes (Attributes)
-------------------------------- ---- ---- ------- ----- ------------
_CODE 00000200 000024AB = 9387. bytes (REL,CON)
Value Global Global Defined In Module
----- -------------------------------- ------------------------
00001121 A$lcc19723$864 player
00001122 A$lcc19723$865 player
00001123 A$lcc19723$866 player
00001124 A$lcc19723$867 player
00001125 A$lcc19723$868 player
00001127 A$lcc19723$869 player
00001128 A$lcc19723$870 player
00001129 A$lcc19723$871 player
0000112A A$lcc19723$872 player
0000112B A$lcc19723$873 player
0000112C A$lcc19723$874 player
0000112D A$lcc19723$875 player
0000112E A$lcc19723$876 player
00001131 A$lcc19723$877 player
00001133 A$lcc19723$878 player
00001134 A$lcc19723$879 player
00001135 A$lcc19723$880 player
00001136 A$lcc19723$881 player
00001139 A$lcc19723$885 player
00001139 C$player.c$107$4_0$121 player
0000113C A$lcc19723$886 player
0000113D A$lcc19723$890 player
0000113D C$player.c$109$4_0$121 player
0000113E A$lcc19723$891 player
00001140 A$lcc19723$892 player
00001143 A$lcc19723$896 player
00001143 C$player.c$111$5_0$122 player
00001145 A$lcc19723$900 player
00001145 C$player.c$113$5_0$122 player
00001148 A$lcc19723$901 player
00001149 A$lcc19723$905 player
00001149 C$player.c$115$5_0$122 player
0000114A A$lcc19723$906 player
0000114C A$lcc19723$907 player
0000114E A$lcc19723$908 player
0000114F A$lcc19723$909 player
00001150 A$lcc19723$910 player
00001151 A$lcc19723$911 player
00001152 A$lcc19723$912 player
00001153 A$lcc19723$913 player
00001154 A$lcc19723$914 player
00001155 A$lcc19723$915 player
00001156 A$lcc19723$916 player
00001157 A$lcc19723$917 player
00001158 A$lcc19723$918 player
00001159 A$lcc19723$919 player
0000115B A$lcc19723$920 player
0000115C A$lcc19723$921 player
0000115D A$lcc19723$922 player
0000115E A$lcc19723$923 player
0000115F A$lcc19723$924 player
ASxxxx Linker V03.00 + NoICE + sdld, page 18.
Hexadecimal [32-Bits]