-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpaceInvaders.map
1245 lines (1188 loc) · 109 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 Professional]
==============================================================================
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 sound.o(i.SysTick_Handler) for SysTick_Handler
startup.o(RESET) refers to spaceinvaders.o(i.GPIOPortA_Handler) for GPIOPortA_Handler
startup.o(RESET) refers to spaceinvaders.o(i.GPIOPortB_Handler) for GPIOPortB_Handler
startup.o(RESET) refers to spaceinvaders.o(i.GPIOPortC_Handler) for GPIOPortC_Handler
startup.o(RESET) refers to spaceinvaders.o(i.GPIOPortE_Handler) for GPIOPortE_Handler
startup.o(RESET) refers to hardware.o(i.Timer0A_Handler) for Timer0A_Handler
startup.o(RESET) refers to hardware.o(i.Timer1A_Handler) for Timer1A_Handler
startup.o(RESET) refers to hardware.o(i.Timer2A_Handler) for Timer2A_Handler
startup.o(RESET) refers to spaceinvaders.o(i.GPIOPortF_Handler) for GPIOPortF_Handler
startup.o(RESET) refers to hardware.o(i.Timer3A_Handler) for Timer3A_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
random.o(.text) refers to random.o(DATA) for M
sound.o(i.Sound_Countdown) refers to sound.o(.data) for soundindex
sound.o(i.Sound_Countdown) refers to sound.o(.constdata) for countdown
sound.o(i.Sound_Explosion) refers to sound.o(.data) for soundindex
sound.o(i.Sound_Explosion) refers to sound.o(.constdata) for explosion
sound.o(i.Sound_Gameover) refers to sound.o(.data) for soundindex
sound.o(i.Sound_Gameover) refers to sound.o(.constdata) for gameover
sound.o(i.Sound_Init) refers to dac.o(i.DAC_Init) for DAC_Init
sound.o(i.Sound_Jump) refers to sound.o(.data) for soundindex
sound.o(i.Sound_Jump) refers to sound.o(.constdata) for jump
sound.o(i.Sound_Landing) refers to sound.o(.data) for soundindex
sound.o(i.Sound_Landing) refers to sound.o(.constdata) for landing
sound.o(i.Sound_Zap) refers to sound.o(.data) for soundindex
sound.o(i.Sound_Zap) refers to sound.o(.constdata) for zap
sound.o(i.SysTick_Handler) refers to dac.o(i.DAC_Out) for DAC_Out
sound.o(i.SysTick_Handler) refers to sound.o(.data) for sound
print.o(.text) refers (Special) to st7735.o(i.ST7735_OutChar) for ST7735_OutChar
print.o(.text) refers (Special) to st7735.o(i.ST7735_OutString) for ST7735_OutString
spaceinvaders.o(i.GPIOPortA_Handler) refers to spaceinvaders.o(i.plantBomb) for plantBomb
spaceinvaders.o(i.GPIOPortB_Handler) refers to spaceinvaders.o(i.plantBomb) for plantBomb
spaceinvaders.o(i.GPIOPortC_Handler) refers to spaceinvaders.o(i.Shoot2) for Shoot2
spaceinvaders.o(i.GPIOPortE_Handler) refers to spaceinvaders.o(i.Shoot1) for Shoot1
spaceinvaders.o(i.GPIOPortF_Handler) refers to st7735.o(i.ST7735_FillScreen) for ST7735_FillScreen
spaceinvaders.o(i.GPIOPortF_Handler) refers to st7735.o(i.ST7735_SetCursor) for ST7735_SetCursor
spaceinvaders.o(i.GPIOPortF_Handler) refers to st7735.o(i.ST7735_OutString) for ST7735_OutString
spaceinvaders.o(i.Gravity) refers to spaceinvaders.o(.data) for jumpIndex
spaceinvaders.o(i.GravityBomb) refers to spaceinvaders.o(.bss) for bomb
spaceinvaders.o(i.GravityBomb) refers to spaceinvaders.o(.data) for gravityIndexBomb
spaceinvaders.o(i.Jump1) refers to sound.o(i.Sound_Jump) for Sound_Jump
spaceinvaders.o(i.Jump1) refers to spaceinvaders.o(.data) for jumpStatus
spaceinvaders.o(i.Jump2) refers to sound.o(i.Sound_Jump) for Sound_Jump
spaceinvaders.o(i.Jump2) refers to spaceinvaders.o(.data) for jumpStatus
spaceinvaders.o(i.MenuScreen) refers to st7735.o(i.ST7735_FillScreen) for ST7735_FillScreen
spaceinvaders.o(i.MenuScreen) refers to st7735.o(i.ST7735_DrawBitmap) for ST7735_DrawBitmap
spaceinvaders.o(i.MenuScreen) refers to st7735.o(i.ST7735_SetCursor) for ST7735_SetCursor
spaceinvaders.o(i.MenuScreen) refers to st7735.o(i.ST7735_OutString) for ST7735_OutString
spaceinvaders.o(i.MenuScreen) refers to spaceinvaders.o(i.Select_Level) for Select_Level
spaceinvaders.o(i.MenuScreen) refers to spaceinvaders.o(.data) for splash
spaceinvaders.o(i.Select_Level) refers to spaceinvaders.o(.data) for Level
spaceinvaders.o(i.Shoot1) refers to sound.o(i.Sound_Zap) for Sound_Zap
spaceinvaders.o(i.Shoot1) refers to spaceinvaders.o(.data) for p1ammo
spaceinvaders.o(i.Shoot2) refers to sound.o(i.Sound_Zap) for Sound_Zap
spaceinvaders.o(i.Shoot2) refers to spaceinvaders.o(.data) for p2ammo
spaceinvaders.o(i.detectPlatform) refers to spaceinvaders.o(.data) for player
spaceinvaders.o(i.detectPlatformBomb) refers to spaceinvaders.o(.bss) for bomb
spaceinvaders.o(i.detectPlatformBomb) refers to spaceinvaders.o(.data) for platform
spaceinvaders.o(i.drawBackground) refers to st7735.o(i.rectBuffer) for rectBuffer
spaceinvaders.o(i.drawBackground) refers to st7735.o(i.bitmapBuffer) for bitmapBuffer
spaceinvaders.o(i.drawBackground) refers to spaceinvaders.o(.data) for bgMid1
spaceinvaders.o(i.drawBomb) refers to st7735.o(i.bitmapBuffer) for bitmapBuffer
spaceinvaders.o(i.drawBomb) refers to spaceinvaders.o(.bss) for bomb
spaceinvaders.o(i.drawBomb) refers to spaceinvaders.o(.data) for bombSp
spaceinvaders.o(i.drawBullet) refers to st7735.o(i.rectBuffer) for rectBuffer
spaceinvaders.o(i.drawBullet) refers to spaceinvaders.o(.data) for p1ammo
spaceinvaders.o(i.drawBullet) refers to sound.o(i.Sound_Explosion) for Sound_Explosion
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.drawBackground) for drawBackground
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.setDirection) for setDirection
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.movePlayers) for movePlayers
spaceinvaders.o(i.drawFrame) refers to hardware.o(i.Timer0_Init) for Timer0_Init
spaceinvaders.o(i.drawFrame) refers to hardware.o(i.Timer1_Init) for Timer1_Init
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.Gravity) for Gravity
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.GravityBomb) for GravityBomb
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.drawPortal) for drawPortal
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.movePlatforms) for movePlatforms
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.detectPlatform) for detectPlatform
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.detectPlatformBomb) for detectPlatformBomb
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.drawLifeBars) for drawLifeBars
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.drawPlatform) for drawPlatform
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.drawPlayers) for drawPlayers
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.drawBomb) for drawBomb
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.drawBullet) for drawBullet
spaceinvaders.o(i.drawFrame) refers to st7735.o(i.bitmapBuffer) for bitmapBuffer
spaceinvaders.o(i.drawFrame) refers to st7735.o(i.rectBuffer) for rectBuffer
spaceinvaders.o(i.drawFrame) refers to st7735.o(i.ST7735_DrawBitmap) for ST7735_DrawBitmap
spaceinvaders.o(i.drawFrame) refers to sound.o(i.Sound_Gameover) for Sound_Gameover
spaceinvaders.o(i.drawFrame) refers to adc.o(.bss) for ADCvalue
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.Jump1) for Jump1
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(i.Jump2) for Jump2
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(.data) for Level
spaceinvaders.o(i.drawFrame) refers to spaceinvaders.o(.bss) for bomb
spaceinvaders.o(i.drawLifeBars) refers to st7735.o(i.rectBuffer) for rectBuffer
spaceinvaders.o(i.drawLifeBars) refers to spaceinvaders.o(.data) for player
spaceinvaders.o(i.drawPlatform) refers to st7735.o(i.rectBuffer) for rectBuffer
spaceinvaders.o(i.drawPlayers) refers to st7735.o(i.bitmapBuffer) for bitmapBuffer
spaceinvaders.o(i.drawPlayers) refers to spaceinvaders.o(.data) for player
spaceinvaders.o(i.drawPortal) refers to st7735.o(i.rectBuffer) for rectBuffer
spaceinvaders.o(i.explodeBomb1) refers to sound.o(i.Sound_Countdown) for Sound_Countdown
spaceinvaders.o(i.explodeBomb1) refers to sound.o(i.Sound_Explosion) for Sound_Explosion
spaceinvaders.o(i.explodeBomb1) refers to spaceinvaders.o(.data) for Countdown
spaceinvaders.o(i.explodeBomb1) refers to spaceinvaders.o(.bss) for bomb
spaceinvaders.o(i.explodeBomb2) refers to sound.o(i.Sound_Countdown) for Sound_Countdown
spaceinvaders.o(i.explodeBomb2) refers to sound.o(i.Sound_Explosion) for Sound_Explosion
spaceinvaders.o(i.explodeBomb2) refers to spaceinvaders.o(.data) for Countdown
spaceinvaders.o(i.explodeBomb2) refers to spaceinvaders.o(.bss) for bomb
spaceinvaders.o(i.main) refers to pll.o(i.PLL_Init) for PLL_Init
spaceinvaders.o(i.main) refers to adc.o(i.ADC_Init) for ADC_Init
spaceinvaders.o(i.main) refers to hardware.o(i.Button_Init) for Button_Init
spaceinvaders.o(i.main) refers to sound.o(i.Sound_Init) for Sound_Init
spaceinvaders.o(i.main) refers to st7735.o(i.ST7735_InitR) for ST7735_InitR
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.MenuScreen) for MenuScreen
spaceinvaders.o(i.main) refers to hardware.o(i.EdgeTriggeredPortA_Init) for EdgeTriggeredPortA_Init
spaceinvaders.o(i.main) refers to hardware.o(i.EdgeTriggeredPortB_Init) for EdgeTriggeredPortB_Init
spaceinvaders.o(i.main) refers to hardware.o(i.EdgeTriggeredPortC_Init) for EdgeTriggeredPortC_Init
spaceinvaders.o(i.main) refers to hardware.o(i.EdgeTriggeredPortE_Init) for EdgeTriggeredPortE_Init
spaceinvaders.o(i.main) refers to hardware.o(i.EdgeTriggeredPortF_Init) for EdgeTriggeredPortF_Init
spaceinvaders.o(i.main) refers to spaceinvaders.o(i.drawFrame) for drawFrame
spaceinvaders.o(i.main) refers to st7735.o(i.ST7735_FillScreen) for ST7735_FillScreen
spaceinvaders.o(i.main) refers to st7735.o(i.ST7735_SetCursor) for ST7735_SetCursor
spaceinvaders.o(i.main) refers to st7735.o(i.ST7735_OutString) for ST7735_OutString
spaceinvaders.o(i.main) refers to spaceinvaders.o(.data) for GameOver
spaceinvaders.o(i.movePlatforms) refers to spaceinvaders.o(.data) for platform
spaceinvaders.o(i.movePlayers) refers to sound.o(i.Sound_Landing) for Sound_Landing
spaceinvaders.o(i.movePlayers) refers to spaceinvaders.o(i.playerCollision) for playerCollision
spaceinvaders.o(i.movePlayers) refers to spaceinvaders.o(.data) for player
spaceinvaders.o(i.plantBomb) refers to hardware.o(i.Timer2_Init) for Timer2_Init
spaceinvaders.o(i.plantBomb) refers to hardware.o(i.Timer3_Init) for Timer3_Init
spaceinvaders.o(i.plantBomb) refers to spaceinvaders.o(.bss) for bomb
spaceinvaders.o(i.plantBomb) refers to spaceinvaders.o(.data) for player
spaceinvaders.o(i.plantBomb) refers to spaceinvaders.o(i.explodeBomb1) for explodeBomb1
spaceinvaders.o(i.plantBomb) refers to spaceinvaders.o(i.explodeBomb2) for explodeBomb2
spaceinvaders.o(i.playerCollision) refers to spaceinvaders.o(.data) for player
spaceinvaders.o(i.setDirection) refers to adc.o(i.ADC_In) for ADC_In
spaceinvaders.o(i.setDirection) refers to adc.o(.bss) for ADCvalue
spaceinvaders.o(i.setDirection) refers to spaceinvaders.o(.data) for player
st7735.o(i.Output_Clear) refers to st7735.o(i.ST7735_FillScreen) for ST7735_FillScreen
st7735.o(i.Output_Color) refers to st7735.o(i.ST7735_SetTextColor) for ST7735_SetTextColor
st7735.o(i.Output_Init) refers to st7735.o(i.ST7735_InitR) for ST7735_InitR
st7735.o(i.Output_Init) refers to st7735.o(i.ST7735_FillScreen) for ST7735_FillScreen
st7735.o(i.Output_Off) refers to st7735.o(i.Output_Clear) for Output_Clear
st7735.o(i.Output_On) refers to st7735.o(i.Output_Init) for Output_Init
st7735.o(i.ST7735_DrawBitmap) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_DrawBitmap) refers to lcd.o(.text) for writedata
st7735.o(i.ST7735_DrawBitmap) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawChar) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_DrawChar) refers to st7735.o(i.pushColor) for pushColor
st7735.o(i.ST7735_DrawChar) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawChar) refers to st7735.o(.constdata) for Font
st7735.o(i.ST7735_DrawCharS) refers to st7735.o(i.ST7735_DrawPixel) for ST7735_DrawPixel
st7735.o(i.ST7735_DrawCharS) refers to st7735.o(i.ST7735_FillRect) for ST7735_FillRect
st7735.o(i.ST7735_DrawCharS) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawCharS) refers to st7735.o(.constdata) for Font
st7735.o(i.ST7735_DrawCircle) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_DrawCircle) refers to lcd.o(.text) for writedata
st7735.o(i.ST7735_DrawCircle) refers to st7735.o(i.deselect) for deselect
st7735.o(i.ST7735_DrawCircle) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawCircle) refers to st7735.o(.constdata) for circle
st7735.o(i.ST7735_DrawFastHLine) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_DrawFastHLine) refers to lcd.o(.text) for writedata
st7735.o(i.ST7735_DrawFastHLine) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawFastVLine) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_DrawFastVLine) refers to lcd.o(.text) for writedata
st7735.o(i.ST7735_DrawFastVLine) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawPixel) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_DrawPixel) refers to st7735.o(i.pushColor) for pushColor
st7735.o(i.ST7735_DrawPixel) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawSmallCircle) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_DrawSmallCircle) refers to lcd.o(.text) for writedata
st7735.o(i.ST7735_DrawSmallCircle) refers to st7735.o(i.deselect) for deselect
st7735.o(i.ST7735_DrawSmallCircle) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_DrawSmallCircle) refers to st7735.o(.constdata) for smallCircle
st7735.o(i.ST7735_DrawString) refers to st7735.o(i.ST7735_DrawCharS) for ST7735_DrawCharS
st7735.o(i.ST7735_FillRect) refers to st7735.o(i.setAddrWindow) for setAddrWindow
st7735.o(i.ST7735_FillRect) refers to lcd.o(.text) for writedata
st7735.o(i.ST7735_FillRect) refers to st7735.o(.data) for _width
st7735.o(i.ST7735_FillScreen) refers to st7735.o(i.ST7735_FillRect) for ST7735_FillRect
st7735.o(i.ST7735_FillScreen) refers to st7735.o(.data) for _height
st7735.o(i.ST7735_InitB) refers to st7735.o(i.commonInit) for commonInit
st7735.o(i.ST7735_InitB) refers to st7735.o(i.ST7735_SetCursor) for ST7735_SetCursor
st7735.o(i.ST7735_InitB) refers to st7735.o(i.ST7735_FillScreen) for ST7735_FillScreen
st7735.o(i.ST7735_InitB) refers to st7735.o(.constdata) for Bcmd
st7735.o(i.ST7735_InitB) refers to st7735.o(.data) for StTextColor
st7735.o(i.ST7735_InitR) refers to st7735.o(i.commonInit) for commonInit
st7735.o(i.ST7735_InitR) refers to st7735.o(i.commandList) for commandList
st7735.o(i.ST7735_InitR) refers to lcd.o(.text) for writecommand
st7735.o(i.ST7735_InitR) refers to st7735.o(i.ST7735_SetCursor) for ST7735_SetCursor
st7735.o(i.ST7735_InitR) refers to st7735.o(i.ST7735_FillScreen) for ST7735_FillScreen
st7735.o(i.ST7735_InitR) refers to st7735.o(.constdata) for Rcmd1
st7735.o(i.ST7735_InitR) refers to st7735.o(.data) for ColStart
st7735.o(i.ST7735_InvertDisplay) refers to lcd.o(.text) for writecommand
st7735.o(i.ST7735_OutChar) refers to st7735.o(i.ST7735_DrawString) for ST7735_DrawString
st7735.o(i.ST7735_OutChar) refers to st7735.o(i.ST7735_DrawCharS) for ST7735_DrawCharS
st7735.o(i.ST7735_OutChar) refers to st7735.o(.data) for StY
st7735.o(i.ST7735_OutString) refers to st7735.o(i.ST7735_OutChar) for ST7735_OutChar
st7735.o(i.ST7735_OutUDec) refers to st7735.o(i.fillmessage) for fillmessage
st7735.o(i.ST7735_OutUDec) refers to st7735.o(i.ST7735_DrawString) for ST7735_DrawString
st7735.o(i.ST7735_OutUDec) refers to st7735.o(i.ST7735_DrawCharS) for ST7735_DrawCharS
st7735.o(i.ST7735_OutUDec) refers to st7735.o(.data) for Messageindex
st7735.o(i.ST7735_OutUDec) refers to st7735.o(.bss) for Message
st7735.o(i.ST7735_PlotBar) refers to st7735.o(i.ST7735_DrawFastVLine) for ST7735_DrawFastVLine
st7735.o(i.ST7735_PlotBar) refers to st7735.o(.data) for Ymin
st7735.o(i.ST7735_PlotClear) refers to st7735.o(i.ST7735_Color565) for ST7735_Color565
st7735.o(i.ST7735_PlotClear) refers to st7735.o(i.ST7735_FillRect) for ST7735_FillRect
st7735.o(i.ST7735_PlotClear) refers to st7735.o(.data) for Ymax
st7735.o(i.ST7735_PlotLine) refers to st7735.o(i.ST7735_DrawPixel) for ST7735_DrawPixel
st7735.o(i.ST7735_PlotLine) refers to st7735.o(.data) for Ymin
st7735.o(i.ST7735_PlotNext) refers to st7735.o(.data) for X
st7735.o(i.ST7735_PlotNextErase) refers to st7735.o(i.ST7735_Color565) for ST7735_Color565
st7735.o(i.ST7735_PlotNextErase) refers to st7735.o(i.ST7735_DrawFastVLine) for ST7735_DrawFastVLine
st7735.o(i.ST7735_PlotNextErase) refers to st7735.o(.data) for X
st7735.o(i.ST7735_PlotPoint) refers to st7735.o(i.ST7735_DrawPixel) for ST7735_DrawPixel
st7735.o(i.ST7735_PlotPoint) refers to st7735.o(.data) for Ymin
st7735.o(i.ST7735_PlotPoints) refers to st7735.o(i.ST7735_DrawPixel) for ST7735_DrawPixel
st7735.o(i.ST7735_PlotPoints) refers to st7735.o(.data) for Ymin
st7735.o(i.ST7735_PlotdBfs) refers to st7735.o(i.ST7735_DrawFastVLine) for ST7735_DrawFastVLine
st7735.o(i.ST7735_PlotdBfs) refers to st7735.o(.constdata) for dBfs
st7735.o(i.ST7735_PlotdBfs) refers to st7735.o(.data) for X
st7735.o(i.ST7735_SetCursor) refers to st7735.o(.data) for StX
st7735.o(i.ST7735_SetRotation) refers to lcd.o(.text) for writecommand
st7735.o(i.ST7735_SetRotation) refers to st7735.o(.data) for Rotation
st7735.o(i.ST7735_SetTextColor) refers to st7735.o(.data) for StTextColor
st7735.o(i.bitmapBuffer) refers to st7735.o(.data) for _width
st7735.o(i.bitmapBuffer) refers to spaceinvaders.o(.bss) for buffer
st7735.o(i.commandList) refers to lcd.o(.text) for writecommand
st7735.o(i.commandList) refers to st7735.o(i.Delay1ms) for Delay1ms
st7735.o(i.commonInit) refers to st7735.o(i.Delay1ms) for Delay1ms
st7735.o(i.commonInit) refers to st7735.o(i.commandList) for commandList
st7735.o(i.commonInit) refers to st7735.o(.data) for RowStart
st7735.o(i.fillmessage) refers to st7735.o(.bss) for Message
st7735.o(i.fillmessage) refers to st7735.o(.data) for Messageindex
st7735.o(i.fputc) refers to st7735.o(i.ST7735_OutChar) for ST7735_OutChar
st7735.o(i.pushColor) refers to lcd.o(.text) for writedata
st7735.o(i.rectBuffer) refers to st7735.o(.data) for _width
st7735.o(i.rectBuffer) refers to spaceinvaders.o(.bss) for buffer
st7735.o(i.setAddrWindow) refers to lcd.o(.text) for writecommand
st7735.o(i.setAddrWindow) refers to st7735.o(.data) for ColStart
hardware.o(i.Timer0A_Handler) refers to hardware.o(.data) for PeriodicTask0
hardware.o(i.Timer0_Init) refers to hardware.o(.data) for PeriodicTask0
hardware.o(i.Timer1A_Handler) refers to hardware.o(.data) for PeriodicTask1
hardware.o(i.Timer1_Init) refers to hardware.o(.data) for PeriodicTask1
hardware.o(i.Timer2A_Handler) refers to hardware.o(.data) for PeriodicTask2
hardware.o(i.Timer2_Init) refers to hardware.o(.data) for PeriodicTask2
hardware.o(i.Timer3A_Handler) refers to hardware.o(.data) for PeriodicTask3
hardware.o(i.Timer3_Init) refers to hardware.o(.data) for PeriodicTask3
uart.o(i.UART_InString) refers to uart.o(i.UART_InChar) for UART_InChar
uart.o(i.UART_InString) refers to uart.o(i.UART_OutChar) for UART_OutChar
uart.o(i.UART_InUDec) refers to uart.o(i.UART_InChar) for UART_InChar
uart.o(i.UART_InUDec) refers to uart.o(i.UART_OutChar) for UART_OutChar
uart.o(i.UART_InUHex) refers to uart.o(i.UART_InChar) for UART_InChar
uart.o(i.UART_InUHex) refers to uart.o(i.UART_OutChar) for UART_OutChar
uart.o(i.UART_OutString) refers to uart.o(i.UART_OutChar) for UART_OutChar
uart.o(i.UART_OutUDec) refers to uart.o(i.UART_OutChar) for UART_OutChar
uart.o(i.UART_OutUHex) refers to uart.o(i.UART_OutChar) for UART_OutChar
__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 random.o(DATA), (4 bytes).
Removing random.o(.text), (64 bytes).
Removing print.o(.text), (4 bytes).
Removing spaceinvaders.o(i.Delay100ms), (36 bytes).
Removing st7735.o(i.Output_Clear), (10 bytes).
Removing st7735.o(i.Output_Color), (12 bytes).
Removing st7735.o(i.Output_Init), (16 bytes).
Removing st7735.o(i.Output_Off), (8 bytes).
Removing st7735.o(i.Output_On), (8 bytes).
Removing st7735.o(i.ST7735_Color565), (24 bytes).
Removing st7735.o(i.ST7735_DrawChar), (268 bytes).
Removing st7735.o(i.ST7735_DrawCircle), (172 bytes).
Removing st7735.o(i.ST7735_DrawFastHLine), (124 bytes).
Removing st7735.o(i.ST7735_DrawFastVLine), (124 bytes).
Removing st7735.o(i.ST7735_DrawSmallCircle), (172 bytes).
Removing st7735.o(i.ST7735_InitB), (40 bytes).
Removing st7735.o(i.ST7735_InvertDisplay), (22 bytes).
Removing st7735.o(i.ST7735_OutUDec), (140 bytes).
Removing st7735.o(i.ST7735_PlotBar), (88 bytes).
Removing st7735.o(i.ST7735_PlotClear), (92 bytes).
Removing st7735.o(i.ST7735_PlotLine), (264 bytes).
Removing st7735.o(i.ST7735_PlotNext), (32 bytes).
Removing st7735.o(i.ST7735_PlotNextErase), (64 bytes).
Removing st7735.o(i.ST7735_PlotPoint), (152 bytes).
Removing st7735.o(i.ST7735_PlotPoints), (172 bytes).
Removing st7735.o(i.ST7735_PlotdBfs), (60 bytes).
Removing st7735.o(i.ST7735_SetRotation), (212 bytes).
Removing st7735.o(i.ST7735_SetTextColor), (12 bytes).
Removing st7735.o(i.ST7735_SwapColor), (18 bytes).
Removing st7735.o(i.deselect), (28 bytes).
Removing st7735.o(i.ferror), (8 bytes).
Removing st7735.o(i.fgetc), (6 bytes).
Removing st7735.o(i.fillmessage), (72 bytes).
Removing st7735.o(i.fputc), (16 bytes).
Removing st7735.o(.bss), (12 bytes).
Removing uart.o(i.UART_Flush), (20 bytes).
Removing uart.o(i.UART_InChar), (24 bytes).
Removing uart.o(i.UART_InString), (66 bytes).
Removing uart.o(i.UART_InUDec), (76 bytes).
Removing uart.o(i.UART_InUHex), (104 bytes).
Removing uart.o(i.UART_Init), (156 bytes).
Removing uart.o(i.UART_OutChar), (24 bytes).
Removing uart.o(i.UART_OutString), (24 bytes).
Removing uart.o(i.UART_OutUDec), (42 bytes).
Removing uart.o(i.UART_OutUHex), (52 bytes).
45 unused section(s) (total 3144 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 boardshut.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE
../clib/angel/dclz77c.s 0x00000000 Number 0 __dclz77c.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 rtexit.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry4.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry2.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry.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 use_no_semi.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/sysapp.c 0x00000000 Number 0 sys_command.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/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 no_argv.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 libshutdown2.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libshutdown.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit.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_outer.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.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.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
ADC.c 0x00000000 Number 0 adc.o ABSOLUTE
DAC.c 0x00000000 Number 0 dac.o ABSOLUTE
Hardware.c 0x00000000 Number 0 hardware.o ABSOLUTE
LCD.s 0x00000000 Number 0 lcd.o ABSOLUTE
PLL.c 0x00000000 Number 0 pll.o ABSOLUTE
Print.s 0x00000000 Number 0 print.o ABSOLUTE
ST7735.c 0x00000000 Number 0 st7735.o ABSOLUTE
Sound.c 0x00000000 Number 0 sound.o ABSOLUTE
SpaceInvaders.c 0x00000000 Number 0 spaceinvaders.o ABSOLUTE
UART.c 0x00000000 Number 0 uart.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)
!!dclz77c 0x000002c0 Section 100 __dclz77c.o(!!dclz77c)
!!handler_zi 0x00000324 Section 28 __scatter_zi.o(!!handler_zi)
.ARM.Collect$$libinit$$00000000 0x00000340 Section 2 libinit.o(.ARM.Collect$$libinit$$00000000)
.ARM.Collect$$libinit$$00000002 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
.ARM.Collect$$libinit$$00000008 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000008)
.ARM.Collect$$libinit$$0000000A 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
.ARM.Collect$$libinit$$0000000C 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
.ARM.Collect$$libinit$$0000000F 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000F)
.ARM.Collect$$libinit$$00000011 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
.ARM.Collect$$libinit$$00000013 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
.ARM.Collect$$libinit$$00000015 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
.ARM.Collect$$libinit$$00000017 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
.ARM.Collect$$libinit$$00000019 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
.ARM.Collect$$libinit$$0000001B 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
.ARM.Collect$$libinit$$0000001D 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
.ARM.Collect$$libinit$$0000001F 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
.ARM.Collect$$libinit$$00000021 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
.ARM.Collect$$libinit$$00000023 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
.ARM.Collect$$libinit$$0000002A 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002A)
.ARM.Collect$$libinit$$0000002C 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
.ARM.Collect$$libinit$$0000002E 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
.ARM.Collect$$libinit$$00000030 0x00000342 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
.ARM.Collect$$libinit$$00000031 0x00000342 Section 2 libinit2.o(.ARM.Collect$$libinit$$00000031)
.ARM.Collect$$libshutdown$$00000000 0x00000344 Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
.ARM.Collect$$libshutdown$$00000003 0x00000346 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000003)
.ARM.Collect$$libshutdown$$00000006 0x00000346 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
.ARM.Collect$$libshutdown$$00000009 0x00000346 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
.ARM.Collect$$libshutdown$$0000000B 0x00000346 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B)
.ARM.Collect$$libshutdown$$0000000E 0x00000346 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
.ARM.Collect$$libshutdown$$0000000F 0x00000346 Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)
.ARM.Collect$$rtentry$$00000000 0x00000348 Section 0 rtentry.o(.ARM.Collect$$rtentry$$00000000)
.ARM.Collect$$rtentry$$00000002 0x00000348 Section 0 rtentry2.o(.ARM.Collect$$rtentry$$00000002)
.ARM.Collect$$rtentry$$00000004 0x00000348 Section 6 rtentry4.o(.ARM.Collect$$rtentry$$00000004)
.ARM.Collect$$rtentry$$00000009 0x0000034e Section 0 rtentry2.o(.ARM.Collect$$rtentry$$00000009)
.ARM.Collect$$rtentry$$0000000A 0x0000034e Section 4 rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
.ARM.Collect$$rtentry$$0000000C 0x00000352 Section 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
.ARM.Collect$$rtentry$$0000000D 0x00000352 Section 8 rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
.ARM.Collect$$rtexit$$00000000 0x0000035a Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000)
.ARM.Collect$$rtexit$$00000002 0x0000035c Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
.ARM.Collect$$rtexit$$00000003 0x0000035c Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
.ARM.Collect$$rtexit$$00000004 0x00000360 Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
.text 0x00000368 Section 48 startup.o(.text)
.text 0x00000398 Section 76 lcd.o(.text)
.text 0x000003e4 Section 0 heapauxi.o(.text)
.text 0x000003ea Section 74 sys_stackheap_outer.o(.text)
.text 0x00000434 Section 0 exit.o(.text)
.text 0x00000440 Section 8 libspace.o(.text)
.text 0x00000448 Section 0 sys_exit.o(.text)
.text 0x00000454 Section 2 use_no_semi.o(.text)
.text 0x00000456 Section 0 indicate_semi.o(.text)
i.ADC_In 0x00000458 Section 0 adc.o(i.ADC_In)
i.ADC_Init 0x000004a4 Section 0 adc.o(i.ADC_Init)
i.Button_Init 0x00000584 Section 0 hardware.o(i.Button_Init)
i.DAC_Init 0x000006ac Section 0 dac.o(i.DAC_Init)
i.DAC_Out 0x000006fc Section 0 dac.o(i.DAC_Out)
i.Delay1ms 0x0000070c Section 0 st7735.o(i.Delay1ms)
i.EdgeTriggeredPortA_Init 0x0000072c Section 0 hardware.o(i.EdgeTriggeredPortA_Init)
i.EdgeTriggeredPortB_Init 0x00000798 Section 0 hardware.o(i.EdgeTriggeredPortB_Init)
i.EdgeTriggeredPortC_Init 0x00000804 Section 0 hardware.o(i.EdgeTriggeredPortC_Init)
i.EdgeTriggeredPortE_Init 0x00000870 Section 0 hardware.o(i.EdgeTriggeredPortE_Init)
i.EdgeTriggeredPortF_Init 0x000008d8 Section 0 hardware.o(i.EdgeTriggeredPortF_Init)
i.GPIOPortA_Handler 0x000009bc Section 0 spaceinvaders.o(i.GPIOPortA_Handler)
i.GPIOPortB_Handler 0x000009d0 Section 0 spaceinvaders.o(i.GPIOPortB_Handler)
i.GPIOPortC_Handler 0x000009e4 Section 0 spaceinvaders.o(i.GPIOPortC_Handler)
i.GPIOPortE_Handler 0x000009f8 Section 0 spaceinvaders.o(i.GPIOPortE_Handler)
i.GPIOPortF_Handler 0x00000a0c Section 0 spaceinvaders.o(i.GPIOPortF_Handler)
i.Gravity 0x00000aa4 Section 0 spaceinvaders.o(i.Gravity)
i.GravityBomb 0x00000b88 Section 0 spaceinvaders.o(i.GravityBomb)
i.Jump1 0x00000c4c Section 0 spaceinvaders.o(i.Jump1)
i.Jump2 0x00000c80 Section 0 spaceinvaders.o(i.Jump2)
i.MenuScreen 0x00000cb4 Section 0 spaceinvaders.o(i.MenuScreen)
i.PLL_Init 0x00000d10 Section 0 pll.o(i.PLL_Init)
i.ST7735_DrawBitmap 0x00000d8c Section 0 st7735.o(i.ST7735_DrawBitmap)
i.ST7735_DrawCharS 0x00000ed0 Section 0 st7735.o(i.ST7735_DrawCharS)
i.ST7735_DrawPixel 0x00000fc4 Section 0 st7735.o(i.ST7735_DrawPixel)
i.ST7735_DrawString 0x0000100c Section 0 st7735.o(i.ST7735_DrawString)
i.ST7735_FillRect 0x00001064 Section 0 st7735.o(i.ST7735_FillRect)
i.ST7735_FillScreen 0x00001110 Section 0 st7735.o(i.ST7735_FillScreen)
i.ST7735_InitR 0x00001134 Section 0 st7735.o(i.ST7735_InitR)
i.ST7735_OutChar 0x000011b0 Section 0 st7735.o(i.ST7735_OutChar)
i.ST7735_OutString 0x00001284 Section 0 st7735.o(i.ST7735_OutString)
i.ST7735_SetCursor 0x0000129c Section 0 st7735.o(i.ST7735_SetCursor)
i.Select_Level 0x000012bc Section 0 spaceinvaders.o(i.Select_Level)
i.Shoot1 0x00001320 Section 0 spaceinvaders.o(i.Shoot1)
i.Shoot2 0x000013fc Section 0 spaceinvaders.o(i.Shoot2)
i.Sound_Countdown 0x000014d8 Section 0 sound.o(i.Sound_Countdown)
i.Sound_Explosion 0x00001508 Section 0 sound.o(i.Sound_Explosion)
i.Sound_Gameover 0x00001538 Section 0 sound.o(i.Sound_Gameover)
i.Sound_Init 0x00001568 Section 0 sound.o(i.Sound_Init)
i.Sound_Jump 0x00001588 Section 0 sound.o(i.Sound_Jump)
i.Sound_Landing 0x000015b8 Section 0 sound.o(i.Sound_Landing)
i.Sound_Zap 0x000015e8 Section 0 sound.o(i.Sound_Zap)
i.SysTick_Handler 0x00001618 Section 0 sound.o(i.SysTick_Handler)
i.Timer0A_Handler 0x00001654 Section 0 hardware.o(i.Timer0A_Handler)
i.Timer0_Init 0x0000166c Section 0 hardware.o(i.Timer0_Init)
i.Timer1A_Handler 0x000016cc Section 0 hardware.o(i.Timer1A_Handler)
i.Timer1_Init 0x000016e4 Section 0 hardware.o(i.Timer1_Init)
i.Timer2A_Handler 0x00001744 Section 0 hardware.o(i.Timer2A_Handler)
i.Timer2_Init 0x0000175c Section 0 hardware.o(i.Timer2_Init)
i.Timer3A_Handler 0x000017bc Section 0 hardware.o(i.Timer3A_Handler)
i.Timer3_Init 0x000017d4 Section 0 hardware.o(i.Timer3_Init)
i.bitmapBuffer 0x00001834 Section 0 st7735.o(i.bitmapBuffer)
i.commandList 0x000018c4 Section 0 st7735.o(i.commandList)
commandList 0x000018c5 Thumb Code 86 st7735.o(i.commandList)
i.commonInit 0x0000191c Section 0 st7735.o(i.commonInit)
commonInit 0x0000191d Thumb Code 340 st7735.o(i.commonInit)
i.detectPlatform 0x00001aa0 Section 0 spaceinvaders.o(i.detectPlatform)
i.detectPlatformBomb 0x00001cb8 Section 0 spaceinvaders.o(i.detectPlatformBomb)
i.drawBackground 0x00001e64 Section 0 spaceinvaders.o(i.drawBackground)
i.drawBomb 0x00001fa0 Section 0 spaceinvaders.o(i.drawBomb)
i.drawBullet 0x00001fec Section 0 spaceinvaders.o(i.drawBullet)
i.drawFrame 0x000028e0 Section 0 spaceinvaders.o(i.drawFrame)
i.drawLifeBars 0x00002af0 Section 0 spaceinvaders.o(i.drawLifeBars)
i.drawPlatform 0x00002b44 Section 0 spaceinvaders.o(i.drawPlatform)
i.drawPlayers 0x00002b7c Section 0 spaceinvaders.o(i.drawPlayers)
i.drawPortal 0x00002d1c Section 0 spaceinvaders.o(i.drawPortal)
i.explodeBomb1 0x00002d64 Section 0 spaceinvaders.o(i.explodeBomb1)
i.explodeBomb2 0x00002f60 Section 0 spaceinvaders.o(i.explodeBomb2)
i.main 0x0000315c Section 0 spaceinvaders.o(i.main)
i.movePlatforms 0x00003234 Section 0 spaceinvaders.o(i.movePlatforms)
i.movePlayers 0x00003308 Section 0 spaceinvaders.o(i.movePlayers)
i.plantBomb 0x00003448 Section 0 spaceinvaders.o(i.plantBomb)
i.playerCollision 0x00003510 Section 0 spaceinvaders.o(i.playerCollision)
i.pushColor 0x00003660 Section 0 st7735.o(i.pushColor)
pushColor 0x00003661 Thumb Code 18 st7735.o(i.pushColor)
i.rectBuffer 0x00003674 Section 0 st7735.o(i.rectBuffer)
i.setAddrWindow 0x000036c4 Section 0 st7735.o(i.setAddrWindow)
setAddrWindow 0x000036c5 Thumb Code 106 st7735.o(i.setAddrWindow)
i.setDirection 0x00003738 Section 0 spaceinvaders.o(i.setDirection)
.constdata 0x000037b4 Section 15372 sound.o(.constdata)
.constdata 0x000073c0 Section 2114 st7735.o(.constdata)
Font 0x000073c0 Data 1275 st7735.o(.constdata)
Bcmd 0x000078bb Data 103 st7735.o(.constdata)
Rcmd1 0x00007922 Data 59 st7735.o(.constdata)
Rcmd2green 0x0000795d Data 13 st7735.o(.constdata)
Rcmd2red 0x0000796a Data 13 st7735.o(.constdata)
Rcmd3 0x00007977 Data 43 st7735.o(.constdata)
.data 0x20000000 Section 12 sound.o(.data)
.data 0x2000000c Section 9792 spaceinvaders.o(.data)
.data 0x2000264c Section 44 st7735.o(.data)
_width 0x20002656 Data 2 st7735.o(.data)
_height 0x20002658 Data 2 st7735.o(.data)
ColStart 0x20002660 Data 1 st7735.o(.data)
RowStart 0x20002661 Data 1 st7735.o(.data)
Rotation 0x20002662 Data 1 st7735.o(.data)
TabColor 0x20002663 Data 1 st7735.o(.data)
.data 0x20002678 Section 16 hardware.o(.data)
.bss 0x20002688 Section 16 adc.o(.bss)
.bss 0x20002698 Section 20504 spaceinvaders.o(.bss)
.bss 0x200076b0 Section 96 libspace.o(.bss)
HEAP 0x20007710 Section 0 startup.o(HEAP)
STACK 0x20007710 Section 1024 startup.o(STACK)
HeapMem 0x20007710 Data 0 startup.o(HEAP)
StackMem 0x20007710 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)
GPIOPortD_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)
Timer0B_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)
Timer3B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer4A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer4B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer5A_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)
__decompress 0x000002c1 Thumb Code 100 __dclz77c.o(!!dclz77c)
__decompress2 0x000002c1 Thumb Code 0 __dclz77c.o(!!dclz77c)
__scatterload_zeroinit 0x00000325 Thumb Code 28 __scatter_zi.o(!!handler_zi)
__rt_lib_init 0x00000341 Thumb Code 0 libinit.o(.ARM.Collect$$libinit$$00000000)
__rt_lib_init_alloca_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
__rt_lib_init_argv_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002A)
__rt_lib_init_atexit_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
__rt_lib_init_clock_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
__rt_lib_init_cpp_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
__rt_lib_init_exceptions_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
__rt_lib_init_fp_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
__rt_lib_init_fp_trap_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
__rt_lib_init_getenv_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
__rt_lib_init_heap_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000008)
__rt_lib_init_lc_collate_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000F)
__rt_lib_init_lc_ctype_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
__rt_lib_init_lc_monetary_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
__rt_lib_init_lc_numeric_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
__rt_lib_init_lc_time_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
__rt_lib_init_rand_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
__rt_lib_init_return 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000031)
__rt_lib_init_signal_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
__rt_lib_init_stdio_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
__rt_lib_init_user_alloc_1 0x00000343 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
__rt_lib_shutdown 0x00000345 Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
__rt_lib_shutdown_fp_trap_1 0x00000347 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
__rt_lib_shutdown_heap_1 0x00000347 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
__rt_lib_shutdown_return 0x00000347 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)
__rt_lib_shutdown_signal_1 0x00000347 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
__rt_lib_shutdown_stdio_1 0x00000347 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000003)
__rt_lib_shutdown_user_alloc_1 0x00000347 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B)
__rt_entry 0x00000349 Thumb Code 0 rtentry.o(.ARM.Collect$$rtentry$$00000000)
__rt_entry_presh_1 0x00000349 Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$00000002)
__rt_entry_sh 0x00000349 Thumb Code 0 rtentry4.o(.ARM.Collect$$rtentry$$00000004)
__rt_entry_li 0x0000034f Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
__rt_entry_postsh_1 0x0000034f Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$00000009)
__rt_entry_main 0x00000353 Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
__rt_entry_postli_1 0x00000353 Thumb Code 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
__rt_exit 0x0000035b Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000)
__rt_exit_ls 0x0000035d Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
__rt_exit_prels_1 0x0000035d Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
__rt_exit_exit 0x00000361 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
DisableInterrupts 0x00000369 Thumb Code 0 startup.o(.text)
EnableInterrupts 0x0000036d Thumb Code 0 startup.o(.text)
StartCritical 0x00000371 Thumb Code 0 startup.o(.text)
EndCritical 0x00000379 Thumb Code 0 startup.o(.text)
WaitForInterrupt 0x0000037f Thumb Code 0 startup.o(.text)
__user_initial_stackheap 0x00000383 Thumb Code 0 startup.o(.text)
writecommand 0x00000399 Thumb Code 0 lcd.o(.text)
writedata 0x000003bf Thumb Code 0 lcd.o(.text)
__use_two_region_memory 0x000003e5 Thumb Code 2 heapauxi.o(.text)
__rt_heap_escrow$2region 0x000003e7 Thumb Code 2 heapauxi.o(.text)
__rt_heap_expand$2region 0x000003e9 Thumb Code 2 heapauxi.o(.text)
__user_setup_stackheap 0x000003eb Thumb Code 74 sys_stackheap_outer.o(.text)
exit 0x00000435 Thumb Code 12 exit.o(.text)
__user_libspace 0x00000441 Thumb Code 8 libspace.o(.text)
__user_perproc_libspace 0x00000441 Thumb Code 0 libspace.o(.text)
__user_perthread_libspace 0x00000441 Thumb Code 0 libspace.o(.text)
_sys_exit 0x00000449 Thumb Code 8 sys_exit.o(.text)
__I$use$semihosting 0x00000455 Thumb Code 0 use_no_semi.o(.text)
__use_no_semihosting_swi 0x00000455 Thumb Code 2 use_no_semi.o(.text)
__semihosting_library_function 0x00000457 Thumb Code 0 indicate_semi.o(.text)
ADC_In 0x00000459 Thumb Code 68 adc.o(i.ADC_In)
ADC_Init 0x000004a5 Thumb Code 200 adc.o(i.ADC_Init)
Button_Init 0x00000585 Thumb Code 246 hardware.o(i.Button_Init)
DAC_Init 0x000006ad Thumb Code 68 dac.o(i.DAC_Init)
DAC_Out 0x000006fd Thumb Code 10 dac.o(i.DAC_Out)
Delay1ms 0x0000070d Thumb Code 32 st7735.o(i.Delay1ms)
EdgeTriggeredPortA_Init 0x0000072d Thumb Code 94 hardware.o(i.EdgeTriggeredPortA_Init)
EdgeTriggeredPortB_Init 0x00000799 Thumb Code 94 hardware.o(i.EdgeTriggeredPortB_Init)
EdgeTriggeredPortC_Init 0x00000805 Thumb Code 94 hardware.o(i.EdgeTriggeredPortC_Init)
EdgeTriggeredPortE_Init 0x00000871 Thumb Code 90 hardware.o(i.EdgeTriggeredPortE_Init)
EdgeTriggeredPortF_Init 0x000008d9 Thumb Code 208 hardware.o(i.EdgeTriggeredPortF_Init)
GPIOPortA_Handler 0x000009bd Thumb Code 16 spaceinvaders.o(i.GPIOPortA_Handler)
GPIOPortB_Handler 0x000009d1 Thumb Code 16 spaceinvaders.o(i.GPIOPortB_Handler)
GPIOPortC_Handler 0x000009e5 Thumb Code 14 spaceinvaders.o(i.GPIOPortC_Handler)
GPIOPortE_Handler 0x000009f9 Thumb Code 14 spaceinvaders.o(i.GPIOPortE_Handler)
GPIOPortF_Handler 0x00000a0d Thumb Code 104 spaceinvaders.o(i.GPIOPortF_Handler)
Gravity 0x00000aa5 Thumb Code 204 spaceinvaders.o(i.Gravity)
GravityBomb 0x00000b89 Thumb Code 182 spaceinvaders.o(i.GravityBomb)
Jump1 0x00000c4d Thumb Code 38 spaceinvaders.o(i.Jump1)
Jump2 0x00000c81 Thumb Code 38 spaceinvaders.o(i.Jump2)
MenuScreen 0x00000cb5 Thumb Code 58 spaceinvaders.o(i.MenuScreen)
PLL_Init 0x00000d11 Thumb Code 118 pll.o(i.PLL_Init)
ST7735_DrawBitmap 0x00000d8d Thumb Code 314 st7735.o(i.ST7735_DrawBitmap)
ST7735_DrawCharS 0x00000ed1 Thumb Code 232 st7735.o(i.ST7735_DrawCharS)
ST7735_DrawPixel 0x00000fc5 Thumb Code 64 st7735.o(i.ST7735_DrawPixel)
ST7735_DrawString 0x0000100d Thumb Code 86 st7735.o(i.ST7735_DrawString)
ST7735_FillRect 0x00001065 Thumb Code 164 st7735.o(i.ST7735_FillRect)
ST7735_FillScreen 0x00001111 Thumb Code 28 st7735.o(i.ST7735_FillScreen)
ST7735_InitR 0x00001135 Thumb Code 90 st7735.o(i.ST7735_InitR)
ST7735_OutChar 0x000011b1 Thumb Code 176 st7735.o(i.ST7735_OutChar)
ST7735_OutString 0x00001285 Thumb Code 24 st7735.o(i.ST7735_OutString)
ST7735_SetCursor 0x0000129d Thumb Code 22 st7735.o(i.ST7735_SetCursor)
Select_Level 0x000012bd Thumb Code 86 spaceinvaders.o(i.Select_Level)
Shoot1 0x00001321 Thumb Code 202 spaceinvaders.o(i.Shoot1)
Shoot2 0x000013fd Thumb Code 202 spaceinvaders.o(i.Shoot2)
Sound_Countdown 0x000014d9 Thumb Code 30 sound.o(i.Sound_Countdown)
Sound_Explosion 0x00001509 Thumb Code 30 sound.o(i.Sound_Explosion)
Sound_Gameover 0x00001539 Thumb Code 30 sound.o(i.Sound_Gameover)
Sound_Init 0x00001569 Thumb Code 30 sound.o(i.Sound_Init)
Sound_Jump 0x00001589 Thumb Code 30 sound.o(i.Sound_Jump)
Sound_Landing 0x000015b9 Thumb Code 30 sound.o(i.Sound_Landing)
Sound_Zap 0x000015e9 Thumb Code 30 sound.o(i.Sound_Zap)
SysTick_Handler 0x00001619 Thumb Code 48 sound.o(i.SysTick_Handler)
Timer0A_Handler 0x00001655 Thumb Code 16 hardware.o(i.Timer0A_Handler)
Timer0_Init 0x0000166d Thumb Code 76 hardware.o(i.Timer0_Init)
Timer1A_Handler 0x000016cd Thumb Code 16 hardware.o(i.Timer1A_Handler)
Timer1_Init 0x000016e5 Thumb Code 76 hardware.o(i.Timer1_Init)
Timer2A_Handler 0x00001745 Thumb Code 16 hardware.o(i.Timer2A_Handler)
Timer2_Init 0x0000175d Thumb Code 76 hardware.o(i.Timer2_Init)
Timer3A_Handler 0x000017bd Thumb Code 16 hardware.o(i.Timer3A_Handler)
Timer3_Init 0x000017d5 Thumb Code 74 hardware.o(i.Timer3_Init)
bitmapBuffer 0x00001835 Thumb Code 136 st7735.o(i.bitmapBuffer)
detectPlatform 0x00001aa1 Thumb Code 512 spaceinvaders.o(i.detectPlatform)
detectPlatformBomb 0x00001cb9 Thumb Code 416 spaceinvaders.o(i.detectPlatformBomb)
drawBackground 0x00001e65 Thumb Code 302 spaceinvaders.o(i.drawBackground)
drawBomb 0x00001fa1 Thumb Code 66 spaceinvaders.o(i.drawBomb)
drawBullet 0x00001fed Thumb Code 2288 spaceinvaders.o(i.drawBullet)
drawFrame 0x000028e1 Thumb Code 466 spaceinvaders.o(i.drawFrame)
drawLifeBars 0x00002af1 Thumb Code 80 spaceinvaders.o(i.drawLifeBars)
drawPlatform 0x00002b45 Thumb Code 54 spaceinvaders.o(i.drawPlatform)
drawPlayers 0x00002b7d Thumb Code 388 spaceinvaders.o(i.drawPlayers)
drawPortal 0x00002d1d Thumb Code 72 spaceinvaders.o(i.drawPortal)
explodeBomb1 0x00002d65 Thumb Code 490 spaceinvaders.o(i.explodeBomb1)
explodeBomb2 0x00002f61 Thumb Code 492 spaceinvaders.o(i.explodeBomb2)
main 0x0000315d Thumb Code 148 spaceinvaders.o(i.main)
movePlatforms 0x00003235 Thumb Code 206 spaceinvaders.o(i.movePlatforms)
movePlayers 0x00003309 Thumb Code 302 spaceinvaders.o(i.movePlayers)
plantBomb 0x00003449 Thumb Code 180 spaceinvaders.o(i.plantBomb)
playerCollision 0x00003511 Thumb Code 332 spaceinvaders.o(i.playerCollision)
rectBuffer 0x00003675 Thumb Code 70 st7735.o(i.rectBuffer)
setDirection 0x00003739 Thumb Code 116 spaceinvaders.o(i.setDirection)
jump 0x000037b4 Data 1103 sound.o(.constdata)
zap 0x00003c03 Data 1200 sound.o(.constdata)
explosion 0x000040b3 Data 2205 sound.o(.constdata)
landing 0x00004950 Data 2205 sound.o(.constdata)
gameover 0x000051ed Data 4800 sound.o(.constdata)
countdown 0x000064ad Data 3859 sound.o(.constdata)
smallCircle 0x000079a2 Data 36 st7735.o(.constdata)
circle 0x000079c6 Data 60 st7735.o(.constdata)
dBfs 0x00007a02 Data 512 st7735.o(.constdata)
Region$$Table$$Base 0x00007c04 Number 0 anon$$obj.o(Region$$Table)
Region$$Table$$Limit 0x00007c24 Number 0 anon$$obj.o(Region$$Table)
sound 0x20000000 Data 4 sound.o(.data)
num 0x20000004 Data 4 sound.o(.data)
soundindex 0x20000008 Data 4 sound.o(.data)
bgBottom 0x2000000c Data 1664 spaceinvaders.o(.data)
bgMid1 0x2000068c Data 198 spaceinvaders.o(.data)
bgMid2 0x20000752 Data 528 spaceinvaders.o(.data)
Player1left 0x20000962 Data 432 spaceinvaders.o(.data)
Player1right 0x20000b12 Data 432 spaceinvaders.o(.data)
Player2left 0x20000cc2 Data 432 spaceinvaders.o(.data)
Player2right 0x20000e72 Data 432 spaceinvaders.o(.data)
splash 0x20001022 Data 4836 spaceinvaders.o(.data)
bombSp 0x20002306 Data 64 spaceinvaders.o(.data)
boom 0x20002346 Data 506 spaceinvaders.o(.data)
GameOver 0x20002540 Data 1 spaceinvaders.o(.data)
Level 0x20002541 Data 1 spaceinvaders.o(.data)
platform 0x20002542 Data 60 spaceinvaders.o(.data)
p1ammo 0x2000257e Data 70 spaceinvaders.o(.data)
p2ammo 0x200025c4 Data 70 spaceinvaders.o(.data)
player 0x2000260a Data 24 spaceinvaders.o(.data)
portal 0x20002622 Data 4 spaceinvaders.o(.data)
moveSpeed 0x20002626 Data 2 spaceinvaders.o(.data)
gravityArray 0x20002628 Data 9 spaceinvaders.o(.data)
gravityIndex 0x20002631 Data 2 spaceinvaders.o(.data)
gravityIndexBomb 0x20002633 Data 2 spaceinvaders.o(.data)
jumpArray 0x20002635 Data 14 spaceinvaders.o(.data)
jumpIndex 0x20002643 Data 2 spaceinvaders.o(.data)
jumpStatus 0x20002645 Data 2 spaceinvaders.o(.data)
drawIdx1 0x20002647 Data 1 spaceinvaders.o(.data)
drawIdx2 0x20002648 Data 1 spaceinvaders.o(.data)
Countdown 0x20002649 Data 2 spaceinvaders.o(.data)
hardfault 0x2000264b Data 1 spaceinvaders.o(.data)
StX 0x2000264c Data 4 st7735.o(.data)
StY 0x20002650 Data 4 st7735.o(.data)
StTextColor 0x20002654 Data 2 st7735.o(.data)
lastj 0x2000265c Data 4 st7735.o(.data)
Messageindex 0x20002664 Data 4 st7735.o(.data)
Ymax 0x20002668 Data 4 st7735.o(.data)
Ymin 0x2000266c Data 4 st7735.o(.data)
X 0x20002670 Data 4 st7735.o(.data)
Yrange 0x20002674 Data 4 st7735.o(.data)
PeriodicTask0 0x20002678 Data 4 hardware.o(.data)
PeriodicTask1 0x2000267c Data 4 hardware.o(.data)
PeriodicTask2 0x20002680 Data 4 hardware.o(.data)
PeriodicTask3 0x20002684 Data 4 hardware.o(.data)
ADCvalue 0x20002688 Data 16 adc.o(.bss)
buffer 0x20002698 Data 20480 spaceinvaders.o(.bss)
bomb 0x20007698 Data 24 spaceinvaders.o(.bss)
__libspace_start 0x200076b0 Data 96 libspace.o(.bss)
__temporary_stack_top$libspace 0x20007710 Data 0 libspace.o(.bss)
==============================================================================
Memory Map of the image
Image Entry point : 0x0000026d
Load Region LR_1 (Base: 0x00000000, Size: 0x0000a2ac, Max: 0xffffffff, ABSOLUTE, COMPRESSED[0x000080cc])