-
Notifications
You must be signed in to change notification settings - Fork 1
/
SpaceInvaders.map
1004 lines (947 loc) · 90 KB
/
SpaceInvaders.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
ARM Linker, 5.03 [Build 76] [MDK-ARM Lite]
==============================================================================
Section Cross References
startup.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(RESET) refers to startup.o(STACK) for StackMem
startup.o(RESET) refers to spaceinvaders.o(i.SysTick_Handler) for SysTick_Handler
startup.o(RESET) refers to spaceinvaders.o(i.Timer2A_Handler) for Timer2A_Handler
startup.o(RESET) refers to texas.o(i.Timer4A_Handler) for Timer4A_Handler
startup.o(RESET) refers to texas.o(i.Timer5A_Handler) for Timer5A_Handler
startup.o(RESET) refers to __main.o(!!!main) for __main
startup.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(.text) refers to startup.o(HEAP) for HeapMem
startup.o(.text) refers to startup.o(STACK) for StackMem
nokia5110.o(i.Nokia5110_Clear) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_Clear) refers to nokia5110.o(i.Nokia5110_SetCursor) for Nokia5110_SetCursor
nokia5110.o(i.Nokia5110_ClearBuffer) refers to nokia5110.o(.bss) for Screen
nokia5110.o(i.Nokia5110_DisplayBuffer) refers to nokia5110.o(i.Nokia5110_DrawFullImage) for Nokia5110_DrawFullImage
nokia5110.o(i.Nokia5110_DisplayBuffer) refers to nokia5110.o(.bss) for Screen
nokia5110.o(i.Nokia5110_DrawFullImage) refers to nokia5110.o(i.Nokia5110_SetCursor) for Nokia5110_SetCursor
nokia5110.o(i.Nokia5110_DrawFullImage) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_Init) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_OutChar) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_OutChar) refers to nokia5110.o(.constdata) for ASCII
nokia5110.o(i.Nokia5110_OutString) refers to nokia5110.o(i.Nokia5110_OutChar) for Nokia5110_OutChar
nokia5110.o(i.Nokia5110_OutUDec) refers to nokia5110.o(i.Nokia5110_OutString) for Nokia5110_OutString
nokia5110.o(i.Nokia5110_OutUDec) refers to nokia5110.o(i.Nokia5110_OutChar) for Nokia5110_OutChar
nokia5110.o(i.Nokia5110_PrintBMP) refers to nokia5110.o(.bss) for Screen
nokia5110.o(i.Nokia5110_SetCursor) refers to nokia5110.o(i.lcdwrite) for lcdwrite
random.o(.text) refers to random.o(DATA) for M
spaceinvaders.o(i.Convert) refers to spaceinvaders.o(.bss) for Ship
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.ADC0_In) for ADC0_In
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.Convert) for Convert
spaceinvaders.o(i.GameEngineOperations) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.checkTouchingMissileVsSprite) for checkTouchingMissileVsSprite
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.Sound_Play) for Sound_Play
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.Fire_Button_Pressed) for Fire_Button_Pressed
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.Special_Button_Pressed) for Special_Button_Pressed
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.TurnOffSpecialLED) for TurnOffSpecialLED
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.willEnemyBumpOtherStuff) for willEnemyBumpOtherStuff
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.isEnemyOnScreen) for isEnemyOnScreen
spaceinvaders.o(i.GameEngineOperations) refers to random.o(.text) for Random
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(i.checkTouchingSpriteVsSprite) for checkTouchingSpriteVsSprite
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(.data) for SystickCounter
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(.bss) for Ship
spaceinvaders.o(i.GameEngineOperations) refers to spaceinvaders.o(.constdata) for invaderkilled
spaceinvaders.o(i.GameOver) refers to spaceinvaders.o(i.Fire_Button_Pressed) for Fire_Button_Pressed
spaceinvaders.o(i.GameOver) refers to nokia5110.o(i.Nokia5110_PrintBMP) for Nokia5110_PrintBMP
spaceinvaders.o(i.GameOver) refers to spaceinvaders.o(.data) for fireButtonReleased
spaceinvaders.o(i.GameOver) refers to spaceinvaders.o(.bss) for Ship
spaceinvaders.o(i.GameOver) refers to spaceinvaders.o(.constdata) for _my_won
spaceinvaders.o(i.InitSprites) refers to spaceinvaders.o(.constdata) for _my_PlayerShip2_00
spaceinvaders.o(i.InitSprites) refers to spaceinvaders.o(.bss) for Ship
spaceinvaders.o(i.Random_Drawable_X_Pos) refers to random.o(.text) for Random
spaceinvaders.o(i.Random_Drawable_Y_Pos) refers to random.o(.text) for Random
spaceinvaders.o(i.RenderingOperations) refers to nokia5110.o(i.Nokia5110_ClearBuffer) for Nokia5110_ClearBuffer
spaceinvaders.o(i.RenderingOperations) refers to nokia5110.o(i.Nokia5110_PrintBMP) for Nokia5110_PrintBMP
spaceinvaders.o(i.RenderingOperations) refers to random.o(.text) for Random
spaceinvaders.o(i.RenderingOperations) refers to spaceinvaders.o(i.Random_Drawable_X_Pos) for Random_Drawable_X_Pos
spaceinvaders.o(i.RenderingOperations) refers to spaceinvaders.o(i.Random_Drawable_Y_Pos) for Random_Drawable_Y_Pos
spaceinvaders.o(i.RenderingOperations) refers to spaceinvaders.o(i.isGameOver) for isGameOver
spaceinvaders.o(i.RenderingOperations) refers to spaceinvaders.o(i.GameOver) for GameOver
spaceinvaders.o(i.RenderingOperations) refers to spaceinvaders.o(.data) for FieldCounter
spaceinvaders.o(i.RenderingOperations) refers to spaceinvaders.o(.bss) for Ship
spaceinvaders.o(i.RenderingOperations) refers to spaceinvaders.o(.constdata) for _my_above_line
spaceinvaders.o(i.RestartGame) refers to spaceinvaders.o(.data) for fireButtonReleased
spaceinvaders.o(i.RestartGame) refers to spaceinvaders.o(.bss) for Ship
spaceinvaders.o(i.Sound_Play) refers to spaceinvaders.o(i.Timer2A_Start) for Timer2A_Start
spaceinvaders.o(i.Sound_Play) refers to spaceinvaders.o(.data) for Wave
spaceinvaders.o(i.SysTick_Handler) refers to spaceinvaders.o(i.isGameOver) for isGameOver
spaceinvaders.o(i.SysTick_Handler) refers to spaceinvaders.o(i.GameEngineOperations) for GameEngineOperations
spaceinvaders.o(i.SysTick_Handler) refers to spaceinvaders.o(i.Fire_Button_Pressed) for Fire_Button_Pressed
spaceinvaders.o(i.SysTick_Handler) refers to spaceinvaders.o(i.RestartGame) for RestartGame
spaceinvaders.o(i.SysTick_Handler) refers to spaceinvaders.o(i.RenderingOperations) for RenderingOperations
spaceinvaders.o(i.SysTick_Handler) refers to spaceinvaders.o(.data) for fireButtonReleased
spaceinvaders.o(i.Timer2A_Handler) refers to spaceinvaders.o(i.DAC_Out) for DAC_Out
spaceinvaders.o(i.Timer2A_Handler) refers to spaceinvaders.o(i.Timer2A_Stop) for Timer2A_Stop
spaceinvaders.o(i.Timer2A_Handler) refers to spaceinvaders.o(.data) for SoundCounter
spaceinvaders.o(i.checkTouchingMissileVsSprite) refers to spaceinvaders.o(i.checkTouching) for checkTouching
spaceinvaders.o(i.checkTouchingSpriteVsSprite) refers to spaceinvaders.o(i.checkTouching) for checkTouching
spaceinvaders.o(i.isEnemyOnScreen) refers to spaceinvaders.o(.bss) for Enemy
spaceinvaders.o(i.isGameOver) refers to spaceinvaders.o(.bss) for Ship
spaceinvaders.o(i.main) refers to texas.o(i.TExaS_Init) for TExaS_Init
spaceinvaders.o(i.main) refers to startup.o(.text) for DisableInterrupts
spaceinvaders.o(i.main) refers to random.o(.text) for Random_Init
spaceinvaders.o(i.main) refers to nokia5110.o(i.Nokia5110_Init) for Nokia5110_Init
spaceinvaders.o(i.main) refers to nokia5110.o(i.Nokia5110_ClearBuffer) for Nokia5110_ClearBuffer
spaceinvaders.o(i.main) refers to nokia5110.o(i.Nokia5110_DisplayBuffer) for Nokia5110_DisplayBuffer
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.SysTick_Init) for SysTick_Init
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.Timer2_Init) for Timer2_Init
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.Ports_Init) for Ports_Init
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.InitSprites) for InitSprites
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.RestartGame) for RestartGame
spaceinvaders.o(i.main) refers to nokia5110.o(i.Nokia5110_PrintBMP) for Nokia5110_PrintBMP
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.Delay100ms) for Delay100ms
spaceinvaders.o(i.main) refers to spaceinvaders.o(.constdata) for _my_Countdown_03
spaceinvaders.o(i.main) refers to spaceinvaders.o(.data) for Flag
spaceinvaders.o(i.willEnemyBumpOtherStuff) refers to spaceinvaders.o(i.checkTouching) for checkTouching
spaceinvaders.o(i.willEnemyBumpOtherStuff) refers to spaceinvaders.o(.bss) for Enemy
spaceinvaders.o(.data) refers to spaceinvaders.o(.constdata) for BigExplosion0
texas.o(i.SetCode) refers to texas.o(.bss) for TExaS
texas.o(i.SetCourse) refers to texas.o(.bss) for TExaS
texas.o(i.SetMode) refers to texas.o(.bss) for TExaS
texas.o(i.StartTimer4) refers to texas.o(.data) for ScopeCount
texas.o(i.TExaS_Init) refers to texas.o(i.PLL_Init) for PLL_Init
texas.o(i.TExaS_Init) refers to texas.o(i.SetCourse) for SetCourse
texas.o(i.TExaS_Init) refers to texas.o(i.UART0_Init) for UART0_Init
texas.o(i.TExaS_Init) refers to texas.o(i.SetCode) for SetCode
texas.o(i.TExaS_Init) refers to texas.o(i.ADC1_Init) for ADC1_Init
texas.o(i.TExaS_Init) refers to texas.o(.constdata) for IntroMsg
texas.o(i.TExaS_Init) refers to texas.o(.bss) for TExaS
texas.o(i.TExaS_Init) refers to texas.o(.data) for LastMode
texas.o(i.Timer5A_Handler) refers to texas.o(i.ADC1_In) for ADC1_In
texas.o(i.Timer5A_Handler) refers to texas.o(.data) for TExaS_Period
__main.o(!!!main) refers to rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for __rt_entry_postli_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000009) for __rt_entry_postsh_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000002) for __rt_entry_presh_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry4.o(.ARM.Collect$$rtentry$$00000004) for __rt_entry_sh
rtentry2.o(.ARM.Collect$$rtentry$$00000008) refers to boardinit2.o(.text) for _platform_post_stackheap_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000A) refers to libinit.o(.ARM.Collect$$libinit$$00000000) for __rt_lib_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000B) refers to boardinit3.o(.text) for _platform_post_lib_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to spaceinvaders.o(i.main) for main
rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to exit.o(.text) for exit
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000001) for .ARM.Collect$$rtentry$$00000001
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000008) for .ARM.Collect$$rtentry$$00000008
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for .ARM.Collect$$rtentry$$0000000A
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000B) for .ARM.Collect$$rtentry$$0000000B
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for .ARM.Collect$$rtentry$$0000000D
rtentry4.o(.ARM.Collect$$rtentry$$00000004) refers to sys_stackheap_outer.o(.text) for __user_setup_stackheap
rtentry4.o(.ARM.exidx) refers to rtentry4.o(.ARM.Collect$$rtentry$$00000004) for .ARM.Collect$$rtentry$$00000004
sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace
sys_stackheap_outer.o(.text) refers to startup.o(.text) for __user_initial_stackheap
exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002C) for __rt_lib_init_alloca_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002A) for __rt_lib_init_argv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_atexit_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001F) for __rt_lib_init_clock_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000030) for __rt_lib_init_cpp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_exceptions_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000002) for __rt_lib_init_fp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_fp_trap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_getenv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000008) for __rt_lib_init_heap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000F) for __rt_lib_init_lc_collate_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000011) for __rt_lib_init_lc_ctype_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_monetary_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_numeric_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_lc_time_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000C) for __rt_lib_init_rand_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_return
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_signal_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000023) for __rt_lib_init_stdio_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000A) for __rt_lib_init_user_alloc_1
libspace.o(.text) refers to libspace.o(.bss) for __libspace_start
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
rtexit.o(.ARM.exidx) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for .ARM.Collect$$rtexit$$00000000
libinit2.o(.ARM.Collect$$libinit$$0000000E) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000010) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000016) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000024) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
libinit2.o(.ARM.Collect$$libinit$$00000025) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
rtexit2.o(.ARM.Collect$$rtexit$$00000003) refers to libshutdown.o(.ARM.Collect$$libshutdown$$00000000) for __rt_lib_shutdown
rtexit2.o(.ARM.Collect$$rtexit$$00000004) refers to sys_exit.o(.text) for _sys_exit
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000001) for .ARM.Collect$$rtexit$$00000001
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for .ARM.Collect$$rtexit$$00000003
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for .ARM.Collect$$rtexit$$00000004
argv_veneer.o(.emb_text) refers to no_argv.o(.text) for __ARM_get_argv
sys_exit.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_exit.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
_get_argv_nomalloc.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
_get_argv_nomalloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
_get_argv_nomalloc.o(.text) refers to sys_command.o(.text) for _sys_command_string
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000006) for __rt_lib_shutdown_fp_trap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E) for __rt_lib_shutdown_heap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) for __rt_lib_shutdown_return
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000009) for __rt_lib_shutdown_signal_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000003) for __rt_lib_shutdown_stdio_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B) for __rt_lib_shutdown_user_alloc_1
sys_command.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_command.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
defsig_rtmem_outer.o(.text) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
defsig_rtmem_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
defsig_rtmem_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
rt_raise.o(.text) refers to __raise.o(.text) for __raise
rt_raise.o(.text) refers to sys_exit.o(.text) for _sys_exit
defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit
defsig_rtmem_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
__raise.o(.text) refers to defsig.o(CL$$defsig) for __default_signal_handler
defsig_general.o(.text) refers to sys_wrch.o(.text) for _ttywrch
sys_wrch.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_wrch.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
defsig_abrt_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_fpe_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_rtred_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_stak_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_pvfn_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_cppl_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_segv_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_other.o(.text) refers to defsig_general.o(.text) for __default_signal_display
==============================================================================
Removing Unused input sections from the image.
Removing nokia5110.o(i.Nokia5110_Clear), (32 bytes).
Removing nokia5110.o(i.Nokia5110_OutChar), (56 bytes).
Removing nokia5110.o(i.Nokia5110_OutString), (22 bytes).
Removing nokia5110.o(i.Nokia5110_OutUDec), (412 bytes).
Removing nokia5110.o(.constdata), (480 bytes).
Removing spaceinvaders.o(i.TurnOffLifeLED), (24 bytes).
Removing texas.o(i.SetMode), (24 bytes).
Removing texas.o(i.StartTimer4), (36 bytes).
Removing texas.o(i.StopTimer4), (24 bytes).
Removing texas.o(i.TExaS_Stop), (28 bytes).
Removing texas.o(i.UART0_InChar), (24 bytes).
Removing texas.o(i.UART0_InCharNonBlocking), (28 bytes).
Removing texas.o(i.UART0_OutChar), (24 bytes).
Removing texas.o(i.UART0_OutCharNonBlock), (12 bytes).
Removing texas.o(i.copy), (18 bytes).
15 unused section(s) (total 1244 bytes) removed from the image.
==============================================================================
Image Symbol Table
Local Symbols
Symbol Name Value Ov Type Size Object(Section)
RESET 0x00000000 Section 644 startup.o(RESET)
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE
../clib/angel/handlers.s 0x00000000 Number 0 __scatter_copy.o ABSOLUTE
../clib/angel/handlers.s 0x00000000 Number 0 __scatter_zi.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtexit2.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry4.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtexit.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry2.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE
../clib/angel/scatter.s 0x00000000 Number 0 __scatter.o ABSOLUTE
../clib/angel/startup.s 0x00000000 Number 0 __main.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 libspace.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_exit.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_wrch.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_command.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 hrguard.o ABSOLUTE
../clib/heapaux.c 0x00000000 Number 0 heapauxi.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libshutdown.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memcpy_w.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_other.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_segv_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_cppl_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_pvfn_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE
../clib/signal.s 0x00000000 Number 0 defsig.o ABSOLUTE
../clib/stdlib.c 0x00000000 Number 0 exit.o ABSOLUTE
../fplib/fpinit.s 0x00000000 Number 0 fpinit.o ABSOLUTE
Nokia5110.c 0x00000000 Number 0 nokia5110.o ABSOLUTE
SpaceInvaders.c 0x00000000 Number 0 spaceinvaders.o ABSOLUTE
TExaS.c 0x00000000 Number 0 texas.o ABSOLUTE
dc.s 0x00000000 Number 0 dc.o ABSOLUTE
random.s 0x00000000 Number 0 random.o ABSOLUTE
startup.s 0x00000000 Number 0 startup.o ABSOLUTE
!!!main 0x00000284 Section 8 __main.o(!!!main)
!!!scatter 0x0000028c Section 52 __scatter.o(!!!scatter)
!!handler_copy 0x000002c0 Section 26 __scatter_copy.o(!!handler_copy)
!!handler_zi 0x000002dc Section 28 __scatter_zi.o(!!handler_zi)
.ARM.Collect$$libinit$$00000000 0x000002f8 Section 2 libinit.o(.ARM.Collect$$libinit$$00000000)
.ARM.Collect$$libinit$$00000002 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
.ARM.Collect$$libinit$$00000008 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000008)
.ARM.Collect$$libinit$$0000000A 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
.ARM.Collect$$libinit$$0000000C 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
.ARM.Collect$$libinit$$0000000F 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000F)
.ARM.Collect$$libinit$$00000011 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
.ARM.Collect$$libinit$$00000013 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
.ARM.Collect$$libinit$$00000015 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
.ARM.Collect$$libinit$$00000017 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
.ARM.Collect$$libinit$$00000019 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
.ARM.Collect$$libinit$$0000001B 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
.ARM.Collect$$libinit$$0000001D 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
.ARM.Collect$$libinit$$0000001F 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
.ARM.Collect$$libinit$$00000021 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
.ARM.Collect$$libinit$$00000023 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
.ARM.Collect$$libinit$$0000002A 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002A)
.ARM.Collect$$libinit$$0000002C 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
.ARM.Collect$$libinit$$0000002E 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
.ARM.Collect$$libinit$$00000030 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
.ARM.Collect$$libinit$$00000031 0x000002fa Section 2 libinit2.o(.ARM.Collect$$libinit$$00000031)
.ARM.Collect$$libshutdown$$00000000 0x000002fc Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
.ARM.Collect$$libshutdown$$00000003 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000003)
.ARM.Collect$$libshutdown$$00000006 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
.ARM.Collect$$libshutdown$$00000009 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
.ARM.Collect$$libshutdown$$0000000B 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B)
.ARM.Collect$$libshutdown$$0000000E 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
.ARM.Collect$$libshutdown$$0000000F 0x000002fe Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)
.ARM.Collect$$rtentry$$00000000 0x00000300 Section 0 rtentry.o(.ARM.Collect$$rtentry$$00000000)
.ARM.Collect$$rtentry$$00000002 0x00000300 Section 0 rtentry2.o(.ARM.Collect$$rtentry$$00000002)
.ARM.Collect$$rtentry$$00000004 0x00000300 Section 6 rtentry4.o(.ARM.Collect$$rtentry$$00000004)
.ARM.Collect$$rtentry$$00000009 0x00000306 Section 0 rtentry2.o(.ARM.Collect$$rtentry$$00000009)
.ARM.Collect$$rtentry$$0000000A 0x00000306 Section 4 rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
.ARM.Collect$$rtentry$$0000000C 0x0000030a Section 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
.ARM.Collect$$rtentry$$0000000D 0x0000030a Section 8 rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
.ARM.Collect$$rtexit$$00000000 0x00000312 Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000)
.ARM.Collect$$rtexit$$00000002 0x00000314 Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
.ARM.Collect$$rtexit$$00000003 0x00000314 Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
.ARM.Collect$$rtexit$$00000004 0x00000318 Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
.text 0x00000320 Section 48 startup.o(.text)
.text 0x00000350 Section 64 random.o(.text)
.text 0x00000390 Section 100 rt_memcpy_w.o(.text)
.text 0x000003f4 Section 0 heapauxi.o(.text)
.text 0x000003fa Section 74 sys_stackheap_outer.o(.text)
.text 0x00000444 Section 0 exit.o(.text)
.text 0x00000450 Section 8 libspace.o(.text)
.text 0x00000458 Section 0 sys_exit.o(.text)
.text 0x00000464 Section 2 use_no_semi.o(.text)
.text 0x00000466 Section 0 indicate_semi.o(.text)
i.ADC0_In 0x00000468 Section 0 spaceinvaders.o(i.ADC0_In)
i.ADC1_In 0x00000494 Section 0 texas.o(i.ADC1_In)
i.ADC1_Init 0x000004a0 Section 0 texas.o(i.ADC1_Init)
i.Convert 0x00000574 Section 0 spaceinvaders.o(i.Convert)
i.DAC_Out 0x0000059c Section 0 spaceinvaders.o(i.DAC_Out)
i.Delay100ms 0x000005b4 Section 0 spaceinvaders.o(i.Delay100ms)
i.Fire_Button_Pressed 0x000005d8 Section 0 spaceinvaders.o(i.Fire_Button_Pressed)
i.GameEngineOperations 0x000005e8 Section 0 spaceinvaders.o(i.GameEngineOperations)
i.GameOver 0x00000b24 Section 0 spaceinvaders.o(i.GameOver)
i.InitSprites 0x00000b84 Section 0 spaceinvaders.o(i.InitSprites)
i.Nokia5110_ClearBuffer 0x00000c78 Section 0 nokia5110.o(i.Nokia5110_ClearBuffer)
i.Nokia5110_DisplayBuffer 0x00000c90 Section 0 nokia5110.o(i.Nokia5110_DisplayBuffer)
i.Nokia5110_DrawFullImage 0x00000ca0 Section 0 nokia5110.o(i.Nokia5110_DrawFullImage)
i.Nokia5110_Init 0x00000cc4 Section 0 nokia5110.o(i.Nokia5110_Init)
i.Nokia5110_PrintBMP 0x00000e30 Section 0 nokia5110.o(i.Nokia5110_PrintBMP)
i.Nokia5110_SetCursor 0x00000fd8 Section 0 nokia5110.o(i.Nokia5110_SetCursor)
i.PLL_Init 0x00001008 Section 0 texas.o(i.PLL_Init)
i.Ports_Init 0x00001084 Section 0 spaceinvaders.o(i.Ports_Init)
i.Random_Drawable_X_Pos 0x00001238 Section 0 spaceinvaders.o(i.Random_Drawable_X_Pos)
i.Random_Drawable_Y_Pos 0x0000124c Section 0 spaceinvaders.o(i.Random_Drawable_Y_Pos)
i.RenderingOperations 0x0000126c Section 0 spaceinvaders.o(i.RenderingOperations)
i.RestartGame 0x000014ec Section 0 spaceinvaders.o(i.RestartGame)
i.SetCode 0x000015ec Section 0 texas.o(i.SetCode)
i.SetCourse 0x00001604 Section 0 texas.o(i.SetCourse)
i.Sound_Play 0x0000161c Section 0 spaceinvaders.o(i.Sound_Play)
i.Special_Button_Pressed 0x00001644 Section 0 spaceinvaders.o(i.Special_Button_Pressed)
i.SysTick_Handler 0x00001654 Section 0 spaceinvaders.o(i.SysTick_Handler)
i.SysTick_Init 0x00001688 Section 0 spaceinvaders.o(i.SysTick_Init)
i.TExaS_Init 0x000016bc Section 0 texas.o(i.TExaS_Init)
i.Timer2A_Handler 0x00001880 Section 0 spaceinvaders.o(i.Timer2A_Handler)
i.Timer2A_Start 0x000018c8 Section 0 spaceinvaders.o(i.Timer2A_Start)
i.Timer2A_Stop 0x000018dc Section 0 spaceinvaders.o(i.Timer2A_Stop)
i.Timer2_Init 0x000018f0 Section 0 spaceinvaders.o(i.Timer2_Init)
i.Timer4A_Handler 0x0000194c Section 0 texas.o(i.Timer4A_Handler)
i.Timer5A_Handler 0x0000196c Section 0 texas.o(i.Timer5A_Handler)
i.TurnOffSpecialLED 0x0000199c Section 0 spaceinvaders.o(i.TurnOffSpecialLED)
i.UART0_Init 0x000019b4 Section 0 texas.o(i.UART0_Init)
i.checkTouching 0x00001a74 Section 0 spaceinvaders.o(i.checkTouching)
i.checkTouchingMissileVsSprite 0x00001b18 Section 0 spaceinvaders.o(i.checkTouchingMissileVsSprite)
i.checkTouchingSpriteVsSprite 0x00001b50 Section 0 spaceinvaders.o(i.checkTouchingSpriteVsSprite)
i.isEnemyOnScreen 0x00001b88 Section 0 spaceinvaders.o(i.isEnemyOnScreen)
i.isGameOver 0x00001bb4 Section 0 spaceinvaders.o(i.isGameOver)
i.lcdwrite 0x00001bf0 Section 0 nokia5110.o(i.lcdwrite)
lcdwrite 0x00001bf1 Thumb Code 66 nokia5110.o(i.lcdwrite)
i.main 0x00001c3c Section 0 spaceinvaders.o(i.main)
i.willEnemyBumpOtherStuff 0x00001d08 Section 0 spaceinvaders.o(i.willEnemyBumpOtherStuff)
.constdata 0x00001dfc Section 18492 spaceinvaders.o(.constdata)
ASCII 0x00001dfc Data 480 spaceinvaders.o(.constdata)
.constdata 0x00006638 Section 360 texas.o(.constdata)
.data 0x20000000 Section 115 spaceinvaders.o(.data)
.data 0x20000074 Section 52 texas.o(.data)
DATA 0x200000a8 Section 4 random.o(DATA)
M 0x200000a8 Data 4 random.o(DATA)
.bss 0x200000ac Section 504 nokia5110.o(.bss)
.bss 0x200002a4 Section 580 spaceinvaders.o(.bss)
.bss 0x200004e8 Section 56 texas.o(.bss)
.bss 0x20000520 Section 96 libspace.o(.bss)
HEAP 0x20000580 Section 0 startup.o(HEAP)
STACK 0x20000580 Section 1024 startup.o(STACK)
HeapMem 0x20000580 Data 0 startup.o(HEAP)
StackMem 0x20000580 Data 0 startup.o(STACK)
Global Symbols
Symbol Name Value Ov Type Size Object(Section)
BuildAttributes$$THM_ISAv4$E$P$D$K$B$S$7EM$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OSPACE$ROPI$EBA8$UX$STANDARDLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
__ARM_use_no_argv 0x00000000 Number 0 spaceinvaders.o ABSOLUTE
__Vectors 0x00000000 Data 0 startup.o(RESET)
__ARM_exceptions_init - Undefined Weak Reference
__alloca_initialize - Undefined Weak Reference
__cpp_initialize__aeabi_ - Undefined Weak Reference
__cxa_finalize - Undefined Weak Reference
__rt_locale - Undefined Weak Reference
__sigvec_lookup - Undefined Weak Reference
_atexit_init - Undefined Weak Reference
_call_atexit_fns - Undefined Weak Reference
_clock_init - Undefined Weak Reference
_fp_trap_init - Undefined Weak Reference
_fp_trap_shutdown - Undefined Weak Reference
_get_lc_collate - Undefined Weak Reference
_get_lc_ctype - Undefined Weak Reference
_get_lc_monetary - Undefined Weak Reference
_get_lc_numeric - Undefined Weak Reference
_get_lc_time - Undefined Weak Reference
_getenv_init - Undefined Weak Reference
_handle_redirection - Undefined Weak Reference
_init_alloc - Undefined Weak Reference
_init_user_alloc - Undefined Weak Reference
_initio - Undefined Weak Reference
_rand_init - Undefined Weak Reference
_signal_finish - Undefined Weak Reference
_signal_init - Undefined Weak Reference
_terminate_alloc - Undefined Weak Reference
_terminate_user_alloc - Undefined Weak Reference
_terminateio - Undefined Weak Reference
Reset_Handler 0x0000026d Thumb Code 0 startup.o(RESET)
NMI_Handler 0x00000271 Thumb Code 2 startup.o(RESET)
HardFault_Handler 0x00000273 Thumb Code 2 startup.o(RESET)
MemManage_Handler 0x00000275 Thumb Code 2 startup.o(RESET)
BusFault_Handler 0x00000277 Thumb Code 2 startup.o(RESET)
UsageFault_Handler 0x00000279 Thumb Code 2 startup.o(RESET)
SVC_Handler 0x0000027b Thumb Code 2 startup.o(RESET)
DebugMon_Handler 0x0000027d Thumb Code 2 startup.o(RESET)
PendSV_Handler 0x0000027f Thumb Code 2 startup.o(RESET)
ADC0Seq0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC0Seq1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC0Seq2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC0Seq3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC1Seq0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC1Seq1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC1Seq2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC1Seq3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
CAN0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
CAN1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
CAN2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Comp0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Comp1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Comp2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Ethernet_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ExtBus_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
FPU_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Fan0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
FlashCtl_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortA_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortB_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortC_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortD_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortE_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortF_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortG_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortH_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortJ_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortK_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortL_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortM_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortN_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP6_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP7_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ6_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ7_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortR_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortS_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Hibernate_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2S0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
LPC0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PECI0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Fault_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Fault_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Quadrature0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Quadrature1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Quadrature2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SysCtl_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer0A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer0B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer1A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer1B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer2B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer3A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer3B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer4B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer5B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART6_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART7_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
USB0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WDT_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer0A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer0B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer1A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer1B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer2A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer2B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer3A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer3B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer4A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer4B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer5A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer5B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
uDMA_Error 0x00000283 Thumb Code 0 startup.o(RESET)
uDMA_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
__main 0x00000285 Thumb Code 8 __main.o(!!!main)
__scatterload 0x0000028d Thumb Code 0 __scatter.o(!!!scatter)
__scatterload_rt2 0x0000028d Thumb Code 44 __scatter.o(!!!scatter)
__scatterload_rt2_thumb_only 0x0000028d Thumb Code 0 __scatter.o(!!!scatter)
__scatterload_null 0x0000029b Thumb Code 0 __scatter.o(!!!scatter)
__scatterload_copy 0x000002c1 Thumb Code 26 __scatter_copy.o(!!handler_copy)
__scatterload_zeroinit 0x000002dd Thumb Code 28 __scatter_zi.o(!!handler_zi)
__rt_lib_init 0x000002f9 Thumb Code 0 libinit.o(.ARM.Collect$$libinit$$00000000)
__rt_lib_init_alloca_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
__rt_lib_init_argv_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002A)
__rt_lib_init_atexit_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
__rt_lib_init_clock_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
__rt_lib_init_cpp_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
__rt_lib_init_exceptions_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
__rt_lib_init_fp_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
__rt_lib_init_fp_trap_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
__rt_lib_init_getenv_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
__rt_lib_init_heap_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000008)
__rt_lib_init_lc_collate_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000F)
__rt_lib_init_lc_ctype_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
__rt_lib_init_lc_monetary_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
__rt_lib_init_lc_numeric_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
__rt_lib_init_lc_time_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
__rt_lib_init_rand_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
__rt_lib_init_return 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000031)
__rt_lib_init_signal_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
__rt_lib_init_stdio_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
__rt_lib_init_user_alloc_1 0x000002fb Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
__rt_lib_shutdown 0x000002fd Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
__rt_lib_shutdown_fp_trap_1 0x000002ff Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
__rt_lib_shutdown_heap_1 0x000002ff Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
__rt_lib_shutdown_return 0x000002ff Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)
__rt_lib_shutdown_signal_1 0x000002ff Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
__rt_lib_shutdown_stdio_1 0x000002ff Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000003)
__rt_lib_shutdown_user_alloc_1 0x000002ff Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B)
__rt_entry 0x00000301 Thumb Code 0 rtentry.o(.ARM.Collect$$rtentry$$00000000)
__rt_entry_presh_1 0x00000301 Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$00000002)
__rt_entry_sh 0x00000301 Thumb Code 0 rtentry4.o(.ARM.Collect$$rtentry$$00000004)
__rt_entry_li 0x00000307 Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
__rt_entry_postsh_1 0x00000307 Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$00000009)
__rt_entry_main 0x0000030b Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
__rt_entry_postli_1 0x0000030b Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
__rt_exit 0x00000313 Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000)
__rt_exit_ls 0x00000315 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
__rt_exit_prels_1 0x00000315 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
__rt_exit_exit 0x00000319 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
DisableInterrupts 0x00000321 Thumb Code 0 startup.o(.text)
EnableInterrupts 0x00000325 Thumb Code 0 startup.o(.text)
StartCritical 0x00000329 Thumb Code 0 startup.o(.text)
EndCritical 0x00000331 Thumb Code 0 startup.o(.text)
WaitForInterrupt 0x00000337 Thumb Code 0 startup.o(.text)
__user_initial_stackheap 0x0000033b Thumb Code 0 startup.o(.text)
Random_Init 0x00000351 Thumb Code 0 random.o(.text)
Random32 0x0000035b Thumb Code 2 random.o(.text)
Random 0x0000036d Thumb Code 2 random.o(.text)
__aeabi_memcpy4 0x00000391 Thumb Code 0 rt_memcpy_w.o(.text)
__aeabi_memcpy8 0x00000391 Thumb Code 0 rt_memcpy_w.o(.text)
__rt_memcpy_w 0x00000391 Thumb Code 100 rt_memcpy_w.o(.text)
_memcpy_lastbytes_aligned 0x000003d9 Thumb Code 0 rt_memcpy_w.o(.text)
__use_two_region_memory 0x000003f5 Thumb Code 2 heapauxi.o(.text)
__rt_heap_escrow$2region 0x000003f7 Thumb Code 2 heapauxi.o(.text)
__rt_heap_expand$2region 0x000003f9 Thumb Code 2 heapauxi.o(.text)
__user_setup_stackheap 0x000003fb Thumb Code 74 sys_stackheap_outer.o(.text)
exit 0x00000445 Thumb Code 12 exit.o(.text)
__user_libspace 0x00000451 Thumb Code 8 libspace.o(.text)
__user_perproc_libspace 0x00000451 Thumb Code 0 libspace.o(.text)
__user_perthread_libspace 0x00000451 Thumb Code 0 libspace.o(.text)
_sys_exit 0x00000459 Thumb Code 8 sys_exit.o(.text)
__I$use$semihosting 0x00000465 Thumb Code 0 use_no_semi.o(.text)
__use_no_semihosting_swi 0x00000465 Thumb Code 2 use_no_semi.o(.text)
__semihosting_library_function 0x00000467 Thumb Code 0 indicate_semi.o(.text)
ADC0_In 0x00000469 Thumb Code 36 spaceinvaders.o(i.ADC0_In)
ADC1_In 0x00000495 Thumb Code 6 texas.o(i.ADC1_In)
ADC1_Init 0x000004a1 Thumb Code 174 texas.o(i.ADC1_Init)
Convert 0x00000575 Thumb Code 36 spaceinvaders.o(i.Convert)
DAC_Out 0x0000059d Thumb Code 16 spaceinvaders.o(i.DAC_Out)
Delay100ms 0x000005b5 Thumb Code 30 spaceinvaders.o(i.Delay100ms)
Fire_Button_Pressed 0x000005d9 Thumb Code 10 spaceinvaders.o(i.Fire_Button_Pressed)
GameEngineOperations 0x000005e9 Thumb Code 1316 spaceinvaders.o(i.GameEngineOperations)
GameOver 0x00000b25 Thumb Code 70 spaceinvaders.o(i.GameOver)
InitSprites 0x00000b85 Thumb Code 204 spaceinvaders.o(i.InitSprites)
Nokia5110_ClearBuffer 0x00000c79 Thumb Code 20 nokia5110.o(i.Nokia5110_ClearBuffer)
Nokia5110_DisplayBuffer 0x00000c91 Thumb Code 10 nokia5110.o(i.Nokia5110_DisplayBuffer)
Nokia5110_DrawFullImage 0x00000ca1 Thumb Code 34 nokia5110.o(i.Nokia5110_DrawFullImage)
Nokia5110_Init 0x00000cc5 Thumb Code 316 nokia5110.o(i.Nokia5110_Init)
Nokia5110_PrintBMP 0x00000e31 Thumb Code 420 nokia5110.o(i.Nokia5110_PrintBMP)
Nokia5110_SetCursor 0x00000fd9 Thumb Code 48 nokia5110.o(i.Nokia5110_SetCursor)
PLL_Init 0x00001009 Thumb Code 118 texas.o(i.PLL_Init)
Ports_Init 0x00001085 Thumb Code 370 spaceinvaders.o(i.Ports_Init)
Random_Drawable_X_Pos 0x00001239 Thumb Code 20 spaceinvaders.o(i.Random_Drawable_X_Pos)
Random_Drawable_Y_Pos 0x0000124d Thumb Code 32 spaceinvaders.o(i.Random_Drawable_Y_Pos)
RenderingOperations 0x0000126d Thumb Code 578 spaceinvaders.o(i.RenderingOperations)
RestartGame 0x000014ed Thumb Code 244 spaceinvaders.o(i.RestartGame)
SetCode 0x000015ed Thumb Code 20 texas.o(i.SetCode)
SetCourse 0x00001605 Thumb Code 20 texas.o(i.SetCourse)
Sound_Play 0x0000161d Thumb Code 26 spaceinvaders.o(i.Sound_Play)
Special_Button_Pressed 0x00001645 Thumb Code 10 spaceinvaders.o(i.Special_Button_Pressed)
SysTick_Handler 0x00001655 Thumb Code 42 spaceinvaders.o(i.SysTick_Handler)
SysTick_Init 0x00001689 Thumb Code 42 spaceinvaders.o(i.SysTick_Init)
TExaS_Init 0x000016bd Thumb Code 324 texas.o(i.TExaS_Init)
Timer2A_Handler 0x00001881 Thumb Code 56 spaceinvaders.o(i.Timer2A_Handler)
Timer2A_Start 0x000018c9 Thumb Code 14 spaceinvaders.o(i.Timer2A_Start)
Timer2A_Stop 0x000018dd Thumb Code 14 spaceinvaders.o(i.Timer2A_Stop)
Timer2_Init 0x000018f1 Thumb Code 76 spaceinvaders.o(i.Timer2_Init)
Timer4A_Handler 0x0000194d Thumb Code 20 texas.o(i.Timer4A_Handler)
Timer5A_Handler 0x0000196d Thumb Code 34 texas.o(i.Timer5A_Handler)
TurnOffSpecialLED 0x0000199d Thumb Code 16 spaceinvaders.o(i.TurnOffSpecialLED)
UART0_Init 0x000019b5 Thumb Code 160 texas.o(i.UART0_Init)
checkTouching 0x00001a75 Thumb Code 164 spaceinvaders.o(i.checkTouching)
checkTouchingMissileVsSprite 0x00001b19 Thumb Code 56 spaceinvaders.o(i.checkTouchingMissileVsSprite)
checkTouchingSpriteVsSprite 0x00001b51 Thumb Code 56 spaceinvaders.o(i.checkTouchingSpriteVsSprite)
isEnemyOnScreen 0x00001b89 Thumb Code 40 spaceinvaders.o(i.isEnemyOnScreen)
isGameOver 0x00001bb5 Thumb Code 50 spaceinvaders.o(i.isGameOver)
main 0x00001c3d Thumb Code 184 spaceinvaders.o(i.main)
willEnemyBumpOtherStuff 0x00001d09 Thumb Code 240 spaceinvaders.o(i.willEnemyBumpOtherStuff)
BigExplosion0 0x00001fdc Data 215 spaceinvaders.o(.constdata)
BigExplosion1 0x000020b3 Data 215 spaceinvaders.o(.constdata)
SmallExplosion0 0x0000218a Data 199 spaceinvaders.o(.constdata)
SmallExplosion1 0x00002251 Data 199 spaceinvaders.o(.constdata)
_my_PlayerShip2_00 0x00002318 Data 207 spaceinvaders.o(.constdata)
_my_PlayerShip2_01 0x000023e7 Data 207 spaceinvaders.o(.constdata)
_my_Countdown_GO 0x000024b6 Data 695 spaceinvaders.o(.constdata)
_my_Countdown_01 0x0000276d Data 695 spaceinvaders.o(.constdata)
_my_Countdown_02 0x00002a24 Data 695 spaceinvaders.o(.constdata)
_my_Countdown_03 0x00002cdb Data 695 spaceinvaders.o(.constdata)
_my_Thin_Missile_01 0x00002f92 Data 127 spaceinvaders.o(.constdata)
_myField_Height 0x00003011 Data 1 spaceinvaders.o(.constdata)
_myField_Width 0x00003012 Data 1 spaceinvaders.o(.constdata)
_my_Field_01 0x00003013 Data 151 spaceinvaders.o(.constdata)
_my_Field_02 0x000030aa Data 151 spaceinvaders.o(.constdata)
_my_Field_03 0x00003141 Data 151 spaceinvaders.o(.constdata)
_my_Field_04 0x000031d8 Data 151 spaceinvaders.o(.constdata)
_my_Field_05 0x0000326f Data 151 spaceinvaders.o(.constdata)
_my_Field_06 0x00003306 Data 151 spaceinvaders.o(.constdata)
_my_Field_07 0x0000339d Data 151 spaceinvaders.o(.constdata)
_my_Field_08 0x00003434 Data 151 spaceinvaders.o(.constdata)
_my_Field_09 0x000034cb Data 151 spaceinvaders.o(.constdata)
_my_Field_10 0x00003562 Data 151 spaceinvaders.o(.constdata)
_my_Field_11 0x000035f9 Data 151 spaceinvaders.o(.constdata)
_my_Field_12 0x00003690 Data 151 spaceinvaders.o(.constdata)
_my_above_line 0x00003727 Data 163 spaceinvaders.o(.constdata)
_my_heart 0x000037ca Data 147 spaceinvaders.o(.constdata)
_my_coin_00 0x0000385d Data 143 spaceinvaders.o(.constdata)
_my_coin_01 0x000038ec Data 143 spaceinvaders.o(.constdata)
_my_won 0x0000397b Data 1271 spaceinvaders.o(.constdata)
_my_lost 0x00003e72 Data 1271 spaceinvaders.o(.constdata)
_my_Enemy01_01 0x00004369 Data 183 spaceinvaders.o(.constdata)
_my_Enemy01_02 0x00004420 Data 183 spaceinvaders.o(.constdata)
shoot_Count 0x000044d8 Data 4 spaceinvaders.o(.constdata)
shoot 0x000044dc Data 4080 spaceinvaders.o(.constdata)
invaderkilled_Count 0x000054cc Data 4 spaceinvaders.o(.constdata)
invaderkilled 0x000054d0 Data 3377 spaceinvaders.o(.constdata)
fastinvader3_Count 0x00006204 Data 4 spaceinvaders.o(.constdata)
fastinvader3 0x00006208 Data 1054 spaceinvaders.o(.constdata)
HeaderSeparatorYPos 0x00006626 Data 1 spaceinvaders.o(.constdata)
GameMinY 0x00006627 Data 1 spaceinvaders.o(.constdata)
GameMaxY 0x00006628 Data 1 spaceinvaders.o(.constdata)
SystickPriority 0x00006629 Data 1 spaceinvaders.o(.constdata)
MaxShipsLife 0x0000662a Data 1 spaceinvaders.o(.constdata)
MaxEnemyLife 0x0000662b Data 1 spaceinvaders.o(.constdata)
MaxTokens 0x0000662c Data 1 spaceinvaders.o(.constdata)
NumberOfEnemies 0x00006630 Data 4 spaceinvaders.o(.constdata)
systickNumForEnemyMoveX 0x00006634 Data 1 spaceinvaders.o(.constdata)
SpecialNumOfExpl 0x00006635 Data 1 spaceinvaders.o(.constdata)
SpecialExplosionsAtOnce 0x00006636 Data 1 spaceinvaders.o(.constdata)
SpecialExplRefreshRate 0x00006637 Data 1 spaceinvaders.o(.constdata)
NoInputMsg 0x00006638 Data 40 texas.o(.constdata)
OutputPortMsg0 0x00006660 Data 40 texas.o(.constdata)
OutputPortMsg1 0x00006688 Data 40 texas.o(.constdata)
OutputPortMsg2 0x000066b0 Data 40 texas.o(.constdata)
OutputPortMsg3 0x000066d8 Data 40 texas.o(.constdata)
BlankMsg 0x00006700 Data 40 texas.o(.constdata)
InitializedMsg 0x00006728 Data 40 texas.o(.constdata)
IntroMsg 0x00006750 Data 40 texas.o(.constdata)
DoneMsg 0x00006778 Data 40 texas.o(.constdata)
Region$$Table$$Base 0x000067a0 Number 0 anon$$obj.o(Region$$Table)
Region$$Table$$Limit 0x000067c0 Number 0 anon$$obj.o(Region$$Table)
_my_explosions_ptr 0x20000000 Data 16 spaceinvaders.o(.data)
_my_Field_ptr 0x20000010 Data 48 spaceinvaders.o(.data)
SystickCounter 0x20000040 Data 4 spaceinvaders.o(.data)
FieldCounter 0x20000044 Data 1 spaceinvaders.o(.data)
Index 0x20000048 Data 4 spaceinvaders.o(.data)
SoundCounter 0x2000004c Data 4 spaceinvaders.o(.data)
SpecialWeaponIgnitedTimer 0x20000050 Data 4 spaceinvaders.o(.data)
temp01 0x20000054 Data 4 spaceinvaders.o(.data)
temp02 0x20000058 Data 4 spaceinvaders.o(.data)
ADCdata 0x2000005c Data 4 spaceinvaders.o(.data)
Flag 0x20000060 Data 4 spaceinvaders.o(.data)
Wave 0x20000064 Data 4 spaceinvaders.o(.data)
SpecialPositionsX 0x20000068 Data 5 spaceinvaders.o(.data)
SpecialPositionsY 0x2000006d Data 5 spaceinvaders.o(.data)
fireButtonReleased 0x20000072 Data 1 spaceinvaders.o(.data)
TExaS_Period 0x20000074 Data 4 texas.o(.data)
TExaS_Ports 0x20000078 Data 8 texas.o(.data)
Display 0x20000080 Data 1 texas.o(.data)
TExaS_Meter 0x20000084 Data 4 texas.o(.data)
ADCnum 0x20000088 Data 4 texas.o(.data)
LastMode 0x2000008c Data 4 texas.o(.data)
bFlag 0x20000090 Data 4 texas.o(.data)
Count 0x20000094 Data 4 texas.o(.data)
DelayBetweenTests 0x20000098 Data 4 texas.o(.data)
TExaS_Test 0x2000009c Data 4 texas.o(.data)
ScopeMode 0x200000a0 Data 4 texas.o(.data)
ScopeCount 0x200000a4 Data 4 texas.o(.data)
Screen 0x200000ac Data 504 nokia5110.o(.bss)
Ship 0x200002a4 Data 56 spaceinvaders.o(.bss)
Enemy 0x200002dc Data 448 spaceinvaders.o(.bss)
Token 0x2000049c Data 56 spaceinvaders.o(.bss)
SpecialImagePointers 0x200004d4 Data 20 spaceinvaders.o(.bss)
TExaS 0x200004e8 Data 56 texas.o(.bss)
__libspace_start 0x20000520 Data 96 libspace.o(.bss)
__temporary_stack_top$libspace 0x20000580 Data 0 libspace.o(.bss)
==============================================================================
Memory Map of the image
Image Entry point : 0x0000026d
Load Region LR_1 (Base: 0x00000000, Size: 0x0000686c, Max: 0xffffffff, ABSOLUTE)
Execution Region ER_RO (Base: 0x00000000, Size: 0x000067c0, Max: 0xffffffff, ABSOLUTE)
Base Addr Size Type Attr Idx E Section Name Object
0x00000000 0x00000284 Code RO 3 * RESET startup.o
0x00000284 0x00000008 Code RO 420 * !!!main c_w.l(__main.o)
0x0000028c 0x00000034 Code RO 574 !!!scatter c_w.l(__scatter.o)
0x000002c0 0x0000001a Code RO 576 !!handler_copy c_w.l(__scatter_copy.o)
0x000002da 0x00000002 PAD
0x000002dc 0x0000001c Code RO 578 !!handler_zi c_w.l(__scatter_zi.o)
0x000002f8 0x00000002 Code RO 447 .ARM.Collect$$libinit$$00000000 c_w.l(libinit.o)
0x000002fa 0x00000000 Code RO 454 .ARM.Collect$$libinit$$00000002 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 457 .ARM.Collect$$libinit$$00000008 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 459 .ARM.Collect$$libinit$$0000000A c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 461 .ARM.Collect$$libinit$$0000000C c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 464 .ARM.Collect$$libinit$$0000000F c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 466 .ARM.Collect$$libinit$$00000011 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 468 .ARM.Collect$$libinit$$00000013 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 470 .ARM.Collect$$libinit$$00000015 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 472 .ARM.Collect$$libinit$$00000017 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 474 .ARM.Collect$$libinit$$00000019 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 476 .ARM.Collect$$libinit$$0000001B c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 478 .ARM.Collect$$libinit$$0000001D c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 480 .ARM.Collect$$libinit$$0000001F c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 482 .ARM.Collect$$libinit$$00000021 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 484 .ARM.Collect$$libinit$$00000023 c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 488 .ARM.Collect$$libinit$$0000002A c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 490 .ARM.Collect$$libinit$$0000002C c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 492 .ARM.Collect$$libinit$$0000002E c_w.l(libinit2.o)
0x000002fa 0x00000000 Code RO 494 .ARM.Collect$$libinit$$00000030 c_w.l(libinit2.o)
0x000002fa 0x00000002 Code RO 495 .ARM.Collect$$libinit$$00000031 c_w.l(libinit2.o)
0x000002fc 0x00000002 Code RO 515 .ARM.Collect$$libshutdown$$00000000 c_w.l(libshutdown.o)
0x000002fe 0x00000000 Code RO 529 .ARM.Collect$$libshutdown$$00000003 c_w.l(libshutdown2.o)
0x000002fe 0x00000000 Code RO 532 .ARM.Collect$$libshutdown$$00000006 c_w.l(libshutdown2.o)
0x000002fe 0x00000000 Code RO 535 .ARM.Collect$$libshutdown$$00000009 c_w.l(libshutdown2.o)
0x000002fe 0x00000000 Code RO 537 .ARM.Collect$$libshutdown$$0000000B c_w.l(libshutdown2.o)
0x000002fe 0x00000000 Code RO 540 .ARM.Collect$$libshutdown$$0000000E c_w.l(libshutdown2.o)
0x000002fe 0x00000002 Code RO 541 .ARM.Collect$$libshutdown$$0000000F c_w.l(libshutdown2.o)
0x00000300 0x00000000 Code RO 422 .ARM.Collect$$rtentry$$00000000 c_w.l(rtentry.o)
0x00000300 0x00000000 Code RO 424 .ARM.Collect$$rtentry$$00000002 c_w.l(rtentry2.o)
0x00000300 0x00000006 Code RO 436 .ARM.Collect$$rtentry$$00000004 c_w.l(rtentry4.o)
0x00000306 0x00000000 Code RO 426 .ARM.Collect$$rtentry$$00000009 c_w.l(rtentry2.o)
0x00000306 0x00000004 Code RO 427 .ARM.Collect$$rtentry$$0000000A c_w.l(rtentry2.o)
0x0000030a 0x00000000 Code RO 429 .ARM.Collect$$rtentry$$0000000C c_w.l(rtentry2.o)
0x0000030a 0x00000008 Code RO 430 .ARM.Collect$$rtentry$$0000000D c_w.l(rtentry2.o)
0x00000312 0x00000002 Code RO 451 .ARM.Collect$$rtexit$$00000000 c_w.l(rtexit.o)
0x00000314 0x00000000 Code RO 497 .ARM.Collect$$rtexit$$00000002 c_w.l(rtexit2.o)
0x00000314 0x00000004 Code RO 498 .ARM.Collect$$rtexit$$00000003 c_w.l(rtexit2.o)
0x00000318 0x00000006 Code RO 499 .ARM.Collect$$rtexit$$00000004 c_w.l(rtexit2.o)
0x0000031e 0x00000002 PAD
0x00000320 0x00000030 Code RO 4 .text startup.o
0x00000350 0x00000040 Code RO 92 .text random.o
0x00000390 0x00000064 Code RO 416 .text c_w.l(rt_memcpy_w.o)
0x000003f4 0x00000006 Code RO 418 .text c_w.l(heapauxi.o)
0x000003fa 0x0000004a Code RO 438 .text c_w.l(sys_stackheap_outer.o)
0x00000444 0x0000000c Code RO 440 .text c_w.l(exit.o)
0x00000450 0x00000008 Code RO 448 .text c_w.l(libspace.o)
0x00000458 0x0000000c Code RO 507 .text c_w.l(sys_exit.o)
0x00000464 0x00000002 Code RO 518 .text c_w.l(use_no_semi.o)
0x00000466 0x00000000 Code RO 520 .text c_w.l(indicate_semi.o)
0x00000466 0x00000002 PAD
0x00000468 0x0000002c Code RO 95 i.ADC0_In spaceinvaders.o
0x00000494 0x0000000c Code RO 295 i.ADC1_In texas.o
0x000004a0 0x000000d4 Code RO 296 i.ADC1_Init texas.o
0x00000574 0x00000028 Code RO 96 i.Convert spaceinvaders.o
0x0000059c 0x00000018 Code RO 97 i.DAC_Out spaceinvaders.o
0x000005b4 0x00000024 Code RO 98 i.Delay100ms spaceinvaders.o
0x000005d8 0x00000010 Code RO 99 i.Fire_Button_Pressed spaceinvaders.o
0x000005e8 0x0000053c Code RO 100 i.GameEngineOperations spaceinvaders.o
0x00000b24 0x00000060 Code RO 101 i.GameOver spaceinvaders.o
0x00000b84 0x000000f4 Code RO 102 i.InitSprites spaceinvaders.o
0x00000c78 0x00000018 Code RO 13 i.Nokia5110_ClearBuffer nokia5110.o
0x00000c90 0x00000010 Code RO 14 i.Nokia5110_DisplayBuffer nokia5110.o
0x00000ca0 0x00000022 Code RO 15 i.Nokia5110_DrawFullImage nokia5110.o
0x00000cc2 0x00000002 PAD
0x00000cc4 0x0000016c Code RO 16 i.Nokia5110_Init nokia5110.o
0x00000e30 0x000001a8 Code RO 20 i.Nokia5110_PrintBMP nokia5110.o
0x00000fd8 0x00000030 Code RO 21 i.Nokia5110_SetCursor nokia5110.o
0x00001008 0x0000007c Code RO 297 i.PLL_Init texas.o
0x00001084 0x000001b4 Code RO 103 i.Ports_Init spaceinvaders.o
0x00001238 0x00000014 Code RO 104 i.Random_Drawable_X_Pos spaceinvaders.o
0x0000124c 0x00000020 Code RO 105 i.Random_Drawable_Y_Pos spaceinvaders.o
0x0000126c 0x00000280 Code RO 106 i.RenderingOperations spaceinvaders.o
0x000014ec 0x00000100 Code RO 107 i.RestartGame spaceinvaders.o
0x000015ec 0x00000018 Code RO 298 i.SetCode texas.o
0x00001604 0x00000018 Code RO 299 i.SetCourse texas.o
0x0000161c 0x00000028 Code RO 108 i.Sound_Play spaceinvaders.o
0x00001644 0x00000010 Code RO 109 i.Special_Button_Pressed spaceinvaders.o
0x00001654 0x00000034 Code RO 110 i.SysTick_Handler spaceinvaders.o
0x00001688 0x00000034 Code RO 111 i.SysTick_Init spaceinvaders.o
0x000016bc 0x000001c4 Code RO 303 i.TExaS_Init texas.o
0x00001880 0x00000048 Code RO 112 i.Timer2A_Handler spaceinvaders.o
0x000018c8 0x00000014 Code RO 113 i.Timer2A_Start spaceinvaders.o
0x000018dc 0x00000014 Code RO 114 i.Timer2A_Stop spaceinvaders.o
0x000018f0 0x0000005c Code RO 115 i.Timer2_Init spaceinvaders.o
0x0000194c 0x00000020 Code RO 305 i.Timer4A_Handler texas.o
0x0000196c 0x00000030 Code RO 306 i.Timer5A_Handler texas.o
0x0000199c 0x00000018 Code RO 117 i.TurnOffSpecialLED spaceinvaders.o
0x000019b4 0x000000c0 Code RO 309 i.UART0_Init texas.o
0x00001a74 0x000000a4 Code RO 118 i.checkTouching spaceinvaders.o
0x00001b18 0x00000038 Code RO 119 i.checkTouchingMissileVsSprite spaceinvaders.o
0x00001b50 0x00000038 Code RO 120 i.checkTouchingSpriteVsSprite spaceinvaders.o
0x00001b88 0x0000002c Code RO 121 i.isEnemyOnScreen spaceinvaders.o
0x00001bb4 0x0000003c Code RO 122 i.isGameOver spaceinvaders.o
0x00001bf0 0x0000004c Code RO 22 i.lcdwrite nokia5110.o
0x00001c3c 0x000000cc Code RO 123 i.main spaceinvaders.o
0x00001d08 0x000000f4 Code RO 124 i.willEnemyBumpOtherStuff spaceinvaders.o
0x00001dfc 0x0000483c Data RO 126 .constdata spaceinvaders.o
0x00006638 0x00000168 Data RO 314 .constdata texas.o
0x000067a0 0x00000020 Data RO 572 Region$$Table anon$$obj.o
Execution Region ER_RW (Base: 0x20000000, Size: 0x000000ac, Max: 0xffffffff, ABSOLUTE)
Base Addr Size Type Attr Idx E Section Name Object
0x20000000 0x00000073 Data RW 127 .data spaceinvaders.o
0x20000073 0x00000001 PAD
0x20000074 0x00000034 Data RW 315 .data texas.o
0x200000a8 0x00000004 Data RW 91 DATA random.o
Execution Region ER_ZI (Base: 0x200000ac, Size: 0x000008d4, Max: 0xffffffff, ABSOLUTE)
Base Addr Size Type Attr Idx E Section Name Object
0x200000ac 0x000001f8 Zero RW 23 .bss nokia5110.o
0x200002a4 0x00000244 Zero RW 125 .bss spaceinvaders.o
0x200004e8 0x00000038 Zero RW 313 .bss texas.o
0x20000520 0x00000060 Zero RW 449 .bss c_w.l(libspace.o)
0x20000580 0x00000000 Zero RW 2 HEAP startup.o
0x20000580 0x00000400 Zero RW 1 STACK startup.o
==============================================================================
Image component sizes
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
986 72 0 0 504 7217 nokia5110.o
64 14 0 4 0 184 random.o
4440 440 18492 115 580 18913 spaceinvaders.o
692 632 0 0 1024 868 startup.o
1120 244 360 52 56 15392 texas.o
----------------------------------------------------------------------
7304 1402 18884 172 2164 42574 Object Totals
0 0 32 0 0 0 (incl. Generated)
2 0 0 1 0 0 (incl. Padding)
----------------------------------------------------------------------
Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
8 0 0 0 0 68 __main.o
52 8 0 0 0 0 __scatter.o
26 0 0 0 0 0 __scatter_copy.o
28 0 0 0 0 0 __scatter_zi.o
12 0 0 0 0 72 exit.o
6 0 0 0 0 152 heapauxi.o
0 0 0 0 0 0 indicate_semi.o
2 0 0 0 0 0 libinit.o
2 0 0 0 0 0 libinit2.o
2 0 0 0 0 0 libshutdown.o
2 0 0 0 0 0 libshutdown2.o
8 4 0 0 96 68 libspace.o
100 0 0 0 0 80 rt_memcpy_w.o
0 0 0 0 0 0 rtentry.o
12 0 0 0 0 0 rtentry2.o
6 0 0 0 0 0 rtentry4.o
2 0 0 0 0 0 rtexit.o
10 0 0 0 0 0 rtexit2.o
12 4 0 0 0 68 sys_exit.o
74 0 0 0 0 80 sys_stackheap_outer.o
2 0 0 0 0 68 use_no_semi.o
----------------------------------------------------------------------
372 16 0 0 96 656 Library Totals
6 0 0 0 0 0 (incl. Padding)
----------------------------------------------------------------------
Code (inc. data) RO Data RW Data ZI Data Debug Library Name
366 16 0 0 96 656 c_w.l
----------------------------------------------------------------------
372 16 0 0 96 656 Library Totals
----------------------------------------------------------------------
==============================================================================
Code (inc. data) RO Data RW Data ZI Data Debug
7676 1418 18884 172 2260 40734 Grand Totals
7676 1418 18884 172 2260 40734 ELF Image Totals
7676 1418 18884 172 0 0 ROM Totals
==============================================================================
Total RO Size (Code + RO Data) 26560 ( 25.94kB)
Total RW Size (RW Data + ZI Data) 2432 ( 2.38kB)