This repository has been archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab10_C++.map
1210 lines (1157 loc) · 110 KB
/
Lab10_C++.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
Component: ARM Compiler 5.06 update 7 (build 960) Tool: armlink [4d3601]
==============================================================================
Section Cross References
startup_tm4c123.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_tm4c123.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_tm4c123.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_tm4c123.o(RESET) refers to startup_tm4c123.o(STACK) for __initial_sp
startup_tm4c123.o(RESET) refers to startup_tm4c123.o(.text) for Reset_Handler
startup_tm4c123.o(RESET) refers to main.o(.text) for SysTick_Handler
startup_tm4c123.o(RESET) refers to timer0.o(.text) for TIMER0A_Handler
startup_tm4c123.o(RESET) refers to timer1.o(.text) for TIMER1A_Handler
startup_tm4c123.o(RESET) refers to timer2.o(.text) for TIMER2A_Handler
startup_tm4c123.o(RESET) refers to timer3.o(.text) for TIMER3A_Handler
startup_tm4c123.o(RESET) refers to texas.o(.text) for TIMER5A_Handler
startup_tm4c123.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_tm4c123.o(.text) refers to __main.o(!!!main) for __main
startup_tm4c123.o(.text) refers to startup_tm4c123.o(HEAP) for Heap_Mem
startup_tm4c123.o(.text) refers to startup_tm4c123.o(STACK) for Stack_Mem
main.o(.text) refers to timer1.o(.text) for Timer1_Init(void(*)(), unsigned)
main.o(.text) refers to ssd1306.o(.text) for SSD1306_ClearBuffer()
main.o(.text) refers to main.o(.data) for delayCounter
main.o(.text) refers to main.o(.bss) for spikeyBalls
main.o(.text) refers to main.o(.constdata) for Laser0
main.o(.text) refers to sound.o(.text) for Sound_Start(const unsigned char*, unsigned)
main.o(.text) refers to startup_tm4c123.o(.text) for DisableInterrupts
main.o(.text) refers to texas.o(.text) for TExaS_Init(void(*)())
main.o(.text) refers to slidepot.o(.text) for ADC_Init()
main.o(.text) refers to random.o(.text) for Random_Init(unsigned)
main.o(.text) refers to sprite.o(.text) for Sprite::operator =(Sprite&)
main.o(.text) refers to switch.o(.text) for Switch_Init()
main.o(.text) refers to timer0.o(.text) for Timer0_Init(void(*)(), unsigned)
main.o(.text) refers to timer3.o(.text) for Timer3_Init(void(*)(), unsigned)
main.o(.text) refers to powerups.o(.text) for powerups::hash(int)
main.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
main.o(.text) refers to aeabi_vec_ctor_nocookie_nodtor.o(i.__aeabi_vec_ctor_nocookie_nodtor) for __aeabi_vec_ctor_nocookie_nodtor
main.o(.ARM.exidx) refers to main.o(.text) for .text
main.o(.init_array) refers to main.o(.text) for __sti___8_main_cpp_b81b5551
main.o(.init_array) refers to init_aeabi.o(.text) for __cpp_initialize__aeabi_
dac.o(.ARM.exidx) refers to dac.o(.text) for .text
random.o(.text) refers to random.o(.data) for M
random.o(.ARM.exidx) refers to random.o(.text) for .text
slidepot.o(.ARM.exidx) refers to slidepot.o(.text) for .text
sound.o(.text) refers to dac.o(.text) for DAC_Out(unsigned char)
sound.o(.text) refers to timer2.o(.text) for Timer2_Init(void(*)(), unsigned)
sound.o(.text) refers to sound.o(.data) for sounds
sound.o(.text) refers to sound.o(.constdata) for shoot
sound.o(.ARM.exidx) refers to sound.o(.text) for .text
timer0.o(.text) refers to timer0.o(.data) for PeriodicTask0
timer0.o(.ARM.exidx) refers to timer0.o(.text) for .text
timer1.o(.text) refers to timer1.o(.data) for PeriodicTask1
timer1.o(.ARM.exidx) refers to timer1.o(.text) for .text
i2c3.o(.ARM.exidx) refers to i2c3.o(.text) for .text
ssd1306.o(.text) refers to i2c3.o(.text) for I2C3_Send2(signed char, unsigned char, unsigned char)
ssd1306.o(.text) refers to ssd1306.o(.data) for CurrentX
ssd1306.o(.text) refers to ssd1306.o(.constdata) for dlist1
ssd1306.o(.text) refers to ssd1306.o(.bss) for buffer
ssd1306.o(.ARM.exidx) refers to ssd1306.o(.text) for .text
texas.o(.text) refers to texas.o(.data) for sendDataPt
texas.o(.ARM.exidx) refers to texas.o(.text) for .text
timer2.o(.text) refers to timer2.o(.data) for PeriodicTask2
timer2.o(.ARM.exidx) refers to timer2.o(.text) for .text
switch.o(.ARM.exidx) refers to switch.o(.text) for .text
sprite.o(.text) refers to main.o(.text) for Sprite::physics()
sprite.o(.text) refers to sound.o(.text) for Sound_Start(const unsigned char*, unsigned)
sprite.o(.text) refers to sprite.o(.constdata) for bounce
sprite.o(.ARM.exidx) refers to sprite.o(.text) for .text
powerups.o(.text) refers to powerups.o(.constdata) for antiball
powerups.o(.ARM.exidx) refers to powerups.o(.text) for .text
timer3.o(.text) refers to timer3.o(.data) for PeriodicTask3
timer3.o(.ARM.exidx) refers to timer3.o(.text) for .text
__main.o(!!!main) refers to __rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
init_aeabi.o(.emb_text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_cpp_2
init_aeabi.o(.init_array) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_cpp_2
init_aeabi.o(.init_array) refers to init_aeabi.o(.text) for __cpp_initialize__aeabi_
init_aeabi.o(.dummy_text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_cpp_2
init_aeabi.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_cpp_2
init_aeabi.o(.ARM.exidx) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_cpp_2
init_aeabi.o(.ARM.exidx) refers to init_aeabi.o(.text) for .text
aeabi_vec_ctor_nocookie_nodtor.o(.ARM.exidx) refers to aeabi_vec_ctor_nocookie_nodtor.o(i.__aeabi_vec_ctor_nocookie_nodtor) for i.__aeabi_vec_ctor_nocookie_nodtor
aeabi_vec_ctor_nocookie_nodtor.o(.ARM.exidx) refers to unwind_pr0.o(.text) for __aeabi_unwind_cpp_pr0
__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
libinit2.o(.ARM.Collect$$libinit$$00000005) refers (Weak) to init_alloc.o(.text) for _init_alloc
libinit2.o(.ARM.Collect$$libinit$$00000010) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
libinit2.o(.ARM.Collect$$libinit$$00000016) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
libinit2.o(.ARM.Collect$$libinit$$00000018) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
libinit2.o(.ARM.Collect$$libinit$$00000026) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
libinit2.o(.ARM.Collect$$libinit$$00000027) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
libinit2.o(.ARM.Collect$$libinit$$00000031) refers (Weak) to init_aeabi.o(.text) for __cpp_initialize__aeabi_
unwind_pr0.o(.text) refers to unwind_prcommon.o(.text) for __ARM_unwind_cpp_prcommon
unwind_pr0.o(.ARM.exidx) refers to unwind_pr0.o(.text) for .text
__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 main.o(.text) 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
argv_veneer.o(.emb_text) refers to no_argv.o(.text) for __ARM_get_argv
unwind_prcommon.o(.text) refers to unwinder.o(.text) for _Unwind_VRS_Get
unwind_prcommon.o(.text) refers to unwind_activity.o(.emb_text) for _Unwind_Activity
unwind_prcommon.o(.ARM.exidx) refers to unwind_prcommon.o(.text) for .text
sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace
sys_stackheap_outer.o(.text) refers to startup_tm4c123.o(.text) for __user_initial_stackheap
exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit
_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
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_alloca_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002C) for __rt_lib_init_argv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_atexit_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_clock_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000032) for __rt_lib_init_cpp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000030) 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$$0000001F) for __rt_lib_init_fp_trap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000023) for __rt_lib_init_getenv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000A) for __rt_lib_init_heap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000011) for __rt_lib_init_lc_collate_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_ctype_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_monetary_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_lc_numeric_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_lc_time_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000004) for __rt_lib_init_preinit_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000E) for __rt_lib_init_rand_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000033) for __rt_lib_init_return
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_signal_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000025) for __rt_lib_init_stdio_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000C) for __rt_lib_init_user_alloc_1
unwinder.o(.emb_text) refers to unwinder.o(.text) for __ARM_Unwind_RaiseException
unwinder.o(.text) refers to bsearchnoex.o(.text) for bsearch
unwinder.o(.text) refers to unwind_activity.o(.emb_text) for _Unwind_Activity
unwinder.o(.text) refers to abort.o(.text) for abort
unwinder.o(.text) refers to unwinder.o(.emb_text) for __ARM_Unwind_VRS_corerestore
unwinder.o(.text) refers to h1_alloc.o(.text) for malloc
unwinder.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
unwinder.o(.text) refers to h1_free.o(.text) for free
unwinder.o(.text) refers (Weak) to unwind_pr0.o(.text) for __aeabi_unwind_cpp_pr0
unwinder.o(.ARM.exidx) refers to unwinder.o(.text) for .text
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
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
malloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
malloc.o(.text) refers (Special) to init_alloc.o(.text) for _init_alloc
malloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
malloc.o(.text) refers to heapstubs.o(.text) for __Heap_Alloc
free.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
free.o(.text) refers to heapstubs.o(.text) for __Heap_Free
h1_alloc.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
h1_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
h1_alloc.o(.text) refers to init_alloc.o(.text) for __Heap_Full
h1_free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
h1_alloc_mt.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
h1_alloc_mt.o(.text) refers to init_alloc.o(.text) for __Heap_Full
h1_alloc_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
h1_free_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._FDIterate) refers to heap2.o(.conststring) for .conststring
heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i.___Heap_Stats$realtime) refers to heap2.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(i._FDIterate) for _FDIterate
heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(.conststring) for .conststring
heap2.o(i._free$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._malloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2.o(i._malloc$realtime) refers to init_alloc.o(.text) for __Heap_Full
heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._posix_memalign$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2.o(i._posix_memalign$realtime) refers to init_alloc.o(.text) for __Heap_Full
heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._realloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._realloc$realtime) refers to h1_free.o(.text) for free
heap2.o(i._realloc$realtime) refers to h1_alloc.o(.text) for malloc
heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2.o(i._realloc$realtime) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
heap2mt.o(i._FDIterate) refers to heap2mt.o(.conststring) for .conststring
heap2mt.o(i.___Heap_Initialize$realtime$concurrent) refers to mutex_dummy.o(.text) for _mutex_initialize
heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to heap2mt.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(i._FDIterate) for _FDIterate
heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(.conststring) for .conststring
heap2mt.o(i._free$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._malloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2mt.o(i._malloc$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._realloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._realloc$realtime$concurrent) refers to h1_free.o(.text) for free
heap2mt.o(i._realloc$realtime$concurrent) refers to h1_alloc.o(.text) for malloc
heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2mt.o(i._realloc$realtime$concurrent) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
abort.o(.text) refers to defsig_abrt_outer.o(.text) for __rt_SIGABRT
abort.o(.text) refers (Weak) to libshutdown.o(.ARM.Collect$$libshutdown$$00000000) for __rt_lib_shutdown
abort.o(.text) refers to sys_exit.o(.text) for _sys_exit
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
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
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
rt_raise.o(.text) refers to __raise.o(.text) for __raise
rt_raise.o(.text) refers to sys_exit.o(.text) for _sys_exit
rt_heap_descriptor.o(.text) refers to rt_heap_descriptor.o(.bss) for __rt_heap_descriptor_data
rt_heap_descriptor_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
init_alloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
init_alloc.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000005) for __rt_lib_init_heap_2
init_alloc.o(.text) refers (Special) to maybetermalloc1.o(.emb_text) for _maybe_terminate_alloc
init_alloc.o(.text) refers to h1_extend.o(.text) for __Heap_ProvideMemory
init_alloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
init_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
init_alloc.o(.text) refers to h1_init.o(.text) for __Heap_Initialize
h1_init_mt.o(.text) refers to mutex_dummy.o(.text) for _mutex_initialize
defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit
defsig_abrt_outer.o(.text) refers to defsig_abrt_inner.o(.text) for __rt_SIGABRT_inner
defsig_abrt_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
defsig_abrt_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
defsig_rtmem_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
_get_argv.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
_get_argv.o(.text) refers to h1_alloc.o(.text) for malloc
_get_argv.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
_get_argv.o(.text) refers to sys_command.o(.text) for _sys_command_string
maybetermalloc2.o(.emb_text) refers (Special) to term_alloc.o(.text) for _terminate_alloc
h1_extend.o(.text) refers to h1_free.o(.text) for free
h1_extend_mt.o(.text) refers to h1_free_mt.o(.text) for _free_internal
__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
defsig_abrt_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
heapauxa.o(.text) refers to heapauxa.o(.data) for .data
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) for __rt_lib_shutdown_cpp_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) for __rt_lib_shutdown_fini_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000009) for __rt_lib_shutdown_fp_trap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000011) for __rt_lib_shutdown_heap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000012) for __rt_lib_shutdown_return
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) for __rt_lib_shutdown_signal_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000006) for __rt_lib_shutdown_stdio_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E) for __rt_lib_shutdown_user_alloc_1
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
term_alloc.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) for __rt_lib_shutdown_heap_2
term_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
term_alloc.o(.text) refers to h1_final.o(.text) for __Heap_Finalize
defsig.o(CL$$defsig) refers to defsig_abrt_inner.o(.text) for __rt_SIGABRT_inner
defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) refers (Weak) to term_alloc.o(.text) for _terminate_alloc
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 main.o(.ARM.exidx), (8 bytes).
Removing dac.o(.ARM.exidx), (8 bytes).
Removing random.o(.ARM.exidx), (8 bytes).
Removing slidepot.o(.ARM.exidx), (8 bytes).
Removing sound.o(.ARM.exidx), (8 bytes).
Removing timer0.o(.ARM.exidx), (8 bytes).
Removing timer1.o(.ARM.exidx), (8 bytes).
Removing i2c3.o(.ARM.exidx), (8 bytes).
Removing ssd1306.o(.ARM.exidx), (8 bytes).
Removing texas.o(.ARM.exidx), (8 bytes).
Removing timer2.o(.ARM.exidx), (8 bytes).
Removing switch.o(.ARM.exidx), (8 bytes).
Removing sprite.o(.ARM.exidx), (8 bytes).
Removing powerups.o(.ARM.exidx), (8 bytes).
Removing timer3.o(.ARM.exidx), (8 bytes).
15 unused section(s) (total 120 bytes) removed from the image.
==============================================================================
Image Symbol Table
Local Symbols
Symbol Name Value Ov Type Size Object(Section)
RESET 0x00000000 Section 620 startup_tm4c123.o(RESET)
../../../clib/unwind_pr.c 0x00000000 Number 0 unwind_pr0.o ABSOLUTE
../../../clib/unwind_pr.c 0x00000000 Number 0 unwind_prcommon.o ABSOLUTE
../../../clib/unwinder.c 0x00000000 Number 0 unwinder.o ABSOLUTE
../../../clib/unwinder.c 0x00000000 Number 0 unwind_activity.o ABSOLUTE
../../../clib/unwinder.c 0x00000000 Number 0 unwind_activity.o ABSOLUTE
../../../clib/unwinder.c 0x00000000 Number 0 unwinder.o ABSOLUTE
../../array_helpers.cpp 0x00000000 Number 0 aeabi_vec_ctor_nocookie_nodtor.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.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 rtexit.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 __rtentry2.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 __rtentry.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtexit2.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 __rtentry4.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor_intlibspace.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor.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 indicate_semi.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 libspace.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 mutex_dummy.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_wrch.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_exit.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_command.o ABSOLUTE
../clib/arm_runtime.c 0x00000000 Number 0 init_aeabi.o ABSOLUTE
../clib/arm_runtime.c 0x00000000 Number 0 init_aeabi.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 _get_argv.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/heap1.c 0x00000000 Number 0 h1_init_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_init.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_extend_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_final_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_free_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_extend.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_alloc_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_free.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_alloc.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_final.o ABSOLUTE
../clib/heap2.c 0x00000000 Number 0 heap2mt.o ABSOLUTE
../clib/heap2.c 0x00000000 Number 0 fdtree.o ABSOLUTE
../clib/heap2.c 0x00000000 Number 0 heap2.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 heapstubs.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 init_alloc.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 hguard.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 hrguard.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 malloc.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 free.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 term_alloc.o ABSOLUTE
../clib/heapaux.c 0x00000000 Number 0 heapauxa.o ABSOLUTE
../clib/heapaux.c 0x00000000 Number 0 heapauxi.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit2.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/memcpset.s 0x00000000 Number 0 rt_memcpy_w.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_pvfn_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_segv_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_other.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_abrt_outer.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_abrt_formal.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_cppl_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE
../clib/signal.s 0x00000000 Number 0 defsig.o ABSOLUTE
../clib/stdlib.c 0x00000000 Number 0 abort.o ABSOLUTE
../clib/stdlib.c 0x00000000 Number 0 bsearchnoex.o ABSOLUTE
../clib/stdlib.c 0x00000000 Number 0 exit.o ABSOLUTE
../fplib/fpinit.s 0x00000000 Number 0 fpinit.o ABSOLUTE
DAC.cpp 0x00000000 Number 0 dac.o ABSOLUTE
I2C3.cpp 0x00000000 Number 0 i2c3.o ABSOLUTE
SSD1306.cpp 0x00000000 Number 0 ssd1306.o ABSOLUTE
SlidePot.cpp 0x00000000 Number 0 slidepot.o ABSOLUTE
Sound.cpp 0x00000000 Number 0 sound.o ABSOLUTE
Sprite.cpp 0x00000000 Number 0 sprite.o ABSOLUTE
Switch.cpp 0x00000000 Number 0 switch.o ABSOLUTE
TExaS.cpp 0x00000000 Number 0 texas.o ABSOLUTE
Timer0.cpp 0x00000000 Number 0 timer0.o ABSOLUTE
Timer1.cpp 0x00000000 Number 0 timer1.o ABSOLUTE
Timer2.cpp 0x00000000 Number 0 timer2.o ABSOLUTE
Timer3.cpp 0x00000000 Number 0 timer3.o ABSOLUTE
dc.s 0x00000000 Number 0 dc.o ABSOLUTE
main.cpp 0x00000000 Number 0 main.o ABSOLUTE
powerups.cpp 0x00000000 Number 0 powerups.o ABSOLUTE
random.cpp 0x00000000 Number 0 random.o ABSOLUTE
startup_TM4C123.s 0x00000000 Number 0 startup_tm4c123.o ABSOLUTE
!!!main 0x0000026c Section 8 __main.o(!!!main)
!!!scatter 0x00000274 Section 52 __scatter.o(!!!scatter)
!!handler_copy 0x000002a8 Section 26 __scatter_copy.o(!!handler_copy)
!!handler_zi 0x000002c4 Section 28 __scatter_zi.o(!!handler_zi)
.ARM.Collect$$libinit$$00000000 0x000002e0 Section 2 libinit.o(.ARM.Collect$$libinit$$00000000)
.ARM.Collect$$libinit$$00000002 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
.ARM.Collect$$libinit$$00000004 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000004)
.ARM.Collect$$libinit$$0000000A 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
.ARM.Collect$$libinit$$0000000C 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
.ARM.Collect$$libinit$$0000000E 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000E)
.ARM.Collect$$libinit$$00000011 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
.ARM.Collect$$libinit$$00000013 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
.ARM.Collect$$libinit$$00000015 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
.ARM.Collect$$libinit$$00000017 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
.ARM.Collect$$libinit$$00000019 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
.ARM.Collect$$libinit$$0000001B 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
.ARM.Collect$$libinit$$0000001D 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
.ARM.Collect$$libinit$$0000001F 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
.ARM.Collect$$libinit$$00000021 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
.ARM.Collect$$libinit$$00000023 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
.ARM.Collect$$libinit$$00000025 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000025)
.ARM.Collect$$libinit$$0000002C 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
.ARM.Collect$$libinit$$0000002E 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
.ARM.Collect$$libinit$$00000030 0x000002e2 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
.ARM.Collect$$libinit$$00000031 0x000002e2 Section 4 libinit2.o(.ARM.Collect$$libinit$$00000031)
.ARM.Collect$$libinit$$00000032 0x000002e6 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000032)
.ARM.Collect$$libinit$$00000033 0x000002e6 Section 2 libinit2.o(.ARM.Collect$$libinit$$00000033)
.ARM.Collect$$libshutdown$$00000000 0x000002e8 Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
.ARM.Collect$$libshutdown$$00000002 0x000002ea Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)
.ARM.Collect$$libshutdown$$00000004 0x000002ea Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)
.ARM.Collect$$libshutdown$$00000006 0x000002ea Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
.ARM.Collect$$libshutdown$$00000009 0x000002ea Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
.ARM.Collect$$libshutdown$$0000000C 0x000002ea Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)
.ARM.Collect$$libshutdown$$0000000E 0x000002ea Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
.ARM.Collect$$libshutdown$$00000011 0x000002ea Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)
.ARM.Collect$$libshutdown$$00000012 0x000002ea Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)
.ARM.Collect$$rtentry$$00000000 0x000002ec Section 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000)
.ARM.Collect$$rtentry$$00000002 0x000002ec Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002)
.ARM.Collect$$rtentry$$00000004 0x000002ec Section 6 __rtentry4.o(.ARM.Collect$$rtentry$$00000004)
.ARM.Collect$$rtentry$$00000009 0x000002f2 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009)
.ARM.Collect$$rtentry$$0000000A 0x000002f2 Section 4 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
.ARM.Collect$$rtentry$$0000000C 0x000002f6 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
.ARM.Collect$$rtentry$$0000000D 0x000002f6 Section 8 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
.ARM.Collect$$rtexit$$00000000 0x000002fe Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000)
.ARM.Collect$$rtexit$$00000002 0x00000300 Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
.ARM.Collect$$rtexit$$00000003 0x00000300 Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
.ARM.Collect$$rtexit$$00000004 0x00000304 Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
.text 0x0000030c Section 296 startup_tm4c123.o(.text)
.text 0x00000434 Section 0 main.o(.text)
__sti___8_main_cpp_b81b5551 0x0000337b Thumb Code 246 main.o(.text)
.text 0x00003478 Section 0 dac.o(.text)
.text 0x000034c0 Section 0 random.o(.text)
.text 0x00003500 Section 0 slidepot.o(.text)
.text 0x00003640 Section 0 sound.o(.text)
.text 0x000036d0 Section 0 timer0.o(.text)
.text 0x00003740 Section 0 timer1.o(.text)
.text 0x000037b0 Section 0 i2c3.o(.text)
.text 0x00003d68 Section 0 ssd1306.o(.text)
.text 0x00004f44 Section 0 texas.o(.text)
.text 0x000051c8 Section 0 timer2.o(.text)
.text 0x00005238 Section 0 switch.o(.text)
.text 0x000052d0 Section 0 sprite.o(.text)
.text 0x00005498 Section 0 powerups.o(.text)
.text 0x000056e8 Section 0 timer3.o(.text)
.text 0x00005754 Section 100 rt_memcpy_w.o(.text)
.text 0x000057b8 Section 0 heapauxi.o(.text)
.text 0x000057c0 Section 0 init_aeabi.o(.text)
.text 0x000057e4 Section 74 sys_stackheap_outer.o(.text)
.text 0x0000582e Section 0 exit.o(.text)
.text 0x00005840 Section 8 libspace.o(.text)
.text 0x00005848 Section 0 sys_exit.o(.text)
.text 0x00005854 Section 2 use_no_semi.o(.text)
.text 0x00005856 Section 0 indicate_semi.o(.text)
i.__aeabi_vec_ctor_nocookie_nodtor 0x00005856 Section 0 aeabi_vec_ctor_nocookie_nodtor.o(i.__aeabi_vec_ctor_nocookie_nodtor)
.constdata 0x0000587a Section 144870 main.o(.constdata)
SpikeyBallImage 0x0000587a Data 199 main.o(.constdata)
biggerReflector 0x00005941 Data 215 main.o(.constdata)
PongLeaderboard 0x00005a18 Data 647 main.o(.constdata)
reflector 0x00005c9f Data 183 main.o(.constdata)
ball 0x00005d56 Data 135 main.o(.constdata)
antiball 0x00005ddd Data 135 main.o(.constdata)
Laser0 0x00005e64 Data 127 main.o(.constdata)
PongScreen1 0x00005ee3 Data 191 main.o(.constdata)
PongScreen2 0x00005fa2 Data 359 main.o(.constdata)
PongScreen3 0x00006109 Data 695 main.o(.constdata)
PongScreen4 0x000063c0 Data 1079 main.o(.constdata)
PongScreen5 0x000067f7 Data 1079 main.o(.constdata)
PongScreen6 0x00006c2e Data 1079 main.o(.constdata)
PongScreen7 0x00007065 Data 1079 main.o(.constdata)
PongScreen8 0x0000749c Data 1079 main.o(.constdata)
PongScreen9 0x000078d3 Data 1079 main.o(.constdata)
bounce 0x00007d0a Data 606 main.o(.constdata)
sonar 0x00007f68 Data 51301 main.o(.constdata)
falling 0x000147cd Data 67209 main.o(.constdata)
scream 0x00024e56 Data 12314 main.o(.constdata)
shoot 0x00027e70 Data 4080 main.o(.constdata)
.constdata 0x00028e60 Section 4080 sound.o(.constdata)
shoot 0x00028e60 Data 4080 sound.o(.constdata)
.constdata 0x00029e50 Section 1443 ssd1306.o(.constdata)
ASCII 0x00029e50 Data 1374 ssd1306.o(.constdata)
init1 0x0002a3ae Data 5 ssd1306.o(.constdata)
init2 0x0002a3b3 Data 5 ssd1306.o(.constdata)
init3 0x0002a3b8 Data 5 ssd1306.o(.constdata)
init4b 0x0002a3bd Data 4 ssd1306.o(.constdata)
init5 0x0002a3c1 Data 7 ssd1306.o(.constdata)
premask 0x0002a3c8 Data 8 ssd1306.o(.constdata)
postmask 0x0002a3d0 Data 8 ssd1306.o(.constdata)
dlist1 0x0002a3d8 Data 5 ssd1306.o(.constdata)
scrollList1a 0x0002a3dd Data 2 ssd1306.o(.constdata)
scrollList1b 0x0002a3df Data 3 ssd1306.o(.constdata)
scrollList2a 0x0002a3e2 Data 2 ssd1306.o(.constdata)
scrollList2b 0x0002a3e4 Data 3 ssd1306.o(.constdata)
scrollList3a 0x0002a3e7 Data 2 ssd1306.o(.constdata)
scrollList3b 0x0002a3e9 Data 2 ssd1306.o(.constdata)
scrollList3c 0x0002a3eb Data 2 ssd1306.o(.constdata)
scrollList4a 0x0002a3ed Data 2 ssd1306.o(.constdata)
scrollList4b 0x0002a3ef Data 2 ssd1306.o(.constdata)
scrollList4c 0x0002a3f1 Data 2 ssd1306.o(.constdata)
.constdata 0x0002a3f3 Section 606 sprite.o(.constdata)
bounce 0x0002a3f3 Data 606 sprite.o(.constdata)
.constdata 0x0002a651 Section 812 powerups.o(.constdata)
reflector_small 0x0002a651 Data 143 powerups.o(.constdata)
reflector_huge 0x0002a6e0 Data 319 powerups.o(.constdata)
biggerReflector 0x0002a81f Data 215 powerups.o(.constdata)
antiball 0x0002a8f6 Data 135 powerups.o(.constdata)
.init_array 0x0002a9a0 Section 4 main.o(.init_array)
.init_array 0x0002a9a4 Section 0 init_aeabi.o(.init_array)
.data 0x20000000 Section 48 main.o(.data)
.data 0x20000030 Section 4 random.o(.data)
M 0x20000030 Data 4 random.o(.data)
.data 0x20000034 Section 12 sound.o(.data)
.data 0x20000040 Section 4 timer0.o(.data)
.data 0x20000044 Section 4 timer1.o(.data)
.data 0x20000048 Section 42 ssd1306.o(.data)
DeltaX 0x20000050 Data 4 ssd1306.o(.data)
MaxX 0x20000054 Data 4 ssd1306.o(.data)
MinX 0x20000058 Data 4 ssd1306.o(.data)
DeltaY 0x2000005c Data 4 ssd1306.o(.data)
MaxY 0x20000060 Data 4 ssd1306.o(.data)
MinY 0x20000064 Data 4 ssd1306.o(.data)
PlotColor 0x20000068 Data 2 ssd1306.o(.data)
.data 0x20000074 Section 4 texas.o(.data)
.data 0x20000078 Section 4 timer2.o(.data)
.data 0x2000007c Section 4 timer3.o(.data)
.bss 0x20000080 Section 3268 main.o(.bss)
.bss 0x20000d44 Section 1024 ssd1306.o(.bss)
.bss 0x20001144 Section 96 libspace.o(.bss)
HEAP 0x200011a8 Section 1024 startup_tm4c123.o(HEAP)
Heap_Mem 0x200011a8 Data 1024 startup_tm4c123.o(HEAP)
STACK 0x200015a8 Section 1024 startup_tm4c123.o(STACK)
Stack_Mem 0x200015a8 Data 1024 startup_tm4c123.o(STACK)
__initial_sp 0x200019a8 Data 0 startup_tm4c123.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$OTIME$ROPI$EBA8$UX$STANDARDLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
__ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
__Vectors 0x00000000 Data 4 startup_tm4c123.o(RESET)
SHT$$ARM_EXIDX$$Base - Undefined Reference
SHT$$ARM_EXIDX$$Limit - Undefined Reference
__ARM_exceptions_init - Undefined Weak Reference
__aeabi_unwind_cpp_pr1 - Undefined Weak Reference
__aeabi_unwind_cpp_pr2 - Undefined Weak Reference
__alloca_initialize - Undefined Weak Reference
__arm_fini_ - Undefined Weak Reference
__arm_preinit_ - Undefined Weak Reference
__cxa_begin_cleanup - Undefined Weak Reference
__cxa_call_unexpected - Undefined Weak Reference
__cxa_finalize - Undefined Weak Reference
__cxa_type_match - Undefined Weak Reference
__rt_locale - Undefined Weak Reference
__sigvec_lookup - Undefined Weak Reference
__user_heap_extent - 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
_initio - Undefined Weak Reference
_mutex_acquire - Undefined Weak Reference
_mutex_free - Undefined Weak Reference
_mutex_release - Undefined Weak Reference
_rand_init - Undefined Weak Reference
_signal_finish - Undefined Weak Reference
_signal_init - Undefined Weak Reference
_terminateio - Undefined Weak Reference
__Vectors_End 0x0000026c Data 0 startup_tm4c123.o(RESET)
__Vectors_Size 0x0000026c Number 0 startup_tm4c123.o ABSOLUTE
__main 0x0000026d Thumb Code 8 __main.o(!!!main)
__scatterload 0x00000275 Thumb Code 0 __scatter.o(!!!scatter)
__scatterload_rt2 0x00000275 Thumb Code 44 __scatter.o(!!!scatter)
__scatterload_rt2_thumb_only 0x00000275 Thumb Code 0 __scatter.o(!!!scatter)
__scatterload_null 0x00000283 Thumb Code 0 __scatter.o(!!!scatter)
__scatterload_copy 0x000002a9 Thumb Code 26 __scatter_copy.o(!!handler_copy)
__scatterload_zeroinit 0x000002c5 Thumb Code 28 __scatter_zi.o(!!handler_zi)
__rt_lib_init 0x000002e1 Thumb Code 0 libinit.o(.ARM.Collect$$libinit$$00000000)
__rt_lib_init_alloca_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
__rt_lib_init_argv_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
__rt_lib_init_atexit_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
__rt_lib_init_clock_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
__rt_lib_init_cpp_2 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000031)
__rt_lib_init_exceptions_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
__rt_lib_init_fp_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
__rt_lib_init_fp_trap_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
__rt_lib_init_getenv_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
__rt_lib_init_heap_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
__rt_lib_init_lc_collate_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
__rt_lib_init_lc_ctype_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
__rt_lib_init_lc_monetary_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
__rt_lib_init_lc_numeric_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
__rt_lib_init_lc_time_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
__rt_lib_init_preinit_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000004)
__rt_lib_init_rand_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000E)
__rt_lib_init_signal_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
__rt_lib_init_stdio_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000025)
__rt_lib_init_user_alloc_1 0x000002e3 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
__rt_lib_init_cpp_1 0x000002e7 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000032)
__rt_lib_init_return 0x000002e7 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000033)
__rt_lib_shutdown 0x000002e9 Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
__rt_lib_shutdown_cpp_1 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)
__rt_lib_shutdown_fini_1 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)
__rt_lib_shutdown_fp_trap_1 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
__rt_lib_shutdown_heap_1 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)
__rt_lib_shutdown_return 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)
__rt_lib_shutdown_signal_1 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)
__rt_lib_shutdown_stdio_1 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
__rt_lib_shutdown_user_alloc_1 0x000002eb Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
__rt_entry 0x000002ed Thumb Code 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000)
__rt_entry_presh_1 0x000002ed Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002)
__rt_entry_sh 0x000002ed Thumb Code 0 __rtentry4.o(.ARM.Collect$$rtentry$$00000004)
__rt_entry_li 0x000002f3 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
__rt_entry_postsh_1 0x000002f3 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009)
__rt_entry_main 0x000002f7 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
__rt_entry_postli_1 0x000002f7 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
__rt_exit 0x000002ff Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000)
__rt_exit_ls 0x00000301 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
__rt_exit_prels_1 0x00000301 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
__rt_exit_exit 0x00000305 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
Reset_Handler 0x0000030d Thumb Code 4 startup_tm4c123.o(.text)
DisableInterrupts 0x00000311 Thumb Code 4 startup_tm4c123.o(.text)
EnableInterrupts 0x00000315 Thumb Code 4 startup_tm4c123.o(.text)
StartCritical 0x00000319 Thumb Code 8 startup_tm4c123.o(.text)
EndCritical 0x00000321 Thumb Code 6 startup_tm4c123.o(.text)
WaitForInterrupt 0x00000327 Thumb Code 4 startup_tm4c123.o(.text)
NMI_Handler 0x0000032b Thumb Code 2 startup_tm4c123.o(.text)
HardFault_Handler 0x0000032d Thumb Code 2 startup_tm4c123.o(.text)
MemManage_Handler 0x0000032f Thumb Code 2 startup_tm4c123.o(.text)
BusFault_Handler 0x00000331 Thumb Code 2 startup_tm4c123.o(.text)
UsageFault_Handler 0x00000333 Thumb Code 2 startup_tm4c123.o(.text)
SVC_Handler 0x00000335 Thumb Code 2 startup_tm4c123.o(.text)
DebugMon_Handler 0x00000337 Thumb Code 2 startup_tm4c123.o(.text)
PendSV_Handler 0x00000339 Thumb Code 2 startup_tm4c123.o(.text)
GPIOB_Handler 0x0000033f Thumb Code 2 startup_tm4c123.o(.text)
GPIOC_Handler 0x00000341 Thumb Code 2 startup_tm4c123.o(.text)
GPIOD_Handler 0x00000343 Thumb Code 2 startup_tm4c123.o(.text)
GPIOE_Handler 0x00000345 Thumb Code 2 startup_tm4c123.o(.text)
UART0_Handler 0x00000347 Thumb Code 2 startup_tm4c123.o(.text)
UART1_Handler 0x00000349 Thumb Code 2 startup_tm4c123.o(.text)
SSI0_Handler 0x0000034b Thumb Code 2 startup_tm4c123.o(.text)
I2C0_Handler 0x0000034d Thumb Code 2 startup_tm4c123.o(.text)
PMW0_FAULT_Handler 0x0000034f Thumb Code 2 startup_tm4c123.o(.text)
PWM0_0_Handler 0x00000351 Thumb Code 2 startup_tm4c123.o(.text)
PWM0_1_Handler 0x00000353 Thumb Code 2 startup_tm4c123.o(.text)
PWM0_2_Handler 0x00000355 Thumb Code 2 startup_tm4c123.o(.text)
QEI0_Handler 0x00000357 Thumb Code 2 startup_tm4c123.o(.text)
ADC0SS0_Handler 0x00000359 Thumb Code 2 startup_tm4c123.o(.text)
ADC0SS1_Handler 0x0000035b Thumb Code 2 startup_tm4c123.o(.text)
ADC0SS2_Handler 0x0000035d Thumb Code 2 startup_tm4c123.o(.text)
ADC0SS3_Handler 0x0000035f Thumb Code 2 startup_tm4c123.o(.text)
WDT0_Handler 0x00000361 Thumb Code 2 startup_tm4c123.o(.text)
TIMER0B_Handler 0x00000365 Thumb Code 2 startup_tm4c123.o(.text)
TIMER1B_Handler 0x00000369 Thumb Code 2 startup_tm4c123.o(.text)
TIMER2B_Handler 0x0000036d Thumb Code 2 startup_tm4c123.o(.text)
COMP0_Handler 0x0000036f Thumb Code 2 startup_tm4c123.o(.text)
COMP1_Handler 0x00000371 Thumb Code 2 startup_tm4c123.o(.text)
COMP2_Handler 0x00000373 Thumb Code 2 startup_tm4c123.o(.text)
SYSCTL_Handler 0x00000375 Thumb Code 2 startup_tm4c123.o(.text)
FLASH_Handler 0x00000377 Thumb Code 2 startup_tm4c123.o(.text)
GPIOG_Handler 0x0000037b Thumb Code 2 startup_tm4c123.o(.text)
GPIOH_Handler 0x0000037d Thumb Code 2 startup_tm4c123.o(.text)
UART2_Handler 0x0000037f Thumb Code 2 startup_tm4c123.o(.text)
SSI1_Handler 0x00000381 Thumb Code 2 startup_tm4c123.o(.text)
TIMER3B_Handler 0x00000385 Thumb Code 2 startup_tm4c123.o(.text)
I2C1_Handler 0x00000387 Thumb Code 2 startup_tm4c123.o(.text)
QEI1_Handler 0x00000389 Thumb Code 2 startup_tm4c123.o(.text)
CAN0_Handler 0x0000038b Thumb Code 2 startup_tm4c123.o(.text)
CAN1_Handler 0x0000038d Thumb Code 2 startup_tm4c123.o(.text)
CAN2_Handler 0x0000038f Thumb Code 2 startup_tm4c123.o(.text)
HIB_Handler 0x00000391 Thumb Code 2 startup_tm4c123.o(.text)
USB0_Handler 0x00000393 Thumb Code 2 startup_tm4c123.o(.text)
PWM0_3_Handler 0x00000395 Thumb Code 2 startup_tm4c123.o(.text)
UDMA_Handler 0x00000397 Thumb Code 2 startup_tm4c123.o(.text)
UDMAERR_Handler 0x00000399 Thumb Code 2 startup_tm4c123.o(.text)
ADC1SS0_Handler 0x0000039b Thumb Code 2 startup_tm4c123.o(.text)
ADC1SS1_Handler 0x0000039d Thumb Code 2 startup_tm4c123.o(.text)
ADC1SS2_Handler 0x0000039f Thumb Code 2 startup_tm4c123.o(.text)
ADC1SS3_Handler 0x000003a1 Thumb Code 2 startup_tm4c123.o(.text)
GPIOJ_Handler 0x000003a3 Thumb Code 2 startup_tm4c123.o(.text)
GPIOK_Handler 0x000003a5 Thumb Code 2 startup_tm4c123.o(.text)
GPIOL_Handler 0x000003a7 Thumb Code 2 startup_tm4c123.o(.text)
SSI2_Handler 0x000003a9 Thumb Code 2 startup_tm4c123.o(.text)
SSI3_Handler 0x000003ab Thumb Code 2 startup_tm4c123.o(.text)
UART3_Handler 0x000003ad Thumb Code 2 startup_tm4c123.o(.text)
UART4_Handler 0x000003af Thumb Code 2 startup_tm4c123.o(.text)
UART5_Handler 0x000003b1 Thumb Code 2 startup_tm4c123.o(.text)
UART6_Handler 0x000003b3 Thumb Code 2 startup_tm4c123.o(.text)
UART7_Handler 0x000003b5 Thumb Code 2 startup_tm4c123.o(.text)
I2C2_Handler 0x000003b7 Thumb Code 2 startup_tm4c123.o(.text)
I2C3_Handler 0x000003b9 Thumb Code 2 startup_tm4c123.o(.text)
TIMER4A_Handler 0x000003bb Thumb Code 2 startup_tm4c123.o(.text)
TIMER4B_Handler 0x000003bd Thumb Code 2 startup_tm4c123.o(.text)
TIMER5B_Handler 0x000003c1 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER0A_Handler 0x000003c3 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER0B_Handler 0x000003c5 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER1A_Handler 0x000003c7 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER1B_Handler 0x000003c9 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER2A_Handler 0x000003cb Thumb Code 2 startup_tm4c123.o(.text)
WTIMER2B_Handler 0x000003cd Thumb Code 2 startup_tm4c123.o(.text)
WTIMER3A_Handler 0x000003cf Thumb Code 2 startup_tm4c123.o(.text)
WTIMER3B_Handler 0x000003d1 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER4A_Handler 0x000003d3 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER4B_Handler 0x000003d5 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER5A_Handler 0x000003d7 Thumb Code 2 startup_tm4c123.o(.text)
WTIMER5B_Handler 0x000003d9 Thumb Code 2 startup_tm4c123.o(.text)
FPU_Handler 0x000003db Thumb Code 2 startup_tm4c123.o(.text)
I2C4_Handler 0x000003dd Thumb Code 2 startup_tm4c123.o(.text)
I2C5_Handler 0x000003df Thumb Code 2 startup_tm4c123.o(.text)
GPIOM_Handler 0x000003e1 Thumb Code 2 startup_tm4c123.o(.text)
GPION_Handler 0x000003e3 Thumb Code 2 startup_tm4c123.o(.text)
QEI2_Handler 0x000003e5 Thumb Code 2 startup_tm4c123.o(.text)
GPIOP0_Handler 0x000003e7 Thumb Code 2 startup_tm4c123.o(.text)
GPIOP1_Handler 0x000003e9 Thumb Code 2 startup_tm4c123.o(.text)
GPIOP2_Handler 0x000003eb Thumb Code 2 startup_tm4c123.o(.text)
GPIOP3_Handler 0x000003ed Thumb Code 2 startup_tm4c123.o(.text)
GPIOP4_Handler 0x000003ef Thumb Code 2 startup_tm4c123.o(.text)
GPIOP5_Handler 0x000003f1 Thumb Code 2 startup_tm4c123.o(.text)
GPIOP6_Handler 0x000003f3 Thumb Code 2 startup_tm4c123.o(.text)
GPIOP7_Handler 0x000003f5 Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ0_Handler 0x000003f7 Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ1_Handler 0x000003f9 Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ2_Handler 0x000003fb Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ3_Handler 0x000003fd Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ4_Handler 0x000003ff Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ5_Handler 0x00000401 Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ6_Handler 0x00000403 Thumb Code 2 startup_tm4c123.o(.text)
GPIOQ7_Handler 0x00000405 Thumb Code 2 startup_tm4c123.o(.text)
GPIOR_Handler 0x00000407 Thumb Code 2 startup_tm4c123.o(.text)
GPIOS_Handler 0x00000409 Thumb Code 2 startup_tm4c123.o(.text)
PMW1_0_Handler 0x0000040b Thumb Code 2 startup_tm4c123.o(.text)
PWM1_1_Handler 0x0000040d Thumb Code 2 startup_tm4c123.o(.text)
PWM1_2_Handler 0x0000040f Thumb Code 2 startup_tm4c123.o(.text)
PWM1_3_Handler 0x00000411 Thumb Code 2 startup_tm4c123.o(.text)
PWM1_FAULT_Handler 0x00000413 Thumb Code 2 startup_tm4c123.o(.text)
__user_initial_stackheap 0x00000415 Thumb Code 0 startup_tm4c123.o(.text)
LogicAnalyzerTask() 0x00000435 Thumb Code 20 main.o(.text)
ScopeTask() 0x00000449 Thumb Code 12 main.o(.text)
Profile_Init() 0x00000455 Thumb Code 256 main.o(.text)
SysTick_Init(unsigned long) 0x00000555 Thumb Code 54 main.o(.text)
delay() 0x0000058b Thumb Code 12 main.o(.text)
Delay100ms(unsigned) 0x00000597 Thumb Code 38 main.o(.text)
Draw(Sprite&) 0x000005bd Thumb Code 1436 main.o(.text)
goToMenu() 0x00000b59 Thumb Code 834 main.o(.text)
introAnimation() 0x00000e9b Thumb Code 316 main.o(.text)
main 0x00000fd7 Thumb Code 740 main.o(.text)
PeriodicLaserHandler() 0x000012bb Thumb Code 94 main.o(.text)
PeriodicBallHandler() 0x00001319 Thumb Code 1118 main.o(.text)
restoreSaves() 0x00001777 Thumb Code 100 main.o(.text)
PeriodicSpikeyBallHandler() 0x000017db Thumb Code 442 main.o(.text)
Sprite::reset() 0x00001995 Thumb Code 394 main.o(.text)
PeriodicBulletHellHandler() 0x00001b1f Thumb Code 344 main.o(.text)
powerups::powerUpActivate() 0x00001c77 Thumb Code 32 main.o(.text)
saveStates() 0x00001c97 Thumb Code 70 main.o(.text)
Sprite::nextRound() 0x00001cdd Thumb Code 1672 main.o(.text)
Sprite::PointScored(int) 0x00002365 Thumb Code 1764 main.o(.text)
Sprite::moveSpike() 0x00002a49 Thumb Code 132 main.o(.text)
Sprite::moveLaser() 0x00002acd Thumb Code 112 main.o(.text)
SysTick_Handler 0x00002b3d Thumb Code 424 main.o(.text)
absDiff(int, int) 0x00002ce5 Thumb Code 12 main.o(.text)
abs(int) 0x00002cf1 Thumb Code 14 main.o(.text)
findClosestBall(int) 0x00002cff Thumb Code 154 main.o(.text)
GPIOF_Handler 0x00002d99 Thumb Code 62 main.o(.text)
powerups::randomizer() 0x00002dd7 Thumb Code 20 main.o(.text)
powerups::activatePower() 0x00002deb Thumb Code 60 main.o(.text)
GPIOA_Handler 0x00002e27 Thumb Code 42 main.o(.text)
Sprite::Sprite() 0x00002e51 Thumb Code 86 main.o(.text)
Sprite::Sprite__sub_object() 0x00002e51 Thumb Code 0 main.o(.text)
Sprite::wallPhysics() 0x00002ea7 Thumb Code 426 main.o(.text)
Sprite::collision(Sprite, Sprite) 0x00003051 Thumb Code 90 main.o(.text)
Sprite::physics() 0x000030ab Thumb Code 222 main.o(.text)
Sprite::logic() 0x00003189 Thumb Code 498 main.o(.text)
DAC_Init() 0x00003479 Thumb Code 52 dac.o(.text)
DAC_Out(unsigned char) 0x000034ad Thumb Code 8 dac.o(.text)
Random_Init(unsigned) 0x000034c1 Thumb Code 6 random.o(.text)
Random32() 0x000034c7 Thumb Code 22 random.o(.text)
Random() 0x000034dd Thumb Code 24 random.o(.text)
ADC_Init() 0x00003501 Thumb Code 180 slidepot.o(.text)
ADC_In() 0x000035b5 Thumb Code 38 slidepot.o(.text)
SlidePot::SlidePot(unsigned, unsigned) 0x000035db Thumb Code 16 slidepot.o(.text)
SlidePot::SlidePot__sub_object(unsigned, unsigned) 0x000035db Thumb Code 0 slidepot.o(.text)
SlidePot::Convert(unsigned) 0x000035eb Thumb Code 14 slidepot.o(.text)
SlidePot::Save(unsigned) 0x000035f9 Thumb Code 24 slidepot.o(.text)
SlidePot::Sync() 0x00003611 Thumb Code 14 slidepot.o(.text)
SlidePot::ADCsample() 0x0000361f Thumb Code 6 slidepot.o(.text)
SlidePot::Distance() 0x00003625 Thumb Code 6 slidepot.o(.text)
TimerISR() 0x00003641 Thumb Code 74 sound.o(.text)
Sound_Init() 0x0000368b Thumb Code 26 sound.o(.text)
Sound_Start(const unsigned char*, unsigned) 0x000036a5 Thumb Code 22 sound.o(.text)
Timer0_Init(void(*)(), unsigned) 0x000036d1 Thumb Code 74 timer0.o(.text)
TIMER0A_Handler 0x0000371b Thumb Code 16 timer0.o(.text)
Timer1_Init(void(*)(), unsigned) 0x00003741 Thumb Code 74 timer1.o(.text)
TIMER1A_Handler 0x0000378b Thumb Code 16 timer1.o(.text)
I2C3_Init(unsigned, unsigned) 0x000037b1 Thumb Code 152 i2c3.o(.text)
I2C3_Send(unsigned char, unsigned char*, unsigned) 0x00003849 Thumb Code 220 i2c3.o(.text)
I2C3_Send1(unsigned char, unsigned char) 0x00003925 Thumb Code 54 i2c3.o(.text)
I2C3_Send2(signed char, unsigned char, unsigned char) 0x0000395b Thumb Code 106 i2c3.o(.text)
I2C3_Send4(unsigned char, unsigned char, unsigned char, unsigned char, unsigned char) 0x000039c5 Thumb Code 208 i2c3.o(.text)
I2C3_Recv1(signed char) 0x00003a95 Thumb Code 82 i2c3.o(.text)
I2C3_Recv(unsigned char, unsigned char*, unsigned) 0x00003ae7 Thumb Code 292 i2c3.o(.text)
I2C3_Recv2(signed char) 0x00003c0b Thumb Code 116 i2c3.o(.text)
I2C3_Recv3(unsigned char, unsigned char*) 0x00003c7f Thumb Code 112 i2c3.o(.text)
I2C3_SendData(unsigned char, unsigned char*, unsigned) 0x00003cef Thumb Code 118 i2c3.o(.text)
ssd1306command(unsigned char) 0x00003d69 Thumb Code 16 ssd1306.o(.text)
ssd1306command1(unsigned char) 0x00003d79 Thumb Code 16 ssd1306.o(.text)
ssd1306commandList(const unsigned char*, unsigned) 0x00003d89 Thumb Code 18 ssd1306.o(.text)
Delay1ms(unsigned) 0x00003d9b Thumb Code 32 ssd1306.o(.text)
SSD1306_SetCursor(unsigned short, unsigned short) 0x00003dbb Thumb Code 94 ssd1306.o(.text)
SSD1306_OutBuffer() 0x00003e19 Thumb Code 30 ssd1306.o(.text)
SSD1306_ClearBuffer() 0x00003e37 Thumb Code 30 ssd1306.o(.text)
SSD1306_Init(int) 0x00003e55 Thumb Code 158 ssd1306.o(.text)
SSD1306_DrawPixel(short, short, unsigned short) 0x00003ef3 Thumb Code 240 ssd1306.o(.text)
SSD1306_SetPlot(int, int, int, int, unsigned short) 0x00003fe3 Thumb Code 74 ssd1306.o(.text)
SSD1306_DrawPoint(int, int) 0x0000402d Thumb Code 96 ssd1306.o(.text)
SSD1306_DrawChar(short, short, char, unsigned short) 0x0000408d Thumb Code 100 ssd1306.o(.text)
SSD1306_DrawString(short, short, char*, unsigned short) 0x000040f1 Thumb Code 38 ssd1306.o(.text)
SSD1306_OutClear() 0x00004117 Thumb Code 12 ssd1306.o(.text)
SSD1306_DrawBMP(unsigned char, unsigned char, const unsigned char*, unsigned char, unsigned short) 0x00004123 Thumb Code 620 ssd1306.o(.text)
ssd1306drawFastHLineInternal(short, short, short, unsigned short) 0x0000438f Thumb Code 160 ssd1306.o(.text)
ssd1306drawFastVLineInternal(short, short, short, unsigned short) 0x0000442f Thumb Code 344 ssd1306.o(.text)
SSD1306_DrawFastHLine(short, short, short, unsigned short) 0x00004587 Thumb Code 134 ssd1306.o(.text)
SSD1306_DrawFastVLine(short, short, short, unsigned short) 0x0000460d Thumb Code 134 ssd1306.o(.text)
SSD1306_GetPixel(short, short) 0x00004693 Thumb Code 116 ssd1306.o(.text)
SSD1306_GetBuffer() 0x00004707 Thumb Code 4 ssd1306.o(.text)
SSD1306_DrawFullImage(const unsigned char*) 0x0000470b Thumb Code 40 ssd1306.o(.text)
SSD1306_startscrollright(unsigned char, unsigned char) 0x00004733 Thumb Code 42 ssd1306.o(.text)
SSD1306_startscrollleft(unsigned char, unsigned char) 0x0000475d Thumb Code 42 ssd1306.o(.text)
SSD1306_startscrolldiagright(unsigned char, unsigned char) 0x00004787 Thumb Code 56 ssd1306.o(.text)
SSD1306_startscrolldiagleft(unsigned char, unsigned char) 0x000047bf Thumb Code 56 ssd1306.o(.text)
SSD1306_stopscroll() 0x000047f7 Thumb Code 10 ssd1306.o(.text)
SSD1306_InvertDisplay(int) 0x00004801 Thumb Code 20 ssd1306.o(.text)
SSD1306_Dim(int) 0x00004815 Thumb Code 40 ssd1306.o(.text)
SSD1306_OutChar 0x0000483d Thumb Code 238 ssd1306.o(.text)
SSD1306_OutString 0x0000492b Thumb Code 22 ssd1306.o(.text)
SSD1306_OutUDec(unsigned short) 0x00004941 Thumb Code 492 ssd1306.o(.text)
SSD1306_OutSDec(short) 0x00004b2d Thumb Code 428 ssd1306.o(.text)
SSD1306_OutUFix1(unsigned short) 0x00004cd9 Thumb Code 108 ssd1306.o(.text)
SSD1306_OutSFix1(int) 0x00004d45 Thumb Code 212 ssd1306.o(.text)
SSD1306_OutHex7(unsigned char) 0x00004e19 Thumb Code 36 ssd1306.o(.text)
SSD1306_OutUHex7(unsigned char) 0x00004e3d Thumb Code 34 ssd1306.o(.text)
SSD1306_OutUDec16(unsigned) 0x00004e5f Thumb Code 144 ssd1306.o(.text)
SSD1306_OutUDec2(unsigned) 0x00004eef Thumb Code 82 ssd1306.o(.text)
UART0_Init() 0x00004f45 Thumb Code 152 texas.o(.text)
ADC1_Init() 0x00004fdd Thumb Code 180 texas.o(.text)
PLL_Init() 0x00005091 Thumb Code 120 texas.o(.text)
TExaS_Init(void(*)()) 0x00005109 Thumb Code 96 texas.o(.text)
TIMER5A_Handler 0x00005169 Thumb Code 16 texas.o(.text)
TExaS_Stop() 0x00005179 Thumb Code 18 texas.o(.text)
Timer2_Init(void(*)(), unsigned) 0x000051c9 Thumb Code 74 timer2.o(.text)
TIMER2A_Handler 0x00005213 Thumb Code 16 timer2.o(.text)
Switch_Init() 0x00005239 Thumb Code 126 switch.o(.text)
Sprite::Sprite(int, int, int, const unsigned char*, bool, bool) 0x000052d1 Thumb Code 82 sprite.o(.text)
Sprite::Sprite__sub_object(int, int, int, const unsigned char*, bool, bool) 0x000052d1 Thumb Code 0 sprite.o(.text)
Sprite::operator =(Sprite&) 0x00005323 Thumb Code 64 sprite.o(.text)
Sprite::move(int) 0x00005363 Thumb Code 306 sprite.o(.text)
superBalls(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x00005499 Thumb Code 132 powerups.o(.text)
invisibleBall(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x0000551d Thumb Code 70 powerups.o(.text)
revBall(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x00005563 Thumb Code 86 powerups.o(.text)
death(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x000055b9 Thumb Code 14 powerups.o(.text)
slowAI(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x000055c7 Thumb Code 12 powerups.o(.text)
revControls(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x000055d3 Thumb Code 12 powerups.o(.text)
expand(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x000055df Thumb Code 16 powerups.o(.text)
shrink(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x000055ef Thumb Code 16 powerups.o(.text)
maxSize(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x000055ff Thumb Code 16 powerups.o(.text)
freezeAI(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x0000560f Thumb Code 12 powerups.o(.text)
powerups::powerups(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x0000561b Thumb Code 74 powerups.o(.text)
powerups::powerups__sub_object(Sprite*, Sprite&, Sprite&, Sprite&, bool*, bool*) 0x0000561b Thumb Code 0 powerups.o(.text)
powerups::hash(int) 0x00005665 Thumb Code 114 powerups.o(.text)
Timer3_Init(void(*)(), unsigned) 0x000056e9 Thumb Code 72 timer3.o(.text)
TIMER3A_Handler 0x00005731 Thumb Code 16 timer3.o(.text)
__aeabi_memcpy4 0x00005755 Thumb Code 0 rt_memcpy_w.o(.text)
__aeabi_memcpy8 0x00005755 Thumb Code 0 rt_memcpy_w.o(.text)
__rt_memcpy_w 0x00005755 Thumb Code 100 rt_memcpy_w.o(.text)
_memcpy_lastbytes_aligned 0x0000579d Thumb Code 0 rt_memcpy_w.o(.text)
__use_two_region_memory 0x000057b9 Thumb Code 2 heapauxi.o(.text)
__rt_heap_escrow 0x000057bb Thumb Code 2 heapauxi.o(.text)
__rt_heap_expand 0x000057bd Thumb Code 2 heapauxi.o(.text)
__cpp_initialize__aeabi_ 0x000057c1 Thumb Code 26 init_aeabi.o(.text)
__user_setup_stackheap 0x000057e5 Thumb Code 74 sys_stackheap_outer.o(.text)
exit 0x0000582f Thumb Code 18 exit.o(.text)
__user_libspace 0x00005841 Thumb Code 8 libspace.o(.text)
__user_perproc_libspace 0x00005841 Thumb Code 0 libspace.o(.text)
__user_perthread_libspace 0x00005841 Thumb Code 0 libspace.o(.text)
_sys_exit 0x00005849 Thumb Code 8 sys_exit.o(.text)
__I$use$semihosting 0x00005855 Thumb Code 0 use_no_semi.o(.text)
__use_no_semihosting_swi 0x00005855 Thumb Code 2 use_no_semi.o(.text)
__aeabi_vec_ctor_nocookie_nodtor 0x00005857 Thumb Code 36 aeabi_vec_ctor_nocookie_nodtor.o(i.__aeabi_vec_ctor_nocookie_nodtor)
__semihosting_library_function 0x00005857 Thumb Code 0 indicate_semi.o(.text)
Region$$Table$$Base 0x0002a980 Number 0 anon$$obj.o(Region$$Table)
Region$$Table$$Limit 0x0002a9a0 Number 0 anon$$obj.o(Region$$Table)
SHT$$INIT_ARRAY$$Base 0x0002a9a0 Number 0 main.o(.init_array)
SHT$$INIT_ARRAY$$Limit 0x0002a9a4 Number 0 init_aeabi.o(.init_array)
numBalls 0x20000000 Data 4 main.o(.data)
numSpikeyBalls 0x20000004 Data 4 main.o(.data)
reverseMode 0x20000008 Data 1 main.o(.data)
English 0x20000009 Data 1 main.o(.data)
noCollisionsMode 0x2000000a Data 1 main.o(.data)
roundStarted 0x2000000b Data 1 main.o(.data)
numLasers 0x2000000c Data 4 main.o(.data)
cycle 0x20000010 Data 4 main.o(.data)
menuPointer 0x20000014 Data 4 main.o(.data)
menu 0x20000018 Data 1 main.o(.data)
wins 0x2000001c Data 4 main.o(.data)
spikeParse 0x20000020 Data 4 main.o(.data)
parse 0x20000024 Data 4 main.o(.data)
ballParse 0x20000028 Data 4 main.o(.data)
delayCounter 0x2000002c Data 4 main.o(.data)
sounds 0x20000034 Data 4 sound.o(.data)
counter 0x20000038 Data 4 sound.o(.data)
max 0x2000003c Data 4 sound.o(.data)
PeriodicTask0 0x20000040 Data 4 timer0.o(.data)
PeriodicTask1 0x20000044 Data 4 timer1.o(.data)
vccstate 0x20000048 Data 4 ssd1306.o(.data)
rotation 0x2000004c Data 4 ssd1306.o(.data)
StartX 0x2000006a Data 2 ssd1306.o(.data)
CurrentX 0x2000006c Data 2 ssd1306.o(.data)
StartY 0x2000006e Data 2 ssd1306.o(.data)
CurrentY 0x20000070 Data 2 ssd1306.o(.data)
sendDataPt 0x20000074 Data 4 texas.o(.data)
PeriodicTask2 0x20000078 Data 4 timer2.o(.data)
PeriodicTask3 0x2000007c Data 4 timer3.o(.data)
goodGuy 0x20000080 Data 52 main.o(.bss)
gGuy_S 0x200000b4 Data 52 main.o(.bss)
bouncyBall 0x200000e8 Data 52 main.o(.bss)
bBall_S 0x2000011c Data 52 main.o(.bss)
enemyReflector 0x20000150 Data 52 main.o(.bss)
eReflector_S 0x20000184 Data 52 main.o(.bss)
bouncyBalls 0x200001b8 Data 676 main.o(.bss)
bBalls_S 0x2000045c Data 676 main.o(.bss)
pUps 0x20000700 Data 44 main.o(.bss)
lasers 0x2000072c Data 1300 main.o(.bss)
spikeyBalls 0x20000c40 Data 260 main.o(.bss)
buffer 0x20000d44 Data 1024 ssd1306.o(.bss)
__libspace_start 0x20001144 Data 96 libspace.o(.bss)
__temporary_stack_top$libspace 0x200011a4 Data 0 libspace.o(.bss)
==============================================================================