-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLab6.map
1462 lines (1405 loc) · 125 KB
/
Lab6.map
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ARM Linker, 5.03 [Build 76] [MDK-ARM Lite]
==============================================================================
Section Cross References
startup.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(RESET) refers to startup.o(STACK) for StackMem
startup.o(RESET) refers to connect4.o(i.ADC0Seq3_Handler) for ADC0Seq3_Handler
startup.o(RESET) refers to connect4.o(i.GPIOPortF_Handler) for GPIOPortF_Handler
startup.o(RESET) refers to texas.o(i.Timer5A_Handler) for Timer5A_Handler
startup.o(RESET) refers to __main.o(!!!main) for __main
startup.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup.o(.text) refers to startup.o(HEAP) for HeapMem
startup.o(.text) refers to startup.o(STACK) for StackMem
connect4.o(i.ADC0Seq3_Handler) refers to game.o(.data) for adc_val
connect4.o(i.GPIOPortF_Handler) refers to gptm_driver.o(i.TIMER0_INIT) for TIMER0_INIT
connect4.o(i.GPIOPortF_Handler) refers to game.o(.data) for sw1_pressed
connect4.o(i.main) refers to gpio.o(i.GPIO_Init) for GPIO_Init
connect4.o(i.main) refers to adc.o(i.Adc_init) for Adc_init
connect4.o(i.main) refers to oled_i2c.o(i.I2C3_Init) for I2C3_Init
connect4.o(i.main) refers to oled_i2c.o(i.OLED_Init) for OLED_Init
connect4.o(i.main) refers to oled_i2c.o(i.OLED_Clear) for OLED_Clear
connect4.o(i.main) refers to nokia5110.o(i.Nokia5110_Init) for Nokia5110_Init
connect4.o(i.main) refers to nokia5110.o(i.Nokia5110_Clear) for Nokia5110_Clear
connect4.o(i.main) refers to game.o(i.startingScreen) for startingScreen
connect4.o(i.main) refers to game.o(i.printBoard) for printBoard
connect4.o(i.main) refers to game.o(i.takeTurn) for takeTurn
connect4.o(i.main) refers to game.o(i.checkWin) for checkWin
connect4.o(i.main) refers to led.o(i.LED_Init) for LED_Init
connect4.o(i.main) refers to led.o(i.LED_On) for LED_On
connect4.o(i.main) refers to nokia5110.o(i.Nokia5110_OutString) for Nokia5110_OutString
connect4.o(i.main) refers to nokia5110.o(i.Nokia5110_SetCursor) for Nokia5110_SetCursor
connect4.o(i.main) refers to pwm.o(i.PWM_init) for PWM_init
connect4.o(i.main) refers to oled_i2c.o(i.OLED_YX) for OLED_YX
connect4.o(i.main) refers to oled_i2c.o(i.OLED_Write_String) for OLED_Write_String
connect4.o(i.main) refers to led.o(i.LED_Off) for LED_Off
connect4.o(i.main) refers to connect4.o(.data) for i
connect4.o(i.main) refers to connect4.o(.bss) for board1
connect4.o(i.main) refers to game.o(.data) for sw1_pressed
connect4.o(.data) refers to connect4.o(.conststring) for .conststring
game.o(i.checkWin) refers to game.o(i.horizontalCheck) for horizontalCheck
game.o(i.checkWin) refers to game.o(i.verticalCheck) for verticalCheck
game.o(i.checkWin) refers to game.o(i.diagonalCheck) for diagonalCheck
game.o(i.diagonalCheck) refers to game.o(i.checkFour) for checkFour
game.o(i.horizontalCheck) refers to game.o(i.checkFour) for checkFour
game.o(i.printBoard) refers to nokia5110.o(i.Nokia5110_ClearBuffer) for Nokia5110_ClearBuffer
game.o(i.printBoard) refers to nokia5110.o(i.Nokia5110_SetCursorChar) for Nokia5110_SetCursorChar
game.o(i.startingScreen) refers to nokia5110.o(i.Nokia5110_SetCursor) for Nokia5110_SetCursor
game.o(i.startingScreen) refers to nokia5110.o(i.Nokia5110_ClearBuffer) for Nokia5110_ClearBuffer
game.o(i.startingScreen) refers to nokia5110.o(i.Nokia5110_DisplayBuffer) for Nokia5110_DisplayBuffer
game.o(i.startingScreen) refers to nokia5110.o(i.Nokia5110_OutString) for Nokia5110_OutString
game.o(i.startingScreen) refers to gptm_driver.o(i.TIMER0_INIT) for TIMER0_INIT
game.o(i.takeTurn) refers to nokia5110.o(i.Nokia5110_SetCursorChar) for Nokia5110_SetCursorChar
game.o(i.takeTurn) refers to gptm_driver.o(i.TIMER0_INIT) for TIMER0_INIT
game.o(i.takeTurn) refers to game.o(i.changeBoard) for changeBoard
game.o(i.takeTurn) refers to game.o(.data) for col
game.o(i.verticalCheck) refers to game.o(i.checkFour) for checkFour
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_EnablePortClock) for GPIO_EnablePortClock
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_UnlockPort) for GPIO_UnlockPort
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_AllowChanges) for GPIO_AllowChanges
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_SetAnalogFunction) for GPIO_SetAnalogFunction
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_ClearPinControl) for GPIO_ClearPinControl
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_SetPinDirection) for GPIO_SetPinDirection
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_DisableAlternateFunction) for GPIO_DisableAlternateFunction
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_EnablePullUp) for GPIO_EnablePullUp
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_EnableDigital) for GPIO_EnableDigital
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_SetInterruptSense) for GPIO_SetInterruptSense
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_SetInterruptBothEdges) for GPIO_SetInterruptBothEdges
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_SetInterruptEvent) for GPIO_SetInterruptEvent
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_ClearInterruptFlags) for GPIO_ClearInterruptFlags
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_EnableInterrupt) for GPIO_EnableInterrupt
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_SetInterruptPriority) for GPIO_SetInterruptPriority
gpio.o(i.GPIO_Init) refers to gpio.o(i.GPIO_EnableInterruptInNVIC) for GPIO_EnableInterruptInNVIC
led.o(i.LED_Init) refers to gpio.o(i.GPIO_EnablePortClock) for GPIO_EnablePortClock
led.o(i.LED_Init) refers to gpio.o(i.GPIO_UnlockPort) for GPIO_UnlockPort
led.o(i.LED_Init) refers to gpio.o(i.GPIO_EnableDigital) for GPIO_EnableDigital
led.o(i.LED_Init) refers to gpio.o(i.GPIO_SetPinDirection) for GPIO_SetPinDirection
led.o(i.LED_Init) refers to gpio.o(i.GPIO_SetAnalogFunction) for GPIO_SetAnalogFunction
led.o(i.LED_Init) refers to gpio.o(i.GPIO_DisableAlternateFunction) for GPIO_DisableAlternateFunction
nokia5110.o(i.Nokia5110_Clear) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_Clear) refers to nokia5110.o(i.Nokia5110_SetCursor) for Nokia5110_SetCursor
nokia5110.o(i.Nokia5110_ClearBuffer) refers to nokia5110.o(.bss) for Screen
nokia5110.o(i.Nokia5110_DisplayBuffer) refers to nokia5110.o(i.Nokia5110_DrawFullImage) for Nokia5110_DrawFullImage
nokia5110.o(i.Nokia5110_DisplayBuffer) refers to nokia5110.o(.bss) for Screen
nokia5110.o(i.Nokia5110_DrawFullImage) refers to nokia5110.o(i.Nokia5110_SetCursor) for Nokia5110_SetCursor
nokia5110.o(i.Nokia5110_DrawFullImage) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_Init) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_OutChar) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_OutChar) refers to nokia5110.o(.constdata) for ASCII
nokia5110.o(i.Nokia5110_OutChar2) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_OutChar2) refers to nokia5110.o(.constdata) for ASCII
nokia5110.o(i.Nokia5110_OutString) refers to nokia5110.o(i.Nokia5110_OutChar) for Nokia5110_OutChar
nokia5110.o(i.Nokia5110_OutUDec) refers to nokia5110.o(i.Nokia5110_OutString) for Nokia5110_OutString
nokia5110.o(i.Nokia5110_OutUDec) refers to nokia5110.o(i.Nokia5110_OutChar) for Nokia5110_OutChar
nokia5110.o(i.Nokia5110_PrintBMP) refers to nokia5110.o(.bss) for Screen
nokia5110.o(i.Nokia5110_SetCursor) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_SetCursorChar) refers to nokia5110.o(i.lcdwrite) for lcdwrite
nokia5110.o(i.Nokia5110_SetCursorChar) refers to nokia5110.o(i.Nokia5110_OutChar) for Nokia5110_OutChar
nokia5110.o(i.Nokia5110_SetCursorChar) refers to nokia5110.o(i.Nokia5110_OutChar2) for Nokia5110_OutChar2
adc.o(i.Adc_init) refers to gpio.o(i.GPIO_EnableAlternateFunction) for GPIO_EnableAlternateFunction
adc.o(i.Adc_init) refers to gpio.o(i.GPIO_DisableDigital) for GPIO_DisableDigital
adc.o(i.Adc_init) refers to gpio.o(i.GPIO_SetAnalogFunction) for GPIO_SetAnalogFunction
adc.o(i.Adc_init) refers to startup.o(.text) for EnableInterrupts
pwm.o(i.PWM_init) refers to gpio.o(i.GPIO_EnableAlternateFunction) for GPIO_EnableAlternateFunction
pwm.o(i.PWM_init) refers to gpio.o(i.GPIO_ClearPinControl) for GPIO_ClearPinControl
pwm.o(i.PWM_init) refers to gpio.o(i.GPIO_SetPinControl) for GPIO_SetPinControl
pwm.o(i.PWM_init) refers to gpio.o(i.GPIO_EnableDigital) for GPIO_EnableDigital
gptm_driver.o(i.GPTM0_Delay_Unit) refers to gptm_driver.o(i.Timer0_Number_Ticks) for Timer0_Number_Ticks
gptm_driver.o(i.GPTM0_Delay_Unit) refers to gptm_driver.o(.data) for k
gptm_driver.o(i.TIMER0_INIT) refers to gptm_driver.o(i.Timer0_Number_Option) for Timer0_Number_Option
gptm_driver.o(i.TIMER0_INIT) refers to gptm_driver.o(i.Timer0_Number_Mode) for Timer0_Number_Mode
gptm_driver.o(i.TIMER0_INIT) refers to gptm_driver.o(i.GPTM0_Delay_Unit) for GPTM0_Delay_Unit
gptm_driver.o(i.TIMER0_INIT) refers to gptm_driver.o(.data) for k
gptm_driver.o(i.Timer0_Number_Mode) refers to strcmpv7m.o(.text) for strcmp
gptm_driver.o(i.Timer0_Number_Option) refers to strcmpv7m.o(.text) for strcmp
gptm_driver.o(i.Timer0_Number_Ticks) refers to gptm_driver.o(.data) for k
oled_i2c.o(i.I2C3_Wr) refers to oled_i2c.o(i.I2C_wait_till_done) for I2C_wait_till_done
oled_i2c.o(i.I2C3_Write_Multiple) refers to oled_i2c.o(i.I2C_wait_till_done) for I2C_wait_till_done
oled_i2c.o(i.OLED_Clear) refers to oled_i2c.o(i.OLED_YX) for OLED_YX
oled_i2c.o(i.OLED_Clear) refers to oled_i2c.o(i.OLED_PutChar) for OLED_PutChar
oled_i2c.o(i.OLED_Command) refers to oled_i2c.o(i.I2C3_Wr) for I2C3_Wr
oled_i2c.o(i.OLED_Data) refers to oled_i2c.o(i.I2C3_Wr) for I2C3_Wr
oled_i2c.o(i.OLED_Init) refers to oled_i2c.o(i.OLED_Command) for OLED_Command
oled_i2c.o(i.OLED_PutChar) refers to rt_memmove_v6.o(.text) for __aeabi_memmove
oled_i2c.o(i.OLED_PutChar) refers to oled_i2c.o(i.I2C3_Write_Multiple) for I2C3_Write_Multiple
oled_i2c.o(i.OLED_PutChar) refers to oled_i2c.o(.constdata) for OledFont
oled_i2c.o(i.OLED_Write_Float) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
oled_i2c.o(i.OLED_Write_Float) refers to _printf_f.o(.ARM.Collect$$_printf_percent$$00000003) for _printf_f
oled_i2c.o(i.OLED_Write_Float) refers to printf1.o(x$fpl$printf1) for _printf_fp_dec
oled_i2c.o(i.OLED_Write_Float) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
oled_i2c.o(i.OLED_Write_Float) refers to noretval__2sprintf.o(.text) for __2sprintf
oled_i2c.o(i.OLED_Write_Float) refers to oled_i2c.o(i.OLED_Write_String) for OLED_Write_String
oled_i2c.o(i.OLED_Write_Integer) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
oled_i2c.o(i.OLED_Write_Integer) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d
oled_i2c.o(i.OLED_Write_Integer) refers to _printf_dec.o(.text) for _printf_int_dec
oled_i2c.o(i.OLED_Write_Integer) refers to noretval__2sprintf.o(.text) for __2sprintf
oled_i2c.o(i.OLED_Write_Integer) refers to oled_i2c.o(i.OLED_Write_String) for OLED_Write_String
oled_i2c.o(i.OLED_Write_String) refers to oled_i2c.o(i.OLED_PutChar) for OLED_PutChar
oled_i2c.o(i.OLED_YX) refers to oled_i2c.o(i.OLED_Command) for OLED_Command
gg.o(i.GPIOIntRegister) refers to gg.o(i._GPIOIntNumberGet) for _GPIOIntNumberGet
gg.o(i.GPIOIntRegister) refers to interrupt.o(i.IntRegister) for IntRegister
gg.o(i.GPIOIntRegister) refers to interrupt.o(i.IntEnable) for IntEnable
gg.o(i.GPIOIntUnregister) refers to gg.o(i._GPIOIntNumberGet) for _GPIOIntNumberGet
gg.o(i.GPIOIntUnregister) refers to interrupt.o(i.IntDisable) for IntDisable
gg.o(i.GPIOIntUnregister) refers to interrupt.o(i.IntUnregister) for IntUnregister
gg.o(i.GPIOPinConfigure) refers to gg.o(.constdata) for g_pui32GPIOBaseAddrs
gg.o(i.GPIOPinTypeADC) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeADC) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeCAN) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeCAN) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeCIR) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeCIR) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeComparator) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeComparator) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeEPI) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeEPI) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeEthernetLED) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeEthernetLED) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeEthernetMII) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeEthernetMII) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeGPIOInput) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeGPIOInput) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeGPIOOutput) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeGPIOOutput) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeGPIOOutputOD) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeGPIOOutputOD) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeI2C) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeI2C) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeI2CSCL) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeI2CSCL) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeKBColumn) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeKBColumn) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeKBRow) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeKBRow) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeLCD) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeLCD) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeLEDSeq) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeLEDSeq) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeLPC) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeLPC) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypePECIRx) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypePECIRx) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypePECITx) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypePECITx) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypePWM) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypePWM) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeQEI) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeQEI) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeSSI) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeSSI) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeTimer) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeTimer) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeUART) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeUART) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeUSBAnalog) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeUSBAnalog) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeUSBDigital) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeUSBDigital) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeWakeHigh) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeWakeHigh) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i.GPIOPinTypeWakeLow) refers to gg.o(i.GPIODirModeSet) for GPIODirModeSet
gg.o(i.GPIOPinTypeWakeLow) refers to gg.o(i.GPIOPadConfigSet) for GPIOPadConfigSet
gg.o(i._GPIOIntNumberGet) refers to gg.o(.constdata) for g_ppui32GPIOIntMapBlizzard
i2c.o(i.I2CIntRegister) refers to i2c.o(i._I2CIntNumberGet) for _I2CIntNumberGet
i2c.o(i.I2CIntRegister) refers to interrupt.o(i.IntRegister) for IntRegister
i2c.o(i.I2CIntRegister) refers to interrupt.o(i.IntEnable) for IntEnable
i2c.o(i.I2CIntUnregister) refers to i2c.o(i._I2CIntNumberGet) for _I2CIntNumberGet
i2c.o(i.I2CIntUnregister) refers to interrupt.o(i.IntDisable) for IntDisable
i2c.o(i.I2CIntUnregister) refers to interrupt.o(i.IntUnregister) for IntUnregister
i2c.o(i.I2CMasterInitExpClk) refers to i2c.o(i.I2CMasterEnable) for I2CMasterEnable
i2c.o(i.I2CSlaveInit) refers to i2c.o(i.I2CSlaveEnable) for I2CSlaveEnable
i2c.o(i._I2CIntNumberGet) refers to i2c.o(.constdata) for g_ppui32I2CIntMap
interrupt.o(i.IntDisable) refers to interrupt.o(.constdata) for g_pui32Dii16Regs
interrupt.o(i.IntEnable) refers to interrupt.o(.constdata) for g_pui32EnRegs
interrupt.o(i.IntIsEnabled) refers to interrupt.o(.constdata) for g_pui32EnRegs
interrupt.o(i.IntMasterDisable) refers to cpu.o(.emb_text) for CPUcpsid
interrupt.o(i.IntMasterEnable) refers to cpu.o(.emb_text) for CPUcpsie
interrupt.o(i.IntPendClear) refers to interrupt.o(.constdata) for g_pui32UnpendRegs
interrupt.o(i.IntPendSet) refers to interrupt.o(.constdata) for g_pui32PendRegs
interrupt.o(i.IntPriorityGet) refers to interrupt.o(.constdata) for g_pui32Regs
interrupt.o(i.IntPriorityGroupingGet) refers to interrupt.o(.constdata) for g_pui32Priority
interrupt.o(i.IntPriorityGroupingSet) refers to interrupt.o(.constdata) for g_pui32Priority
interrupt.o(i.IntPriorityMaskGet) refers to cpu.o(.emb_text) for CPUbasepriGet
interrupt.o(i.IntPriorityMaskSet) refers to cpu.o(.emb_text) for CPUbasepriSet
interrupt.o(i.IntPrioritySet) refers to interrupt.o(.constdata) for g_pui32Regs
interrupt.o(i.IntRegister) refers to interrupt.o(vtable) for g_pfnRAMVectors
interrupt.o(i.IntUnregister) refers to interrupt.o(i._IntDefaultHandler) for _IntDefaultHandler
interrupt.o(i.IntUnregister) refers to interrupt.o(vtable) for g_pfnRAMVectors
texas.o(i.Decrypt) refers to texas.o(.bss) for EncriptedMagicCode
texas.o(i.Decrypt) refers to texas.o(.constdata) for DeScramble
texas.o(i.Encrypt) refers to texas.o(i.SetCode) for SetCode
texas.o(i.Encrypt) refers to texas.o(.bss) for MagicCode
texas.o(i.Encrypt) refers to texas.o(.constdata) for Key
texas.o(i.SetCode) refers to texas.o(.bss) for TExaS
texas.o(i.SetCourse) refers to texas.o(.bss) for TExaS
texas.o(i.SetGrade) refers to texas.o(i.Encrypt) for Encrypt
texas.o(i.SetGrade) refers to texas.o(.bss) for MagicCode
texas.o(i.SetMode) refers to texas.o(.bss) for TExaS
texas.o(i.TExaS_Init) refers to texas.o(i.PLL_Init) for PLL_Init
texas.o(i.TExaS_Init) refers to texas.o(i.SetCourse) for SetCourse
texas.o(i.TExaS_Init) refers to texas.o(i.SetCode) for SetCode
texas.o(i.TExaS_Init) refers to texas.o(i.ADC1_Init) for ADC1_Init
texas.o(i.TExaS_Init) refers to texas.o(.constdata) for IntroMsg
texas.o(i.TExaS_Init) refers to texas.o(.bss) for TExaS
texas.o(i.TExaS_Init) refers to texas.o(.data) for LastMode
texas.o(i.Timer5A_Handler) refers to texas.o(i.ADC1_In) for ADC1_In
texas.o(i.Timer5A_Handler) refers to texas.o(i.SetGrade) for SetGrade
texas.o(i.Timer5A_Handler) refers to texas.o(.data) for TExaS_Period
texas.o(i.Timer5A_Handler) refers to texas.o(.bss) for TExaS
texas.o(i.Timer5A_Handler) refers to texas.o(.constdata) for BlankMsg
__2sprintf.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
__2sprintf.o(.text) refers to _sputc.o(.text) for _sputc
noretval__2sprintf.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
noretval__2sprintf.o(.text) refers to _sputc.o(.text) for _sputc
__printf.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
_printf_dec.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
__printf_flags.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags.o(.text) refers to __printf_flags.o(.constdata) for .constdata
__printf_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss.o(.text) refers to __printf_flags_ss.o(.constdata) for .constdata
__printf_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_flags_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_wp.o(.text) refers to __printf_flags_wp.o(.constdata) for .constdata
__printf_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_flags_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss_wp.o(.text) refers to __printf_flags_ss_wp.o(.constdata) for .constdata
_printf_d.o(.ARM.Collect$$_printf_percent$$00000009) refers (Weak) to _printf_dec.o(.text) for _printf_int_dec
_printf_f.o(.ARM.Collect$$_printf_percent$$00000003) refers (Weak) to printf1.o(x$fpl$printf1) for _printf_fp_dec
_printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) refers (Special) to _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017) for _printf_percent_end
rt_memmove_v6.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
rt_memmove_v6.o(.text) refers to rt_memmove_w.o(.text) for __memmove_aligned
__main.o(!!!main) refers to rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
f2d.o(x$fpl$f2d) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
f2d.o(x$fpl$f2d) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
f2d.o(x$fpl$f2d) refers to dretinf.o(x$fpl$dretinf) for __fpl_dretinf
printf1.o(x$fpl$printf1) refers to _printf_fp_dec.o(.text) for _printf_fp_dec_real
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
_printf_fp_dec.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
_printf_fp_dec.o(.text) refers (Special) to lc_numeric_c.o(locale$$code) for _get_lc_numeric
_printf_fp_dec.o(.text) refers to bigflt0.o(.text) for _btod_etento
_printf_fp_dec.o(.text) refers to btod.o(CL$$btod_d2e) for _btod_d2e
_printf_fp_dec.o(.text) refers to btod.o(CL$$btod_ediv) for _btod_ediv
_printf_fp_dec.o(.text) refers to btod.o(CL$$btod_emul) for _btod_emul
_printf_fp_dec.o(.text) refers to lludiv10.o(.text) for _ll_udiv10
_printf_fp_dec.o(.text) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
_printf_fp_dec.o(.text) refers to _printf_fp_infnan.o(.text) for _printf_fp_infnan
_printf_fp_dec.o(.text) refers to rt_locale_intlibspace.o(.text) for __rt_locale
_printf_char_common.o(.text) refers to __printf.o(.text) for __printf
rt_memcpy_v6.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
rt_memmove_w.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
dretinf.o(x$fpl$dretinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fnaninf.o(x$fpl$fnaninf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
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 connect4.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
rt_locale.o(.text) refers to rt_locale.o(.bss) for __rt_locale_data
rt_locale_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
bigflt0.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
bigflt0.o(.text) refers to btod.o(CL$$btod_emul) for _btod_emul
bigflt0.o(.text) refers to btod.o(CL$$btod_ediv) for _btod_ediv
bigflt0.o(.text) refers to bigflt0.o(.constdata) for .constdata
bigflt0.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_d2e) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_d2e) refers to btod.o(CL$$btod_d2e_norm_op1) for _d2e_norm_op1
btod.o(CL$$btod_d2e_norm_op1) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_d2e_norm_op1) refers to btod.o(CL$$btod_d2e_denorm_low) for _d2e_denorm_low
btod.o(CL$$btod_d2e_denorm_low) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_emul) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_emul) refers to btod.o(CL$$btod_mult_common) for __btod_mult_common
btod.o(CL$$btod_emul) refers to btod.o(CL$$btod_e2e) for _e2e
btod.o(CL$$btod_ediv) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_ediv) refers to btod.o(CL$$btod_div_common) for __btod_div_common
btod.o(CL$$btod_ediv) refers to btod.o(CL$$btod_e2e) for _e2e
btod.o(CL$$btod_emuld) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_emuld) refers to btod.o(CL$$btod_mult_common) for __btod_mult_common
btod.o(CL$$btod_emuld) refers to btod.o(CL$$btod_e2d) for _e2d
btod.o(CL$$btod_edivd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_edivd) refers to btod.o(CL$$btod_div_common) for __btod_div_common
btod.o(CL$$btod_edivd) refers to btod.o(CL$$btod_e2d) for _e2d
btod.o(CL$$btod_e2e) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_e2d) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_e2d) refers to btod.o(CL$$btod_e2e) for _e2e
btod.o(CL$$btod_mult_common) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
btod.o(CL$$btod_div_common) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
lc_numeric_c.o(locale$$data) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000014) for __rt_lib_init_lc_numeric_2
lc_numeric_c.o(locale$$code) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000014) for __rt_lib_init_lc_numeric_2
lc_numeric_c.o(locale$$code) refers to strcmpv7m.o(.text) for strcmp
lc_numeric_c.o(locale$$code) refers to lc_numeric_c.o(locale$$data) for __lcnum_c_name
istatus.o(x$fpl$ieeestatus) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fpclassify.o(i.__ARM_fpclassify) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
libspace.o(.text) refers to libspace.o(.bss) for __libspace_start
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
libinit2.o(.ARM.Collect$$libinit$$0000000D) refers (Weak) to rt_locale_intlibspace.o(.text) for __rt_locale
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$$00000014) refers (Weak) to lc_numeric_c.o(locale$$code) for _get_lc_numeric
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
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
argv_veneer.o(.emb_text) refers to no_argv.o(.text) for __ARM_get_argv
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
_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
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
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
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
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
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 connect4.o(.constdata), (480 bytes).
Removing game.o(i.hasEmptyCol), (34 bytes).
Removing game.o(.constdata), (480 bytes).
Removing nokia5110.o(i.Nokia5110_OutUDec), (412 bytes).
Removing nokia5110.o(i.Nokia5110_PrintBMP), (424 bytes).
Removing oled_i2c.o(i.OLED_Data), (16 bytes).
Removing oled_i2c.o(i.OLED_Write_Float), (52 bytes).
Removing oled_i2c.o(i.OLED_Write_Integer), (44 bytes).
Removing oled_i2c.o(.data), (8 bytes).
Removing gg.o(i.GPIOADCTriggerDisable), (16 bytes).
Removing gg.o(i.GPIOADCTriggerEnable), (16 bytes).
Removing gg.o(i.GPIODMATriggerDisable), (16 bytes).
Removing gg.o(i.GPIODMATriggerEnable), (16 bytes).
Removing gg.o(i.GPIODirModeGet), (46 bytes).
Removing gg.o(i.GPIODirModeSet), (64 bytes).
Removing gg.o(i.GPIOIntClear), (8 bytes).
Removing gg.o(i.GPIOIntDisable), (16 bytes).
Removing gg.o(i.GPIOIntEnable), (16 bytes).
Removing gg.o(i.GPIOIntRegister), (30 bytes).
Removing gg.o(i.GPIOIntStatus), (20 bytes).
Removing gg.o(i.GPIOIntTypeGet), (84 bytes).
Removing gg.o(i.GPIOIntTypeSet), (126 bytes).
Removing gg.o(i.GPIOIntUnregister), (26 bytes).
Removing gg.o(i.GPIOPadConfigGet), (230 bytes).
Removing gg.o(i.GPIOPadConfigSet), (410 bytes).
Removing gg.o(i.GPIOPinConfigure), (84 bytes).
Removing gg.o(i.GPIOPinRead), (12 bytes).
Removing gg.o(i.GPIOPinTypeADC), (30 bytes).
Removing gg.o(i.GPIOPinTypeCAN), (30 bytes).
Removing gg.o(i.GPIOPinTypeCIR), (30 bytes).
Removing gg.o(i.GPIOPinTypeComparator), (30 bytes).
Removing gg.o(i.GPIOPinTypeEPI), (30 bytes).
Removing gg.o(i.GPIOPinTypeEthernetLED), (30 bytes).
Removing gg.o(i.GPIOPinTypeEthernetMII), (30 bytes).
Removing gg.o(i.GPIOPinTypeGPIOInput), (30 bytes).
Removing gg.o(i.GPIOPinTypeGPIOOutput), (30 bytes).
Removing gg.o(i.GPIOPinTypeGPIOOutputOD), (30 bytes).
Removing gg.o(i.GPIOPinTypeI2C), (30 bytes).
Removing gg.o(i.GPIOPinTypeI2CSCL), (30 bytes).
Removing gg.o(i.GPIOPinTypeKBColumn), (30 bytes).
Removing gg.o(i.GPIOPinTypeKBRow), (30 bytes).
Removing gg.o(i.GPIOPinTypeLCD), (30 bytes).
Removing gg.o(i.GPIOPinTypeLEDSeq), (30 bytes).
Removing gg.o(i.GPIOPinTypeLPC), (30 bytes).
Removing gg.o(i.GPIOPinTypePECIRx), (30 bytes).
Removing gg.o(i.GPIOPinTypePECITx), (30 bytes).
Removing gg.o(i.GPIOPinTypePWM), (30 bytes).
Removing gg.o(i.GPIOPinTypeQEI), (30 bytes).
Removing gg.o(i.GPIOPinTypeSSI), (30 bytes).
Removing gg.o(i.GPIOPinTypeTimer), (30 bytes).
Removing gg.o(i.GPIOPinTypeUART), (30 bytes).
Removing gg.o(i.GPIOPinTypeUSBAnalog), (30 bytes).
Removing gg.o(i.GPIOPinTypeUSBDigital), (30 bytes).
Removing gg.o(i.GPIOPinTypeWakeHigh), (32 bytes).
Removing gg.o(i.GPIOPinTypeWakeLow), (32 bytes).
Removing gg.o(i.GPIOPinWakeStatus), (8 bytes).
Removing gg.o(i.GPIOPinWrite), (10 bytes).
Removing gg.o(i._GPIOIntNumberGet), (76 bytes).
Removing gg.o(.constdata), (528 bytes).
Removing cpu.o(.emb_text), (38 bytes).
Removing i2c.o(i.I2CFIFODataGet), (24 bytes).
Removing i2c.o(i.I2CFIFODataGetNonBlocking), (30 bytes).
Removing i2c.o(i.I2CFIFODataPut), (22 bytes).
Removing i2c.o(i.I2CFIFODataPutNonBlocking), (28 bytes).
Removing i2c.o(i.I2CFIFOStatus), (10 bytes).
Removing i2c.o(i.I2CIntRegister), (30 bytes).
Removing i2c.o(i.I2CIntUnregister), (26 bytes).
Removing i2c.o(i.I2CMasterBurstCountGet), (6 bytes).
Removing i2c.o(i.I2CMasterBurstLengthSet), (4 bytes).
Removing i2c.o(i.I2CMasterBusBusy), (18 bytes).
Removing i2c.o(i.I2CMasterBusy), (18 bytes).
Removing i2c.o(i.I2CMasterControl), (4 bytes).
Removing i2c.o(i.I2CMasterDataGet), (6 bytes).
Removing i2c.o(i.I2CMasterDataPut), (4 bytes).
Removing i2c.o(i.I2CMasterDisable), (10 bytes).
Removing i2c.o(i.I2CMasterEnable), (10 bytes).
Removing i2c.o(i.I2CMasterErr), (30 bytes).
Removing i2c.o(i.I2CMasterGlitchFilterConfigSet), (8 bytes).
Removing i2c.o(i.I2CMasterInitExpClk), (92 bytes).
Removing i2c.o(i.I2CMasterIntClear), (8 bytes).
Removing i2c.o(i.I2CMasterIntClearEx), (4 bytes).
Removing i2c.o(i.I2CMasterIntDisable), (6 bytes).
Removing i2c.o(i.I2CMasterIntDisableEx), (8 bytes).
Removing i2c.o(i.I2CMasterIntEnable), (6 bytes).
Removing i2c.o(i.I2CMasterIntEnableEx), (8 bytes).
Removing i2c.o(i.I2CMasterIntStatus), (28 bytes).
Removing i2c.o(i.I2CMasterIntStatusEx), (12 bytes).
Removing i2c.o(i.I2CMasterLineStateGet), (6 bytes).
Removing i2c.o(i.I2CMasterSlaveAddrSet), (8 bytes).
Removing i2c.o(i.I2CMasterTimeoutSet), (4 bytes).
Removing i2c.o(i.I2CRxFIFOConfigSet), (26 bytes).
Removing i2c.o(i.I2CRxFIFOFlush), (18 bytes).
Removing i2c.o(i.I2CSlaveACKOverride), (38 bytes).
Removing i2c.o(i.I2CSlaveACKValueSet), (38 bytes).
Removing i2c.o(i.I2CSlaveAddressSet), (34 bytes).
Removing i2c.o(i.I2CSlaveDataGet), (10 bytes).
Removing i2c.o(i.I2CSlaveDataPut), (8 bytes).
Removing i2c.o(i.I2CSlaveDisable), (18 bytes).
Removing i2c.o(i.I2CSlaveEnable), (18 bytes).
Removing i2c.o(i.I2CSlaveFIFODisable), (10 bytes).
Removing i2c.o(i.I2CSlaveFIFOEnable), (12 bytes).
Removing i2c.o(i.I2CSlaveInit), (20 bytes).
Removing i2c.o(i.I2CSlaveIntClear), (10 bytes).
Removing i2c.o(i.I2CSlaveIntClearEx), (8 bytes).
Removing i2c.o(i.I2CSlaveIntDisable), (18 bytes).
Removing i2c.o(i.I2CSlaveIntDisableEx), (16 bytes).
Removing i2c.o(i.I2CSlaveIntEnable), (18 bytes).
Removing i2c.o(i.I2CSlaveIntEnableEx), (16 bytes).
Removing i2c.o(i.I2CSlaveIntStatus), (36 bytes).
Removing i2c.o(i.I2CSlaveIntStatusEx), (20 bytes).
Removing i2c.o(i.I2CSlaveStatus), (10 bytes).
Removing i2c.o(i.I2CTxFIFOConfigSet), (28 bytes).
Removing i2c.o(i.I2CTxFIFOFlush), (18 bytes).
Removing i2c.o(i._I2CIntNumberGet), (76 bytes).
Removing i2c.o(.constdata), (128 bytes).
Removing interrupt.o(i.IntDisable), (116 bytes).
Removing interrupt.o(i.IntEnable), (116 bytes).
Removing interrupt.o(i.IntIsEnabled), (108 bytes).
Removing interrupt.o(i.IntMasterDisable), (16 bytes).
Removing interrupt.o(i.IntMasterEnable), (16 bytes).
Removing interrupt.o(i.IntPendClear), (76 bytes).
Removing interrupt.o(i.IntPendSet), (96 bytes).
Removing interrupt.o(i.IntPriorityGet), (28 bytes).
Removing interrupt.o(i.IntPriorityGroupingGet), (44 bytes).
Removing interrupt.o(i.IntPriorityGroupingSet), (28 bytes).
Removing interrupt.o(i.IntPriorityMaskGet), (8 bytes).
Removing interrupt.o(i.IntPriorityMaskSet), (12 bytes).
Removing interrupt.o(i.IntPrioritySet), (52 bytes).
Removing interrupt.o(i.IntRegister), (60 bytes).
Removing interrupt.o(i.IntTrigger), (16 bytes).
Removing interrupt.o(i.IntUnregister), (20 bytes).
Removing interrupt.o(i._IntDefaultHandler), (4 bytes).
Removing interrupt.o(.constdata), (268 bytes).
Removing interrupt.o(vtable), (620 bytes).
Removing texas.o(i.ADC1_Init), (208 bytes).
Removing texas.o(i.Decrypt), (92 bytes).
Removing texas.o(i.PLL_Init), (124 bytes).
Removing texas.o(i.PortD2_Init), (108 bytes).
Removing texas.o(i.SetCourse), (24 bytes).
Removing texas.o(i.SetMode), (24 bytes).
Removing texas.o(i.TExaS_Init), (296 bytes).
Removing texas.o(i.TExaS_Stop), (28 bytes).
Removing texas.o(i.copy), (18 bytes).
143 unused section(s) (total 8446 bytes) removed from the image.
==============================================================================
Image Symbol Table
Local Symbols
Symbol Name Value Ov Type Size Object(Section)
RESET 0x00000000 Section 644 startup.o(RESET)
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.o ABSOLUTE
../clib/angel/handlers.s 0x00000000 Number 0 __scatter_zi.o ABSOLUTE
../clib/angel/handlers.s 0x00000000 Number 0 __scatter_copy.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry4.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 rtentry2.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_locale.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_locale_intlibspace.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 libspace.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_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 argv_veneer.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE
../clib/bigflt.c 0x00000000 Number 0 bigflt0.o ABSOLUTE
../clib/btod.s 0x00000000 Number 0 btod.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 libshutdown.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE
../clib/locale.s 0x00000000 Number 0 lc_numeric_c.o ABSOLUTE
../clib/longlong.s 0x00000000 Number 0 lludiv10.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memcpy_w.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 strcmpv7m.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memmove_w.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memcpy_v6.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memmove_v6.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 noretval__2sprintf.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags_ss_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_fp_infnan.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_ss_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags_ss.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_ss.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_nopercent.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_dec.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _sputc.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_char_common.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_fp_dec.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_intcommon.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __2sprintf.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_percent.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_f.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_d.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_percent_end.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.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.s 0x00000000 Number 0 defsig.o ABSOLUTE
../clib/stdlib.c 0x00000000 Number 0 exit.o ABSOLUTE
../fplib/dretinf.s 0x00000000 Number 0 dretinf.o ABSOLUTE
../fplib/f2d.s 0x00000000 Number 0 f2d.o ABSOLUTE
../fplib/fnaninf.s 0x00000000 Number 0 fnaninf.o ABSOLUTE
../fplib/fpinit.s 0x00000000 Number 0 fpinit.o ABSOLUTE
../fplib/istatus.s 0x00000000 Number 0 istatus.o ABSOLUTE
../fplib/printf1.s 0x00000000 Number 0 printf1.o ABSOLUTE
../fplib/usenofp.s 0x00000000 Number 0 usenofp.o ABSOLUTE
../mathlib/fpclassify.c 0x00000000 Number 0 fpclassify.o ABSOLUTE
..\\driverlib\\cpu.c 0x00000000 Number 0 cpu.o ABSOLUTE
..\driverlib\cpu.c 0x00000000 Number 0 cpu.o ABSOLUTE
..\driverlib\i2c.c 0x00000000 Number 0 i2c.o ABSOLUTE
..\driverlib\interrupt.c 0x00000000 Number 0 interrupt.o ABSOLUTE
ADC.c 0x00000000 Number 0 adc.o ABSOLUTE
BranchingFunctionsDelays.c 0x00000000 Number 0 branchingfunctionsdelays.o ABSOLUTE
Connect4.c 0x00000000 Number 0 connect4.o ABSOLUTE
GPIO.c 0x00000000 Number 0 gpio.o ABSOLUTE
GPTM_Driver.c 0x00000000 Number 0 gptm_driver.o ABSOLUTE
LED.c 0x00000000 Number 0 led.o ABSOLUTE
Nokia5110.c 0x00000000 Number 0 nokia5110.o ABSOLUTE
PWM.c 0x00000000 Number 0 pwm.o ABSOLUTE
TExaS.c 0x00000000 Number 0 texas.o ABSOLUTE
dc.s 0x00000000 Number 0 dc.o ABSOLUTE
game.c 0x00000000 Number 0 game.o ABSOLUTE
gg.c 0x00000000 Number 0 gg.o ABSOLUTE
oled_i2c.c 0x00000000 Number 0 oled_i2c.o ABSOLUTE
startup.s 0x00000000 Number 0 startup.o ABSOLUTE
!!!main 0x00000284 Section 8 __main.o(!!!main)
!!!scatter 0x0000028c Section 52 __scatter.o(!!!scatter)
!!handler_copy 0x000002c0 Section 26 __scatter_copy.o(!!handler_copy)
!!handler_zi 0x000002dc Section 28 __scatter_zi.o(!!handler_zi)
.ARM.Collect$$libinit$$00000000 0x000002f8 Section 2 libinit.o(.ARM.Collect$$libinit$$00000000)
.ARM.Collect$$libinit$$00000002 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
.ARM.Collect$$libinit$$00000008 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000008)
.ARM.Collect$$libinit$$0000000A 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
.ARM.Collect$$libinit$$0000000C 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
.ARM.Collect$$libinit$$0000000F 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000F)
.ARM.Collect$$libinit$$00000011 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
.ARM.Collect$$libinit$$00000013 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
.ARM.Collect$$libinit$$00000015 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
.ARM.Collect$$libinit$$00000017 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
.ARM.Collect$$libinit$$00000019 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
.ARM.Collect$$libinit$$0000001B 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
.ARM.Collect$$libinit$$0000001D 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
.ARM.Collect$$libinit$$0000001F 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
.ARM.Collect$$libinit$$00000021 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
.ARM.Collect$$libinit$$00000023 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
.ARM.Collect$$libinit$$0000002A 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002A)
.ARM.Collect$$libinit$$0000002C 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
.ARM.Collect$$libinit$$0000002E 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
.ARM.Collect$$libinit$$00000030 0x000002fa Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
.ARM.Collect$$libinit$$00000031 0x000002fa Section 2 libinit2.o(.ARM.Collect$$libinit$$00000031)
.ARM.Collect$$libshutdown$$00000000 0x000002fc Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
.ARM.Collect$$libshutdown$$00000003 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000003)
.ARM.Collect$$libshutdown$$00000006 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
.ARM.Collect$$libshutdown$$00000009 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
.ARM.Collect$$libshutdown$$0000000B 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B)
.ARM.Collect$$libshutdown$$0000000E 0x000002fe Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
.ARM.Collect$$libshutdown$$0000000F 0x000002fe Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)
.ARM.Collect$$rtentry$$00000000 0x00000300 Section 0 rtentry.o(.ARM.Collect$$rtentry$$00000000)
.ARM.Collect$$rtentry$$00000002 0x00000300 Section 0 rtentry2.o(.ARM.Collect$$rtentry$$00000002)
.ARM.Collect$$rtentry$$00000004 0x00000300 Section 6 rtentry4.o(.ARM.Collect$$rtentry$$00000004)
.ARM.Collect$$rtentry$$00000009 0x00000306 Section 0 rtentry2.o(.ARM.Collect$$rtentry$$00000009)
.ARM.Collect$$rtentry$$0000000A 0x00000306 Section 4 rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
.ARM.Collect$$rtentry$$0000000C 0x0000030a Section 0 rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
.ARM.Collect$$rtentry$$0000000D 0x0000030a Section 8 rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
.ARM.Collect$$rtexit$$00000000 0x00000312 Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000)
.ARM.Collect$$rtexit$$00000002 0x00000314 Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
.ARM.Collect$$rtexit$$00000003 0x00000314 Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
.ARM.Collect$$rtexit$$00000004 0x00000318 Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
.text 0x00000320 Section 48 startup.o(.text)
.text 0x00000350 Section 132 rt_memmove_v6.o(.text)
.text 0x000003d4 Section 128 strcmpv7m.o(.text)
.text 0x00000454 Section 0 heapauxi.o(.text)
.text 0x0000045a Section 138 rt_memcpy_v6.o(.text)
.text 0x000004e4 Section 122 rt_memmove_w.o(.text)
.text 0x0000055e Section 100 rt_memcpy_w.o(.text)
.text 0x000005c4 Section 8 libspace.o(.text)
.text 0x000005cc Section 74 sys_stackheap_outer.o(.text)
.text 0x00000616 Section 0 exit.o(.text)
.text 0x00000624 Section 0 sys_exit.o(.text)
.text 0x00000630 Section 2 use_no_semi.o(.text)
.text 0x00000632 Section 0 indicate_semi.o(.text)
i.ADC0Seq3_Handler 0x00000634 Section 0 connect4.o(i.ADC0Seq3_Handler)
i.ADC1_In 0x0000065c Section 0 texas.o(i.ADC1_In)
i.Adc_init 0x00000668 Section 0 adc.o(i.Adc_init)
i.Encrypt 0x00000710 Section 0 texas.o(i.Encrypt)
i.GPIOPortF_Handler 0x0000077c Section 0 connect4.o(i.GPIOPortF_Handler)
i.GPIO_AllowChanges 0x000007e4 Section 0 gpio.o(i.GPIO_AllowChanges)
i.GPIO_ClearInterruptFlags 0x00000834 Section 0 gpio.o(i.GPIO_ClearInterruptFlags)
i.GPIO_ClearPinControl 0x00000880 Section 0 gpio.o(i.GPIO_ClearPinControl)
i.GPIO_DisableAlternateFunction 0x000008d4 Section 0 gpio.o(i.GPIO_DisableAlternateFunction)
i.GPIO_DisableDigital 0x00000928 Section 0 gpio.o(i.GPIO_DisableDigital)
i.GPIO_EnableAlternateFunction 0x0000097c Section 0 gpio.o(i.GPIO_EnableAlternateFunction)
i.GPIO_EnableDigital 0x000009d0 Section 0 gpio.o(i.GPIO_EnableDigital)
i.GPIO_EnableInterrupt 0x00000a24 Section 0 gpio.o(i.GPIO_EnableInterrupt)
i.GPIO_EnableInterruptInNVIC 0x00000a74 Section 0 gpio.o(i.GPIO_EnableInterruptInNVIC)
i.GPIO_EnablePortClock 0x00000a8c Section 0 gpio.o(i.GPIO_EnablePortClock)
i.GPIO_EnablePullUp 0x00000af0 Section 0 gpio.o(i.GPIO_EnablePullUp)
i.GPIO_Init 0x00000b44 Section 0 gpio.o(i.GPIO_Init)
i.GPIO_SetAnalogFunction 0x00000c24 Section 0 gpio.o(i.GPIO_SetAnalogFunction)
i.GPIO_SetInterruptBothEdges 0x00000c74 Section 0 gpio.o(i.GPIO_SetInterruptBothEdges)
i.GPIO_SetInterruptEvent 0x00000cd0 Section 0 gpio.o(i.GPIO_SetInterruptEvent)
i.GPIO_SetInterruptPriority 0x00000d2c Section 0 gpio.o(i.GPIO_SetInterruptPriority)
i.GPIO_SetInterruptSense 0x00000d44 Section 0 gpio.o(i.GPIO_SetInterruptSense)
i.GPIO_SetPinControl 0x00000da0 Section 0 gpio.o(i.GPIO_SetPinControl)
i.GPIO_SetPinDirection 0x00000df0 Section 0 gpio.o(i.GPIO_SetPinDirection)
i.GPIO_UnlockPort 0x00000e98 Section 0 gpio.o(i.GPIO_UnlockPort)
i.GPTM0_Delay_Unit 0x00000ef8 Section 0 gptm_driver.o(i.GPTM0_Delay_Unit)
i.I2C3_Init 0x00000f48 Section 0 oled_i2c.o(i.I2C3_Init)
i.I2C3_Wr 0x00000fb8 Section 0 oled_i2c.o(i.I2C3_Wr)
i.I2C3_Write_Multiple 0x00001010 Section 0 oled_i2c.o(i.I2C3_Write_Multiple)
i.I2C_wait_till_done 0x00001090 Section 0 oled_i2c.o(i.I2C_wait_till_done)
I2C_wait_till_done 0x00001091 Thumb Code 22 oled_i2c.o(i.I2C_wait_till_done)
i.LED_Init 0x000010ac Section 0 led.o(i.LED_Init)
i.LED_Off 0x000010e8 Section 0 led.o(i.LED_Off)
i.LED_On 0x00001190 Section 0 led.o(i.LED_On)
i.Nokia5110_Clear 0x00001238 Section 0 nokia5110.o(i.Nokia5110_Clear)
i.Nokia5110_ClearBuffer 0x00001258 Section 0 nokia5110.o(i.Nokia5110_ClearBuffer)
i.Nokia5110_DisplayBuffer 0x00001270 Section 0 nokia5110.o(i.Nokia5110_DisplayBuffer)
i.Nokia5110_DrawFullImage 0x00001280 Section 0 nokia5110.o(i.Nokia5110_DrawFullImage)
i.Nokia5110_Init 0x000012a4 Section 0 nokia5110.o(i.Nokia5110_Init)
i.Nokia5110_OutChar 0x00001410 Section 0 nokia5110.o(i.Nokia5110_OutChar)
i.Nokia5110_OutChar2 0x00001450 Section 0 nokia5110.o(i.Nokia5110_OutChar2)
i.Nokia5110_OutString 0x000014a8 Section 0 nokia5110.o(i.Nokia5110_OutString)
i.Nokia5110_SetCursor 0x000014be Section 0 nokia5110.o(i.Nokia5110_SetCursor)
i.Nokia5110_SetCursorChar 0x000014ee Section 0 nokia5110.o(i.Nokia5110_SetCursorChar)
i.OLED_Clear 0x00001556 Section 0 oled_i2c.o(i.OLED_Clear)
i.OLED_Command 0x00001580 Section 0 oled_i2c.o(i.OLED_Command)
i.OLED_Init 0x00001590 Section 0 oled_i2c.o(i.OLED_Init)
i.OLED_PutChar 0x0000162c Section 0 oled_i2c.o(i.OLED_PutChar)
i.OLED_Write_String 0x00001664 Section 0 oled_i2c.o(i.OLED_Write_String)
i.OLED_YX 0x0000167a Section 0 oled_i2c.o(i.OLED_YX)
i.PWM_init 0x000016a4 Section 0 pwm.o(i.PWM_init)
i.SetCode 0x000017b4 Section 0 texas.o(i.SetCode)
i.SetGrade 0x000017cc Section 0 texas.o(i.SetGrade)
i.TIMER0_INIT 0x00001898 Section 0 gptm_driver.o(i.TIMER0_INIT)
i.Timer0_Number_Mode 0x00001900 Section 0 gptm_driver.o(i.Timer0_Number_Mode)
i.Timer0_Number_Option 0x00001970 Section 0 gptm_driver.o(i.Timer0_Number_Option)
i.Timer0_Number_Ticks 0x000019a4 Section 0 gptm_driver.o(i.Timer0_Number_Ticks)
i.Timer5A_Handler 0x000019f8 Section 0 texas.o(i.Timer5A_Handler)
i.changeBoard 0x00001ff4 Section 0 game.o(i.changeBoard)
i.checkFour 0x00002022 Section 0 game.o(i.checkFour)
i.checkWin 0x0000204e Section 0 game.o(i.checkWin)
i.diagonalCheck 0x00002072 Section 0 game.o(i.diagonalCheck)
i.horizontalCheck 0x000020de Section 0 game.o(i.horizontalCheck)
i.lcdwrite 0x00002120 Section 0 nokia5110.o(i.lcdwrite)
lcdwrite 0x00002121 Thumb Code 66 nokia5110.o(i.lcdwrite)
i.main 0x0000216c Section 0 connect4.o(i.main)
i.printBoard 0x00002390 Section 0 game.o(i.printBoard)
i.startingScreen 0x000023c0 Section 0 game.o(i.startingScreen)
i.takeTurn 0x00002444 Section 0 game.o(i.takeTurn)
i.verticalCheck 0x000025bc Section 0 game.o(i.verticalCheck)
.constdata 0x000025fe Section 480 nokia5110.o(.constdata)
ASCII 0x000025fe Data 480 nokia5110.o(.constdata)
.constdata 0x000027de Section 768 oled_i2c.o(.constdata)
.constdata 0x00002ae0 Section 5964 texas.o(.constdata)
.conststring 0x0000422c Section 3 connect4.o(.conststring)
.data 0x20000000 Section 16 connect4.o(.data)
.data 0x20000010 Section 20 game.o(.data)
.data 0x20000024 Section 4 gptm_driver.o(.data)
.data 0x20000028 Section 56 texas.o(.data)
RealGrade 0x20000038 Data 4 texas.o(.data)
.bss 0x20000060 Section 43 connect4.o(.bss)
.bss 0x2000008b Section 504 nokia5110.o(.bss)
.bss 0x20000288 Section 628 texas.o(.bss)
.bss 0x200004fc Section 96 libspace.o(.bss)
HEAP 0x20000560 Section 0 startup.o(HEAP)
STACK 0x20000560 Section 1024 startup.o(STACK)
HeapMem 0x20000560 Data 0 startup.o(HEAP)
StackMem 0x20000560 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$OTIME$ROPI$IEEEJ$EBA8$UX$STANDARDLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
__ARM_use_no_argv 0x00000000 Number 0 connect4.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
__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_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
_printf_post_padding - Undefined Weak Reference
_printf_pre_padding - Undefined Weak Reference
_printf_truncate_signed - Undefined Weak Reference
_printf_truncate_unsigned - 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)
SysTick_Handler 0x00000281 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)
ADC1Seq0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC1Seq1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC1Seq2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ADC1Seq3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
CAN0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
CAN1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
CAN2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Comp0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Comp1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Comp2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Ethernet_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
ExtBus_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
FPU_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Fan0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
FlashCtl_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortA_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortB_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortC_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortD_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortE_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortG_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortH_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortJ_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortK_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortL_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortM_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortN_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP6_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP7_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortP_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ6_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ7_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortQ_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortR_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
GPIOPortS_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Hibernate_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2C5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
I2S0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
LPC0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PECI0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Fault_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM0Generator3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Fault_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
PWM1Generator3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Quadrature0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Quadrature1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Quadrature2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SSI3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
SysCtl_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer0A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer0B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer1A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer1B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer2A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer2B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer3A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer3B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer4A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer4B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
Timer5B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART1_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART2_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART3_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART4_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART5_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART6_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
UART7_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
USB0_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WDT_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer0A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer0B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer1A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer1B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer2A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer2B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer3A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer3B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer4A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer4B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer5A_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
WideTimer5B_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
uDMA_Error 0x00000283 Thumb Code 0 startup.o(RESET)
uDMA_Handler 0x00000283 Thumb Code 0 startup.o(RESET)
__main 0x00000285 Thumb Code 8 __main.o(!!!main)