yincheng.zhong
2024-08-20 7744fffacb03dc81cc9dbaf9f5d86a0f21e79c03
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
Component: ARM Compiler 6.14 Tool: armlink [5db06800]
 
==============================================================================
 
Section Cross References
 
    startup_mk800x.o(.ARM.exidx.text.Default_Handler) refers to startup_mk800x.o(.text.Default_Handler) for [Anonymous Symbol]
    startup_mk800x.o(.text.Reset_Handler) refers to libc.o(.text.update_libc_rom_table) for update_libc_rom_table
    startup_mk800x.o(.text.Reset_Handler) refers to system_mk800x.o(.text.SystemInit) for SystemInit
    startup_mk800x.o(.text.Reset_Handler) refers to startup_mk800x.o(.text.start_main_asm) for start_main_asm
    startup_mk800x.o(.ARM.exidx.text.Reset_Handler) refers to startup_mk800x.o(.text.Reset_Handler) for [Anonymous Symbol]
    startup_mk800x.o(.text.start_main_asm) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    startup_mk800x.o(.ARM.exidx.text.start_main_asm) refers to startup_mk800x.o(.text.start_main_asm) for [Anonymous Symbol]
    startup_mk800x.o(.ZBOOT_SECTION) refers to startup_mk800x.o(.ZBUILD_SECTION) for mk_build_inf
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.text.Reset_Handler) for Reset_Handler
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.text.Default_Handler) for NMI_Handler
    startup_mk800x.o(RESET) refers to mk_trace.o(.text.HardFault_Handler) for HardFault_Handler
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.ZBOOT_SECTION) for mk_boot_desc
    startup_mk800x.o(RESET) refers to startup_mk800x.o(.ZBUILD_SECTION) for mk_build_inf
    startup_mk800x.o(RESET) refers to mk_misc.o(.text.SysTick_Handler) for SysTick_Handler
    startup_mk800x.o(RESET) refers to mk_misc.o(.text.BOD_IRQHandler) for BOD_IRQHandler
    startup_mk800x.o(RESET) refers to mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) for SLEEP_TIMER_IRQHandler
    startup_mk800x.o(RESET) refers to mk_dma.o(.text.DMA_IRQHandler) for DMA_IRQHandler
    startup_mk800x.o(RESET) refers to mk_gpio.o(.text.GPIO_IRQHandler) for GPIO_IRQHandler
    startup_mk800x.o(RESET) refers to mk_adc.o(.text.ADC_IRQHandler) for ADC_IRQHandler
    startup_mk800x.o(RESET) refers to mk_flash.o(.text.FLASH_CTRL_IRQHandler) for FLASH_CTRL_IRQHandler
    startup_mk800x.o(RESET) refers to mk_wdt.o(.text.WDT_IRQHandler) for WDT_IRQHandler
    startup_mk800x.o(RESET) refers to mk_rtc.o(.text.RTC_ALARM_IRQHandler) for RTC_ALARM_IRQHandler
    startup_mk800x.o(RESET) refers to mk_rtc.o(.text.RTC_TICK_IRQHandler) for RTC_TICK_IRQHandler
    startup_mk800x.o(RESET) refers to mk_dual_timer.o(.text.TIMER2_IRQHandler) for TIMER2_IRQHandler
    startup_mk800x.o(RESET) refers to mk_dual_timer.o(.text.TIMER3_IRQHandler) for TIMER3_IRQHandler
    startup_mk800x.o(RESET) refers to mk_uart.o(.text.UART0_IRQHandler) for UART0_IRQHandler
    startup_mk800x.o(RESET) refers to mk_uart.o(.text.UART1_IRQHandler) for UART1_IRQHandler
    startup_mk800x.o(RESET) refers to mk_calib.o(.text.CALIB_IRQHandler) for CALIB_IRQHandler
    startup_mk800x.o(RESET) refers to mk_rtc.o(.text.RCO32K_CAL_IRQHandler) for RCO32K_CAL_IRQHandler
    system_mk800x.o(.text.SystemCoreClockUpdate) refers to system_mk800x.o(.data.SystemCoreClock) for SystemCoreClock
    system_mk800x.o(.ARM.exidx.text.SystemCoreClockUpdate) refers to system_mk800x.o(.text.SystemCoreClockUpdate) for [Anonymous Symbol]
    system_mk800x.o(.text.SystemInit) refers to system_mk800x.o(.data.SystemCoreClock) for SystemCoreClock
    system_mk800x.o(.ARM.exidx.text.SystemInit) refers to system_mk800x.o(.text.SystemInit) for [Anonymous Symbol]
    mk_adc.o(.text.adc_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_adc.o(.text.adc_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_adc.o(.text.adc_open) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_adc.o(.text.adc_open) refers to mk_adc.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_adc.o(.text.adc_open) refers to mk_adc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_adc.o(.text.adc_open) refers to mk_adc.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_adc.o(.text.adc_open) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.adc_open) refers to mk_adc.o(.text.adc_open) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_adc.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_adc.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_adc.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_adc.o(.text.adc_close) refers to mk_adc.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_adc.o(.text.adc_close) refers to mk_adc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_adc.o(.text.adc_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_adc.o(.text.adc_close) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.adc_close) refers to mk_adc.o(.text.adc_close) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_adc.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_adc.o(.text.adc_switch_channel) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.adc_switch_channel) refers to mk_adc.o(.text.adc_switch_channel) for [Anonymous Symbol]
    mk_adc.o(.text.adc_get) refers to mk_adc.o(.text.int_lock) for int_lock
    mk_adc.o(.text.adc_get) refers to mk_adc.o(.text.int_unlock) for int_unlock
    mk_adc.o(.text.adc_get) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_adc.o(.text.adc_get) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_adc.o(.text.adc_get) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.text.adc_get) refers to mk_adc.o(.rodata.cst32) for .L__const.adc_get.adc_dma_cfg
    mk_adc.o(.text.adc_get) refers to mk_adc.o(.text.adc_dma_callback) for adc_dma_callback
    mk_adc.o(.ARM.exidx.text.adc_get) refers to mk_adc.o(.text.adc_get) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.int_lock) refers to mk_adc.o(.text.int_lock) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.int_unlock) refers to mk_adc.o(.text.int_unlock) for [Anonymous Symbol]
    mk_adc.o(.text.adc_dma_callback) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_adc.o(.text.adc_dma_callback) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.text.adc_dma_callback) refers to mk_adc.o(.rodata.str1.1) for .L.str
    mk_adc.o(.ARM.exidx.text.adc_dma_callback) refers to mk_adc.o(.text.adc_dma_callback) for [Anonymous Symbol]
    mk_adc.o(.text.ADC_IRQHandler) refers to mk_adc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_adc.o(.text.ADC_IRQHandler) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_adc.o(.text.ADC_IRQHandler) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.text.ADC_IRQHandler) refers to mk_adc.o(.rodata.str1.1) for .L.str
    mk_adc.o(.ARM.exidx.text.ADC_IRQHandler) refers to mk_adc.o(.text.ADC_IRQHandler) for [Anonymous Symbol]
    mk_adc.o(.text.adc_code_to_mv) refers to fflti.o(.text) for __aeabi_i2f
    mk_adc.o(.text.adc_code_to_mv) refers to ffixi.o(.text) for __aeabi_f2iz
    mk_adc.o(.ARM.exidx.text.adc_code_to_mv) refers to mk_adc.o(.text.adc_code_to_mv) for [Anonymous Symbol]
    mk_adc.o(.text.battery_monitor_open) refers to mk_adc.o(.text.adc_open) for adc_open
    mk_adc.o(.text.battery_monitor_open) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.battery_monitor_open) refers to mk_adc.o(.text.battery_monitor_open) for [Anonymous Symbol]
    mk_adc.o(.text.battery_monitor_close) refers to mk_adc.o(.text.adc_close) for adc_close
    mk_adc.o(.text.battery_monitor_close) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.battery_monitor_close) refers to mk_adc.o(.text.battery_monitor_close) for [Anonymous Symbol]
    mk_adc.o(.text.battery_monitor_get) refers to mk_adc.o(.text.adc_get) for adc_get
    mk_adc.o(.text.battery_monitor_get) refers to mk_adc.o(.text.adc_code_to_mv) for adc_code_to_mv
    mk_adc.o(.text.battery_monitor_get) refers to idiv.o(.text) for __aeabi_idiv
    mk_adc.o(.ARM.exidx.text.battery_monitor_get) refers to mk_adc.o(.text.battery_monitor_get) for [Anonymous Symbol]
    mk_adc.o(.text.temp_sensor_open) refers to mk_adc.o(.text.adc_open) for adc_open
    mk_adc.o(.text.temp_sensor_open) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_adc.o(.text.temp_sensor_open) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.temp_sensor_open) refers to mk_adc.o(.text.temp_sensor_open) for [Anonymous Symbol]
    mk_adc.o(.text.temp_sensor_close) refers to mk_adc.o(.text.adc_close) for adc_close
    mk_adc.o(.text.temp_sensor_close) refers to mk_adc.o(.data.adc_handle) for [Anonymous Symbol]
    mk_adc.o(.ARM.exidx.text.temp_sensor_close) refers to mk_adc.o(.text.temp_sensor_close) for [Anonymous Symbol]
    mk_adc.o(.text.temp_sensor_get) refers to mk_adc.o(.text.adc_get) for adc_get
    mk_adc.o(.text.temp_sensor_get) refers to fflti.o(.text) for __aeabi_i2f
    mk_adc.o(.text.temp_sensor_get) refers to fmul.o(.text) for __aeabi_fmul
    mk_adc.o(.text.temp_sensor_get) refers to fadd.o(.text) for __aeabi_fadd
    mk_adc.o(.text.temp_sensor_get) refers to idiv.o(.text) for __aeabi_idiv
    mk_adc.o(.text.temp_sensor_get) refers to dflti.o(.text) for __aeabi_i2d
    mk_adc.o(.text.temp_sensor_get) refers to dmul.o(.text) for __aeabi_dmul
    mk_adc.o(.text.temp_sensor_get) refers to dadd.o(.text) for __aeabi_dadd
    mk_adc.o(.text.temp_sensor_get) refers to f2d.o(.text) for __aeabi_f2d
    mk_adc.o(.text.temp_sensor_get) refers to dfixi.o(.text) for __aeabi_d2iz
    mk_adc.o(.ARM.exidx.text.temp_sensor_get) refers to mk_adc.o(.text.temp_sensor_get) for [Anonymous Symbol]
    mk_calib.o(.text.calib_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_calib.o(.text.calib_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_calib.o(.ARM.exidx.text.calib_open) refers to mk_calib.o(.text.calib_open) for [Anonymous Symbol]
    mk_calib.o(.text.calib_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_calib.o(.ARM.exidx.text.calib_close) refers to mk_calib.o(.text.calib_close) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_start) refers to mk_calib.o(.text.calib_start) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.calib_check) refers to mk_calib.o(.text.calib_check) for [Anonymous Symbol]
    mk_calib.o(.text.calib_chip) refers to mk_calib.o(.text.calib_xtal38m4_load_cap_set) for calib_xtal38m4_load_cap_set
    mk_calib.o(.text.calib_chip) refers to mk_calib.o(.text.calib_xtal32k_load_cap_set) for calib_xtal32k_load_cap_set
    mk_calib.o(.text.calib_chip) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_calib.o(.text.calib_chip) refers to mk_misc.o(.text.mk_chip_id) for mk_chip_id
    mk_calib.o(.text.calib_chip) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_calib.o(.text.calib_chip) refers to board.o(.bss.board_param) for board_param
    mk_calib.o(.text.calib_chip) refers to mk_calib.o(.rodata.str1.1) for .L.str
    mk_calib.o(.ARM.exidx.text.calib_chip) refers to mk_calib.o(.text.calib_chip) for [Anonymous Symbol]
    mk_calib.o(.text.calib_xtal38m4_load_cap_set) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_calib.o(.text.calib_xtal38m4_load_cap_set) refers to mk_calib.o(.rodata.str1.1) for .L.str.3
    mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_set) refers to mk_calib.o(.text.calib_xtal38m4_load_cap_set) for [Anonymous Symbol]
    mk_calib.o(.text.calib_xtal32k_load_cap_set) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_calib.o(.text.calib_xtal32k_load_cap_set) refers to mk_calib.o(.rodata.str1.1) for .L.str.4
    mk_calib.o(.ARM.exidx.text.calib_xtal32k_load_cap_set) refers to mk_calib.o(.text.calib_xtal32k_load_cap_set) for [Anonymous Symbol]
    mk_calib.o(.text.calib_xtal38m4_load_cap_auto_tune) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_calib.o(.text.calib_xtal38m4_load_cap_auto_tune) refers to mk_calib.o(.rodata.str1.1) for .L.str.2
    mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_auto_tune) refers to mk_calib.o(.text.calib_xtal38m4_load_cap_auto_tune) for [Anonymous Symbol]
    mk_calib.o(.text.calib_xtal38m4_with_clock_out) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_calib.o(.text.calib_xtal38m4_with_clock_out) refers to mk_calib.o(.rodata.str1.1) for .L.str.3
    mk_calib.o(.ARM.exidx.text.calib_xtal38m4_with_clock_out) refers to mk_calib.o(.text.calib_xtal38m4_with_clock_out) for [Anonymous Symbol]
    mk_calib.o(.text.calib_xtal32k_with_clock_out) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_calib.o(.text.calib_xtal32k_with_clock_out) refers to mk_calib.o(.rodata.str1.1) for .L.str.4
    mk_calib.o(.ARM.exidx.text.calib_xtal32k_with_clock_out) refers to mk_calib.o(.text.calib_xtal32k_with_clock_out) for [Anonymous Symbol]
    mk_calib.o(.ARM.exidx.text.CALIB_IRQHandler) refers to mk_calib.o(.text.CALIB_IRQHandler) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_enable) refers to mk_clock.o(.text.clock_enable) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_disable) refers to mk_clock.o(.text.clock_disable) for [Anonymous Symbol]
    mk_clock.o(.text.clock_attach) refers to mk_clock.o(.text.clock_32K_clk_config) for clock_32K_clk_config
    mk_clock.o(.text.clock_attach) refers to mk_clock.o(.text.clock_sys_clk_config) for clock_sys_clk_config
    mk_clock.o(.text.clock_attach) refers to mk_clock.o(.text.clock_wdt_clk_config) for clock_wdt_clk_config
    mk_clock.o(.ARM.exidx.text.clock_attach) refers to mk_clock.o(.text.clock_attach) for [Anonymous Symbol]
    mk_clock.o(.text.clock_32K_clk_config) refers to mk_clock.o(.text.clock_xtal32k_injection_set) for clock_xtal32k_injection_set
    mk_clock.o(.ARM.exidx.text.clock_32K_clk_config) refers to mk_clock.o(.text.clock_32K_clk_config) for [Anonymous Symbol]
    mk_clock.o(.text.clock_sys_clk_config) refers to mk_clock.o(.text.clock_xtal38m4_injection_set) for clock_xtal38m4_injection_set
    mk_clock.o(.ARM.exidx.text.clock_sys_clk_config) refers to mk_clock.o(.text.clock_sys_clk_config) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_wdt_clk_config) refers to mk_clock.o(.text.clock_wdt_clk_config) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_set_divider) refers to mk_clock.o(.text.clock_set_divider) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_sys_clk_freq) for clock_get_sys_clk_freq
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_ahb_clk_freq) for clock_get_ahb_clk_freq
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_apb_clk_freq) for clock_get_apb_clk_freq
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_wdt_clk_freq) for clock_get_wdt_clk_freq
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_32k_clk_freq) for clock_get_32k_clk_freq
    mk_clock.o(.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_flash_clk_freq) for clock_get_flash_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_frequency) refers to mk_clock.o(.text.clock_get_frequency) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_get_sys_clk_freq) refers to mk_clock.o(.text.clock_get_sys_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_ahb_clk_freq) refers to mk_clock.o(.text.clock_get_sys_clk_freq) for clock_get_sys_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_ahb_clk_freq) refers to mk_clock.o(.text.clock_get_ahb_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_apb_clk_freq) refers to mk_clock.o(.text.clock_get_ahb_clk_freq) for clock_get_ahb_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_apb_clk_freq) refers to mk_clock.o(.text.clock_get_apb_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_wdt_clk_freq) refers to mk_clock.o(.text.clock_get_apb_clk_freq) for clock_get_apb_clk_freq
    mk_clock.o(.text.clock_get_wdt_clk_freq) refers to mk_clock.o(.text.clock_get_32k_clk_freq) for clock_get_32k_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_wdt_clk_freq) refers to mk_clock.o(.text.clock_get_wdt_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_get_32k_clk_freq) refers to mk_clock.o(.text.clock_get_32k_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.text.clock_get_flash_clk_freq) refers to mk_clock.o(.text.clock_get_sys_clk_freq) for clock_get_sys_clk_freq
    mk_clock.o(.ARM.exidx.text.clock_get_flash_clk_freq) refers to mk_clock.o(.text.clock_get_flash_clk_freq) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_xtal38m4_injection_set) refers to mk_clock.o(.text.clock_xtal38m4_injection_set) for [Anonymous Symbol]
    mk_clock.o(.ARM.exidx.text.clock_xtal32k_injection_set) refers to mk_clock.o(.text.clock_xtal32k_injection_set) for [Anonymous Symbol]
    mk_dma.o(.text.dma_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_dma.o(.text.dma_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_dma.o(.text.dma_open) refers to mk_dma.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_dma.o(.text.dma_open) refers to mk_dma.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_dma.o(.text.dma_open) refers to mk_dma.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_dma.o(.text.dma_open) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_open) refers to mk_dma.o(.text.dma_open) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_dma.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_dma.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_dma.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_dma.o(.text.dma_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_dma.o(.text.dma_close) refers to mk_dma.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_dma.o(.text.dma_close) refers to mk_dma.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_dma.o(.text.dma_close) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_close) refers to mk_dma.o(.text.dma_close) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_dma.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_dma.o(.text.dma_transfer) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_dma.o(.text.dma_transfer) refers to mk_dma.o(.rodata.str1.1) for .L.str
    mk_dma.o(.text.dma_transfer) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_transfer) refers to mk_dma.o(.text.dma_transfer) for [Anonymous Symbol]
    mk_dma.o(.text.dma_abort) refers to mk_dma.o(.text.int_lock) for int_lock
    mk_dma.o(.text.dma_abort) refers to mk_dma.o(.text.int_unlock) for int_unlock
    mk_dma.o(.text.dma_abort) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_abort) refers to mk_dma.o(.text.dma_abort) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.int_lock) refers to mk_dma.o(.text.int_lock) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.int_unlock) refers to mk_dma.o(.text.int_unlock) for [Anonymous Symbol]
    mk_dma.o(.text.dma_force_abort) refers to mk_dma.o(.text.int_lock) for int_lock
    mk_dma.o(.text.dma_force_abort) refers to mk_dma.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_dma.o(.text.dma_force_abort) refers to mk_dma.o(.text.int_unlock) for int_unlock
    mk_dma.o(.text.dma_force_abort) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.dma_force_abort) refers to mk_dma.o(.text.dma_force_abort) for [Anonymous Symbol]
    mk_dma.o(.text.DMA_IRQHandler) refers to mk_dma.o(.data.dma_handle) for [Anonymous Symbol]
    mk_dma.o(.ARM.exidx.text.DMA_IRQHandler) refers to mk_dma.o(.text.DMA_IRQHandler) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_dual_timer.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_dual_timer.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_dual_timer.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_dual_timer.o(.rodata.str1.1) for .L.str
    mk_dual_timer.o(.text.dual_timer_open) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_open) refers to mk_dual_timer.o(.text.dual_timer_open) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_dual_timer.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_dual_timer.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_dual_timer.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_close) refers to mk_dual_timer.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_dual_timer.o(.text.dual_timer_close) refers to mk_dual_timer.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_dual_timer.o(.text.dual_timer_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_dual_timer.o(.text.dual_timer_close) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_close) refers to mk_dual_timer.o(.text.dual_timer_close) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_dual_timer.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_start) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_start) refers to mk_dual_timer.o(.text.dual_timer_start) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_stop) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_stop) refers to mk_dual_timer.o(.text.dual_timer_stop) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_reset) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_reset) refers to mk_dual_timer.o(.text.dual_timer_reset) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_set) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_set) refers to mk_dual_timer.o(.text.dual_timer_set) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_get) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_get) refers to mk_dual_timer.o(.text.dual_timer_get) for [Anonymous Symbol]
    mk_dual_timer.o(.text.dual_timer_delay) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.dual_timer_delay) refers to mk_dual_timer.o(.text.dual_timer_delay) for [Anonymous Symbol]
    mk_dual_timer.o(.text.TIMER2_IRQHandler) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.TIMER2_IRQHandler) refers to mk_dual_timer.o(.text.TIMER2_IRQHandler) for [Anonymous Symbol]
    mk_dual_timer.o(.text.TIMER3_IRQHandler) refers to mk_dual_timer.o(.data.dual_timer_handle) for [Anonymous Symbol]
    mk_dual_timer.o(.ARM.exidx.text.TIMER3_IRQHandler) refers to mk_dual_timer.o(.text.TIMER3_IRQHandler) for [Anonymous Symbol]
    mk_flash.o(.text.flash_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_flash.o(.text.flash_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_open) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_open) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_write_quad_mode) for flash_write_quad_mode
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_read_status1) for flash_read_status1
    mk_flash.o(.text.flash_open) refers to mk_clock.o(.text.clock_set_divider) for clock_set_divider
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_open) refers to mk_flash.o(.rodata.str1.1) for .L.str
    mk_flash.o(.ARM.exidx.text.flash_open) refers to mk_flash.o(.text.flash_open) for [Anonymous Symbol]
    mk_flash.o(.text.flash_reset_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_reset_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_reset_cmd) refers to mk_flash.o(.text.flash_reset_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_write_cmd) refers to mk_flash.o(.rodata.flash_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_write_cmd) refers to mk_flash.o(.text.flash_write_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_wait_status) refers to mk_misc.o(.text.sys_timer_get) for sys_timer_get
    mk_flash.o(.text.flash_wait_status) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_wait_status) refers to mk_flash.o(.text.flash_wait_status) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_write_quad_mode) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_write_quad_mode) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_write_quad_mode) refers to mk_flash.o(.text.flash_write_quad_mode) for [Anonymous Symbol]
    mk_flash.o(.text.flash_read_status1) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_read_status1) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_read_status1) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_read_status1) refers to mk_flash.o(.text.flash_read_status1) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_mem_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_write_mem_cmd) refers to mk_flash.o(.rodata.flash_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_mem_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_write_mem_cmd) refers to mk_flash.o(.text.flash_write_mem_cmd) for [Anonymous Symbol]
    mk_flash.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_flash.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_flash.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_flash.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_flash.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_flash.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_flash.o(.text.flash_close) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_close) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_flash.o(.text.flash_close) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_close) refers to mk_flash.o(.text.flash_close) for [Anonymous Symbol]
    mk_flash.o(.text.flash_open_for_xip) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_open_for_xip) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_open_for_xip) refers to mk_flash.o(.text.flash_open_for_xip) for [Anonymous Symbol]
    mk_flash.o(.text.flash_power_up) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_power_up) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_power_up) refers to mk_flash.o(.text.flash_power_up) for [Anonymous Symbol]
    mk_flash.o(.text.flash_power_down) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_power_down) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_power_down) refers to mk_flash.o(.text.flash_power_down) for [Anonymous Symbol]
    mk_flash.o(.text.flash_sector_erase) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_sector_erase) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_sector_erase) refers to mk_flash.o(.rodata.str1.1) for .L.str.1
    mk_flash.o(.text.flash_sector_erase) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_sector_erase) refers to mk_flash.o(.text.flash_sector_erase) for [Anonymous Symbol]
    mk_flash.o(.text.flash_state_update) refers to mk_flash.o(.text.int_lock) for int_lock
    mk_flash.o(.text.flash_state_update) refers to mk_flash.o(.text.int_unlock) for int_unlock
    mk_flash.o(.text.flash_state_update) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_state_update) refers to mk_flash.o(.text.flash_state_update) for [Anonymous Symbol]
    mk_flash.o(.text.flash_wait_done) refers to mk_misc.o(.text.sys_timer_get) for sys_timer_get
    mk_flash.o(.text.flash_wait_done) refers to mk_flash.o(.text.flash_read_status) for flash_read_status
    mk_flash.o(.text.flash_wait_done) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.ARM.exidx.text.flash_wait_done) refers to mk_flash.o(.text.flash_wait_done) for [Anonymous Symbol]
    mk_flash.o(.text.flash_block_erase) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_block_erase) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_block_erase) refers to mk_flash.o(.rodata.str1.1) for .L.str.1
    mk_flash.o(.text.flash_block_erase) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_block_erase) refers to mk_flash.o(.text.flash_block_erase) for [Anonymous Symbol]
    mk_flash.o(.text.flash_erase) refers to uidiv.o(.text) for __aeabi_uidivmod
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.text.flash_sector_erase) for flash_sector_erase
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.text.flash_check_busy) for flash_check_busy
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.text.flash_block_erase) for flash_block_erase
    mk_flash.o(.text.flash_erase) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_erase) refers to mk_flash.o(.text.flash_erase) for [Anonymous Symbol]
    mk_flash.o(.text.flash_check_busy) refers to mk_flash.o(.text.flash_read_status) for flash_read_status
    mk_flash.o(.text.flash_check_busy) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_check_busy) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_check_busy) refers to mk_flash.o(.text.flash_check_busy) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_init_write_nbytes_cfg) for flash_init_write_nbytes_cfg
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for flash_write_variable_len_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_page_write_nbytes) for flash_page_write_nbytes
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.rodata.cst32) for .L__const.flash_write_nbytes.flash_wr_dma_cfg
    mk_flash.o(.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_dma_write_nbytes_callback) for flash_dma_write_nbytes_callback
    mk_flash.o(.ARM.exidx.text.flash_write_nbytes) refers to mk_flash.o(.text.flash_write_nbytes) for [Anonymous Symbol]
    mk_flash.o(.text.flash_init_write_nbytes_cfg) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_init_write_nbytes_cfg) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_init_write_nbytes_cfg) refers to mk_flash.o(.text.flash_init_write_nbytes_cfg) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_variable_len_cmd) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_write_variable_len_cmd) refers to mk_flash.o(.rodata.flash_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write_variable_len_cmd) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_write_variable_len_cmd) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for [Anonymous Symbol]
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for flash_write_variable_len_cmd
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.rodata.str1.1) for .L.str.1
    mk_flash.o(.ARM.exidx.text.flash_dma_write_nbytes_callback) refers to mk_flash.o(.text.flash_dma_write_nbytes_callback) for [Anonymous Symbol]
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_write_variable_len_cmd) for flash_write_variable_len_cmd
    mk_flash.o(.text.flash_page_write_nbytes) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_page_write_nbytes) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_page_write_nbytes) refers to mk_flash.o(.text.flash_page_write_nbytes) for [Anonymous Symbol]
    mk_flash.o(.text.flash_write) refers to uidiv.o(.text) for __aeabi_uidivmod
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_write) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_flash.o(.text.flash_write) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_page_write) for flash_page_write
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.rodata.cst32) for .L__const.flash_write.flash_wr_dma_cfg
    mk_flash.o(.text.flash_write) refers to mk_flash.o(.text.flash_dma_callback) for flash_dma_callback
    mk_flash.o(.ARM.exidx.text.flash_write) refers to mk_flash.o(.text.flash_write) for [Anonymous Symbol]
    mk_flash.o(.text.flash_dma_callback) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_dma_callback) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_dma_callback) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_dma_callback) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_flash.o(.text.flash_dma_callback) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_dma_callback) refers to mk_flash.o(.rodata.str1.1) for .L.str.1
    mk_flash.o(.ARM.exidx.text.flash_dma_callback) refers to mk_flash.o(.text.flash_dma_callback) for [Anonymous Symbol]
    mk_flash.o(.text.flash_page_write) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_flash.o(.text.flash_page_write) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_page_write) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_page_write) refers to mk_flash.o(.text.flash_wait_done) for flash_wait_done
    mk_flash.o(.text.flash_page_write) refers to mk_flash.o(.rodata.str1.1) for .L.str.5
    mk_flash.o(.text.flash_page_write) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_page_write) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_flash.o(.ARM.exidx.text.flash_page_write) refers to mk_flash.o(.text.flash_page_write) for [Anonymous Symbol]
    mk_flash.o(.text.flash_read) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_state_update) for flash_state_update
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_reset_cmd) for flash_reset_cmd
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_read) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_flash.o(.text.flash_read) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_flash.o(.text.flash_read) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_write_mem_cmd) for flash_write_mem_cmd
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.rodata.str1.1) for .L.str.1
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.rodata.cst32) for .L__const.flash_read.flash_rd_dma_cfg
    mk_flash.o(.text.flash_read) refers to mk_flash.o(.text.flash_dma_callback) for flash_dma_callback
    mk_flash.o(.ARM.exidx.text.flash_read) refers to mk_flash.o(.text.flash_read) for [Anonymous Symbol]
    mk_flash.o(.text.FLASH_CTRL_IRQHandler) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.FLASH_CTRL_IRQHandler) refers to mk_flash.o(.text.FLASH_CTRL_IRQHandler) for [Anonymous Symbol]
    mk_flash.o(.text.flash_read_status) refers to mk_flash.o(.text.flash_write_cmd) for flash_write_cmd
    mk_flash.o(.text.flash_read_status) refers to mk_flash.o(.text.flash_wait_status) for flash_wait_status
    mk_flash.o(.text.flash_read_status) refers to mk_flash.o(.data.flash_handle) for flash_handle
    mk_flash.o(.ARM.exidx.text.flash_read_status) refers to mk_flash.o(.text.flash_read_status) for [Anonymous Symbol]
    mk_flash.o(.ARM.exidx.text.int_lock) refers to mk_flash.o(.text.int_lock) for [Anonymous Symbol]
    mk_flash.o(.ARM.exidx.text.int_unlock) refers to mk_flash.o(.text.int_unlock) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_gpio.o(.text.gpio_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_gpio.o(.ARM.exidx.text.gpio_open) refers to mk_gpio.o(.text.gpio_open) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_gpio.o(.ARM.exidx.text.gpio_close) refers to mk_gpio.o(.text.gpio_close) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_write) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_write) refers to mk_gpio.o(.text.gpio_write) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_read) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_read) refers to mk_gpio.o(.text.gpio_read) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_set) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_set) refers to mk_gpio.o(.text.gpio_pin_set) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_clr) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_clr) refers to mk_gpio.o(.text.gpio_pin_clr) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_toggle) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_toggle) refers to mk_gpio.o(.text.gpio_pin_toggle) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_get_val) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_get_val) refers to mk_gpio.o(.text.gpio_pin_get_val) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_pin_set_dir) refers to mk_gpio.o(.text.gpio_pin_set) for gpio_pin_set
    mk_gpio.o(.text.gpio_pin_set_dir) refers to mk_gpio.o(.text.gpio_pin_clr) for gpio_pin_clr
    mk_gpio.o(.text.gpio_pin_set_dir) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_pin_set_dir) refers to mk_gpio.o(.text.gpio_pin_set_dir) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_enable_irq) refers to mk_gpio.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_gpio.o(.text.gpio_enable_irq) refers to mk_gpio.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_gpio.o(.text.gpio_enable_irq) refers to mk_gpio.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_gpio.o(.text.gpio_enable_irq) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_enable_irq) refers to mk_gpio.o(.text.gpio_enable_irq) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_gpio.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_gpio.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_gpio.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_gpio.o(.text.gpio_disable_irq) refers to mk_gpio.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_gpio.o(.text.gpio_disable_irq) refers to mk_gpio.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_gpio.o(.text.gpio_disable_irq) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.gpio_disable_irq) refers to mk_gpio.o(.text.gpio_disable_irq) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_gpio.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_gpio.o(.text.GPIO_IRQHandler) refers to mk_gpio.o(.data.gpio_handle) for [Anonymous Symbol]
    mk_gpio.o(.ARM.exidx.text.GPIO_IRQHandler) refers to mk_gpio.o(.text.GPIO_IRQHandler) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_pin_mux_set) refers to mk_io.o(.text.io_pin_mux_set) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_open_drain_set) refers to mk_io.o(.text.io_open_drain_set) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_drive_set) refers to mk_io.o(.text.io_drive_set) for [Anonymous Symbol]
    mk_io.o(.ARM.exidx.text.io_pull_set) refers to mk_io.o(.text.io_pull_set) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mk_chip_id) refers to mk_misc.o(.text.mk_chip_id) for [Anonymous Symbol]
    mk_misc.o(.text.mk_chip_uuid) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_misc.o(.text.mk_chip_uuid) refers to mk_misc.o(.rodata.str1.1) for .L.str
    mk_misc.o(.ARM.exidx.text.mk_chip_uuid) refers to mk_misc.o(.text.mk_chip_uuid) for [Anonymous Symbol]
    mk_misc.o(.text.bod_open) refers to mk_misc.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_misc.o(.text.bod_open) refers to mk_misc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_misc.o(.text.bod_open) refers to mk_misc.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_misc.o(.text.bod_open) refers to mk_misc.o(.rodata.default_bod_cfg) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.bod_open) refers to mk_misc.o(.text.bod_open) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_misc.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_misc.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_misc.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_misc.o(.text.bod_close) refers to mk_misc.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_misc.o(.text.bod_close) refers to mk_misc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_misc.o(.ARM.exidx.text.bod_close) refers to mk_misc.o(.text.bod_close) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_misc.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.BOD_IRQHandler) refers to mk_misc.o(.text.BOD_IRQHandler) for [Anonymous Symbol]
    mk_misc.o(.text.bor_open) refers to mk_misc.o(.rodata.default_bor_cfg) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.bor_open) refers to mk_misc.o(.text.bor_open) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.bor_close) refers to mk_misc.o(.text.bor_close) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_open) refers to mk_dual_timer.o(.text.dual_timer_open) for dual_timer_open
    mk_misc.o(.text.sys_timer_open) refers to mk_dual_timer.o(.text.dual_timer_start) for dual_timer_start
    mk_misc.o(.text.sys_timer_open) refers to mk_clock.o(.text.clock_get_frequency) for clock_get_frequency
    mk_misc.o(.text.sys_timer_open) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_timer_open) refers to mk_misc.o(.rodata..L__const.sys_timer_open.sys_timer_cfg) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_open) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_misc.o(.ARM.exidx.text.sys_timer_open) refers to mk_misc.o(.text.sys_timer_open) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_close) refers to mk_dual_timer.o(.text.dual_timer_close) for dual_timer_close
    mk_misc.o(.ARM.exidx.text.sys_timer_close) refers to mk_misc.o(.text.sys_timer_close) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_get) refers to mk_dual_timer.o(.text.dual_timer_get) for dual_timer_get
    mk_misc.o(.ARM.exidx.text.sys_timer_get) refers to mk_misc.o(.text.sys_timer_get) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_delay_us) refers to mk_dual_timer.o(.text.dual_timer_get) for dual_timer_get
    mk_misc.o(.text.sys_timer_delay_us) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_timer_delay_us) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_misc.o(.ARM.exidx.text.sys_timer_delay_us) refers to mk_misc.o(.text.sys_timer_delay_us) for [Anonymous Symbol]
    mk_misc.o(.text.sys_timer_delay_ms) refers to mk_dual_timer.o(.text.dual_timer_get) for dual_timer_get
    mk_misc.o(.text.sys_timer_delay_ms) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_timer_delay_ms) refers to mk_misc.o(.bss.sys_timer_freq) for sys_timer_freq
    mk_misc.o(.ARM.exidx.text.sys_timer_delay_ms) refers to mk_misc.o(.text.sys_timer_delay_ms) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_open) refers to mk_dual_timer.o(.text.dual_timer_open) for dual_timer_open
    mk_misc.o(.text.mac_timer_open) refers to mk_misc.o(.rodata..L__const.mac_timer_open.mac_timer_cfg) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mac_timer_open) refers to mk_misc.o(.text.mac_timer_open) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_close) refers to mk_dual_timer.o(.text.dual_timer_close) for dual_timer_close
    mk_misc.o(.ARM.exidx.text.mac_timer_close) refers to mk_misc.o(.text.mac_timer_close) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_start) refers to mk_dual_timer.o(.text.dual_timer_start) for dual_timer_start
    mk_misc.o(.ARM.exidx.text.mac_timer_start) refers to mk_misc.o(.text.mac_timer_start) for [Anonymous Symbol]
    mk_misc.o(.text.mac_timer_stop) refers to mk_dual_timer.o(.text.dual_timer_stop) for dual_timer_stop
    mk_misc.o(.ARM.exidx.text.mac_timer_stop) refers to mk_misc.o(.text.mac_timer_stop) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_start) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_misc.o(.text.sys_tick_start) refers to mk_misc.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_misc.o(.text.sys_tick_start) refers to mk_misc.o(.rodata.str1.1) for .L.str
    mk_misc.o(.ARM.exidx.text.sys_tick_start) refers to mk_misc.o(.text.sys_tick_start) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_us) refers to mk_misc.o(.text.int_lock) for int_lock
    mk_misc.o(.text.sys_tick_us) refers to mk_misc.o(.text.int_unlock) for int_unlock
    mk_misc.o(.text.sys_tick_us) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_us) refers to mk_misc.o(.text.sys_tick_us) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.int_lock) refers to mk_misc.o(.text.int_lock) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.int_unlock) refers to mk_misc.o(.text.int_unlock) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_ms) refers to mk_misc.o(.text.int_lock) for int_lock
    mk_misc.o(.text.sys_tick_ms) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_tick_ms) refers to mk_misc.o(.text.int_unlock) for int_unlock
    mk_misc.o(.text.sys_tick_ms) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_ms) refers to mk_misc.o(.text.sys_tick_ms) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_get) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_get) refers to mk_misc.o(.text.sys_tick_get) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_callback_set) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_callback_set) refers to mk_misc.o(.text.sys_tick_callback_set) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_elapse_ms) refers to mk_misc.o(.text.int_lock) for int_lock
    mk_misc.o(.text.sys_tick_elapse_ms) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_tick_elapse_ms) refers to mk_misc.o(.text.int_unlock) for int_unlock
    mk_misc.o(.ARM.exidx.text.sys_tick_elapse_ms) refers to mk_misc.o(.text.sys_tick_elapse_ms) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_pause) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_pause) refers to mk_misc.o(.text.sys_tick_pause) for [Anonymous Symbol]
    mk_misc.o(.text.sys_tick_resume) refers to mk_misc.o(.text.sys_tick_start) for sys_tick_start
    mk_misc.o(.text.sys_tick_resume) refers to mk_sleep_timer.o(.text.high_xtal_off_time) for high_xtal_off_time
    mk_misc.o(.text.sys_tick_resume) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_misc.o(.text.sys_tick_resume) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.sys_tick_resume) refers to mk_misc.o(.text.sys_tick_resume) for [Anonymous Symbol]
    mk_misc.o(.text.SysTick_Handler) refers to mk_misc.o(.bss.sys_tick_env) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.SysTick_Handler) refers to mk_misc.o(.text.SysTick_Handler) for [Anonymous Symbol]
    mk_misc.o(.text.sys_reset) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_misc.o(.text.sys_reset) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_misc.o(.text.sys_reset) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_misc.o(.text.sys_reset) refers to mk_misc.o(.rodata.str1.1) for .L.str.3
    mk_misc.o(.ARM.exidx.text.sys_reset) refers to mk_misc.o(.text.sys_reset) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.delay_us) refers to mk_misc.o(.text.delay_us) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.count_bits) refers to mk_misc.o(.text.count_bits) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.search_byte_right_one) refers to mk_misc.o(.text.search_byte_right_one) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.byte_right_one_mask) refers to mk_misc.o(.text.byte_right_one_mask) for [Anonymous Symbol]
    mk_misc.o(.text.average_filter) refers to ldiv.o(.text) for __aeabi_ldivmod
    mk_misc.o(.text.average_filter) refers to mk_misc.o(.bss.average_filter.data_num) for [Anonymous Symbol]
    mk_misc.o(.text.average_filter) refers to mk_misc.o(.bss.average_filter.data_buffer) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.average_filter) refers to mk_misc.o(.text.average_filter) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mk_q7_to_s16) refers to mk_misc.o(.text.mk_q7_to_s16) for [Anonymous Symbol]
    mk_misc.o(.ARM.exidx.text.mk_s16_to_q7) refers to mk_misc.o(.text.mk_s16_to_q7) for [Anonymous Symbol]
    mk_misc.o(.text.mk_q7_to_f32) refers to dflti.o(.text) for __aeabi_i2d
    mk_misc.o(.text.mk_q7_to_f32) refers to ddiv.o(.text) for __aeabi_ddiv
    mk_misc.o(.text.mk_q7_to_f32) refers to d2f.o(.text) for __aeabi_d2f
    mk_misc.o(.ARM.exidx.text.mk_q7_to_f32) refers to mk_misc.o(.text.mk_q7_to_f32) for [Anonymous Symbol]
    mk_misc.o(.text.mk_f32_to_q7) refers to fmul.o(.text) for __aeabi_fmul
    mk_misc.o(.text.mk_f32_to_q7) refers to ffixi.o(.text) for __aeabi_f2iz
    mk_misc.o(.ARM.exidx.text.mk_f32_to_q7) refers to mk_misc.o(.text.mk_f32_to_q7) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_fem_tx_ctrl) refers to mk_power.o(.text.power_fem_tx_ctrl) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_fem_rx_ctrl) refers to mk_power.o(.text.power_fem_rx_ctrl) for [Anonymous Symbol]
    mk_power.o(.text.power_init) refers to mk_misc.o(.text.bor_close) for bor_close
    mk_power.o(.ARM.exidx.text.power_init) refers to mk_power.o(.text.power_init) for [Anonymous Symbol]
    mk_power.o(.text.power_on_radio) refers to mk_power.o(.text.power_mode_request) for power_mode_request
    mk_power.o(.text.power_on_radio) refers to mk_power.o(.text.power_fem_tx_ctrl) for power_fem_tx_ctrl
    mk_power.o(.text.power_on_radio) refers to mk_power.o(.text.power_fem_rx_ctrl) for power_fem_rx_ctrl
    mk_power.o(.ARM.exidx.text.power_on_radio) refers to mk_power.o(.text.power_on_radio) for [Anonymous Symbol]
    mk_power.o(.text.power_mode_request) refers to mk_power.o(.text.int_lock) for int_lock
    mk_power.o(.text.power_mode_request) refers to mk_power.o(.text.int_unlock) for int_unlock
    mk_power.o(.text.power_mode_request) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_mode_request) refers to mk_power.o(.text.power_mode_request) for [Anonymous Symbol]
    mk_power.o(.text.power_off_radio) refers to mk_power.o(.text.power_fem_tx_ctrl) for power_fem_tx_ctrl
    mk_power.o(.text.power_off_radio) refers to mk_power.o(.text.power_fem_rx_ctrl) for power_fem_rx_ctrl
    mk_power.o(.text.power_off_radio) refers to mk_power.o(.text.power_mode_clear) for power_mode_clear
    mk_power.o(.ARM.exidx.text.power_off_radio) refers to mk_power.o(.text.power_off_radio) for [Anonymous Symbol]
    mk_power.o(.text.power_mode_clear) refers to mk_power.o(.text.int_lock) for int_lock
    mk_power.o(.text.power_mode_clear) refers to mk_power.o(.text.int_unlock) for int_unlock
    mk_power.o(.text.power_mode_clear) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_mode_clear) refers to mk_power.o(.text.power_mode_clear) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_enter_sleep_mode) refers to mk_power.o(.text.power_enter_sleep_mode) for [Anonymous Symbol]
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_power.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_power.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_flash.o(.text.flash_power_down) for flash_power_down
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_flash.o(.text.flash_power_up) for flash_power_up
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_power.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_power.o(.text.enter_power_down_in_ram) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_power.o(.ARM.exidx.text.enter_power_down_in_ram) refers to mk_power.o(.text.enter_power_down_in_ram) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_power.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_power.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_power.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_power.o(.text.power_enter_power_down_mode) refers to board.o(.text.board_prepare_for_power_down) for board_prepare_for_power_down
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_misc.o(.text.sys_tick_pause) for sys_tick_pause
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_clock.o(.text.clock_attach) for clock_attach
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_power.o(.text.enter_power_down_in_ram) for enter_power_down_in_ram
    mk_power.o(.text.power_enter_power_down_mode) refers to mk_misc.o(.text.sys_tick_resume) for sys_tick_resume
    mk_power.o(.text.power_enter_power_down_mode) refers to board.o(.text.board_restore_from_power_down) for board_restore_from_power_down
    mk_power.o(.ARM.exidx.text.power_enter_power_down_mode) refers to mk_power.o(.text.power_enter_power_down_mode) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.board_prepare_for_power_down) refers to mk_power.o(.text.board_prepare_for_power_down) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.board_restore_from_power_down) refers to mk_power.o(.text.board_restore_from_power_down) for [Anonymous Symbol]
    mk_power.o(.text.enter_shelf_mode_in_ram) refers to mk_flash.o(.text.flash_power_down) for flash_power_down
    mk_power.o(.ARM.exidx.text.enter_shelf_mode_in_ram) refers to mk_power.o(.text.enter_shelf_mode_in_ram) for [Anonymous Symbol]
    mk_power.o(.text.power_enter_shelf_mode) refers to board.o(.text.board_prepare_for_power_down) for board_prepare_for_power_down
    mk_power.o(.text.power_enter_shelf_mode) refers to mk_power.o(.text.enter_shelf_mode_in_ram) for enter_shelf_mode_in_ram
    mk_power.o(.ARM.exidx.text.power_enter_shelf_mode) refers to mk_power.o(.text.power_enter_shelf_mode) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.int_lock) refers to mk_power.o(.text.int_lock) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.int_unlock) refers to mk_power.o(.text.int_unlock) for [Anonymous Symbol]
    mk_power.o(.text.power_mode_requester_get) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_mode_requester_get) refers to mk_power.o(.text.power_mode_requester_get) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_wakeup_enable) refers to mk_power.o(.text.power_wakeup_enable) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_wakeup_disable) refers to mk_power.o(.text.power_wakeup_disable) for [Anonymous Symbol]
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.int_lock) for int_lock
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_check_io_power_mode) for power_check_io_power_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_check_if_power_mode) for power_check_if_power_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_enter_sleep_mode) for power_enter_sleep_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_enter_power_down_mode) for power_enter_power_down_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_enter_shelf_mode) for power_enter_shelf_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.power_clear_if_power_mode) for power_clear_if_power_mode
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.int_unlock) for int_unlock
    mk_power.o(.text.power_manage) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_power.o(.text.power_manage) refers to mk_power.o(.text.app_restore_from_power_down) for app_restore_from_power_down
    mk_power.o(.text.power_manage) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.text.power_manage) refers to mk_power.o(.rodata.str1.1) for .L.str
    mk_power.o(.ARM.exidx.text.power_manage) refers to mk_power.o(.text.power_manage) for [Anonymous Symbol]
    mk_power.o(.text.power_check_io_power_mode) refers to mk_power.o(.text.power_mode_clear) for power_mode_clear
    mk_power.o(.text.power_check_io_power_mode) refers to mk_power.o(.text.power_mode_request) for power_mode_request
    mk_power.o(.text.power_check_io_power_mode) refers to mk_power.o(.bss.power_env) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.power_check_io_power_mode) refers to mk_power.o(.text.power_check_io_power_mode) for [Anonymous Symbol]
    mk_power.o(.text.power_check_if_power_mode) refers to mk_uart.o(.text.uart_state_get) for uart_state_get
    mk_power.o(.text.power_check_if_power_mode) refers to mk_power.o(.text.power_mode_request) for power_mode_request
    mk_power.o(.text.power_check_if_power_mode) refers to mk_uart.o(.text.uart_fifo_busy) for uart_fifo_busy
    mk_power.o(.ARM.exidx.text.power_check_if_power_mode) refers to mk_power.o(.text.power_check_if_power_mode) for [Anonymous Symbol]
    mk_power.o(.text.power_clear_if_power_mode) refers to mk_power.o(.text.power_mode_clear) for power_mode_clear
    mk_power.o(.ARM.exidx.text.power_clear_if_power_mode) refers to mk_power.o(.text.power_clear_if_power_mode) for [Anonymous Symbol]
    mk_power.o(.ARM.exidx.text.app_restore_from_power_down) refers to mk_power.o(.text.app_restore_from_power_down) for [Anonymous Symbol]
    mk_reset.o(.text.reset_cause_get) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_reset.o(.text.reset_cause_get) refers to mk_reset.o(.rodata.str1.1) for .L.str.8
    mk_reset.o(.ARM.exidx.text.reset_cause_get) refers to mk_reset.o(.text.reset_cause_get) for [Anonymous Symbol]
    mk_reset.o(.ARM.exidx.text.reset_cause_clear) refers to mk_reset.o(.text.reset_cause_clear) for [Anonymous Symbol]
    mk_reset.o(.ARM.exidx.text.reset_module) refers to mk_reset.o(.text.reset_module) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_rtc.o(.text.rtc_open) refers to mk_rtc.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_rtc.o(.text.rtc_open) refers to mk_rtc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_rtc.o(.text.rtc_open) refers to mk_rtc.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_rtc.o(.text.rtc_open) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rtc_open) refers to mk_rtc.o(.text.rtc_open) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_rtc.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_rtc.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_rtc.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_close) refers to mk_rtc.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_rtc.o(.text.rtc_close) refers to mk_rtc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_rtc.o(.text.rtc_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_rtc.o(.text.rtc_close) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rtc_close) refers to mk_rtc.o(.text.rtc_close) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_rtc.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_set) refers to mk_rtc.o(.text.rtc_check_parameter) for rtc_check_parameter
    mk_rtc.o(.text.rtc_set) refers to mk_rtc.o(.text.rtc_time_to_second) for rtc_time_to_second
    mk_rtc.o(.text.rtc_set) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rtc_set) refers to mk_rtc.o(.text.rtc_set) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_check_parameter) refers to mk_rtc.o(.text.rtc_month_days) for rtc_month_days
    mk_rtc.o(.ARM.exidx.text.rtc_check_parameter) refers to mk_rtc.o(.text.rtc_check_parameter) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_time_to_second) refers to mk_rtc.o(.text.mktime) for mktime
    mk_rtc.o(.ARM.exidx.text.rtc_time_to_second) refers to mk_rtc.o(.text.rtc_time_to_second) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_get) refers to mk_rtc.o(.text.rtc_second_to_time) for rtc_second_to_time
    mk_rtc.o(.text.rtc_get) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rtc_get) refers to mk_rtc.o(.text.rtc_get) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_second_to_time) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_rtc.o(.text.rtc_second_to_time) refers to idiv.o(.text) for __aeabi_idiv
    mk_rtc.o(.text.rtc_second_to_time) refers to mk_rtc.o(.text.is_leap_year) for is_leap_year
    mk_rtc.o(.text.rtc_second_to_time) refers to mk_rtc.o(.text.rtc_month_days) for rtc_month_days
    mk_rtc.o(.ARM.exidx.text.rtc_second_to_time) refers to mk_rtc.o(.text.rtc_second_to_time) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_set_alarm) refers to mk_rtc.o(.text.rtc_check_parameter) for rtc_check_parameter
    mk_rtc.o(.text.rtc_set_alarm) refers to mk_rtc.o(.text.rtc_time_to_second) for rtc_time_to_second
    mk_rtc.o(.text.rtc_set_alarm) refers to mk_rtc.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_rtc.o(.text.rtc_set_alarm) refers to mk_rtc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_rtc.o(.text.rtc_set_alarm) refers to mk_rtc.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_rtc.o(.text.rtc_set_alarm) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rtc_set_alarm) refers to mk_rtc.o(.text.rtc_set_alarm) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_clear_alarm) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rtc_clear_alarm) refers to mk_rtc.o(.text.rtc_clear_alarm) for [Anonymous Symbol]
    mk_rtc.o(.text.RTC_TICK_IRQHandler) refers to mk_rtc.o(.text.rtc_second_to_time) for rtc_second_to_time
    mk_rtc.o(.text.RTC_TICK_IRQHandler) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.RTC_TICK_IRQHandler) refers to mk_rtc.o(.text.RTC_TICK_IRQHandler) for [Anonymous Symbol]
    mk_rtc.o(.text.RTC_ALARM_IRQHandler) refers to mk_rtc.o(.text.rtc_second_to_time) for rtc_second_to_time
    mk_rtc.o(.text.RTC_ALARM_IRQHandler) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.RTC_ALARM_IRQHandler) refers to mk_rtc.o(.text.RTC_ALARM_IRQHandler) for [Anonymous Symbol]
    mk_rtc.o(.text.rco32k_clk_calibrate) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_rtc.o(.text.rco32k_clk_calibrate) refers to mk_rtc.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_rtc.o(.text.rco32k_clk_calibrate) refers to mk_rtc.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_rtc.o(.text.rco32k_clk_calibrate) refers to mk_rtc.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_rtc.o(.text.rco32k_clk_calibrate) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rco32k_clk_calibrate) refers to mk_rtc.o(.text.rco32k_clk_calibrate) for [Anonymous Symbol]
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to mk_clock.o(.text.clock_get_frequency) for clock_get_frequency
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to idiv.o(.text) for __aeabi_idiv
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to mk_sleep_timer.o(.text.sleep_timer_ppm_set) for sleep_timer_ppm_set
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to mk_rtc.o(.data.rtc_handle) for [Anonymous Symbol]
    mk_rtc.o(.text.RCO32K_CAL_IRQHandler) refers to mk_rtc.o(.rodata.str1.1) for .L.str
    mk_rtc.o(.ARM.exidx.text.RCO32K_CAL_IRQHandler) refers to mk_rtc.o(.text.RCO32K_CAL_IRQHandler) for [Anonymous Symbol]
    mk_rtc.o(.text.rtc_month_days) refers to mk_rtc.o(.text.is_leap_year) for is_leap_year
    mk_rtc.o(.text.rtc_month_days) refers to mk_rtc.o(.rodata.rtc_days_in_month) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.rtc_month_days) refers to mk_rtc.o(.text.rtc_month_days) for [Anonymous Symbol]
    mk_rtc.o(.ARM.exidx.text.is_leap_year) refers to mk_rtc.o(.text.is_leap_year) for [Anonymous Symbol]
    mk_rtc.o(.text.mktime) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_rtc.o(.ARM.exidx.text.mktime) refers to mk_rtc.o(.text.mktime) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_sleep_timer.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_sleep_timer.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_sleep_timer.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_power.o(.text.power_wakeup_enable) for power_wakeup_enable
    mk_sleep_timer.o(.text.sleep_timer_open) refers to mk_sleep_timer.o(.data.sleep_timer_handle) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_open) refers to mk_sleep_timer.o(.text.sleep_timer_open) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_sleep_timer.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_sleep_timer.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_sleep_timer.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_close) refers to mk_sleep_timer.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_sleep_timer.o(.text.sleep_timer_close) refers to mk_sleep_timer.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_sleep_timer.o(.text.sleep_timer_close) refers to mk_sleep_timer.o(.data.sleep_timer_handle) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_close) refers to mk_sleep_timer.o(.text.sleep_timer_close) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_sleep_timer.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_start) refers to idiv.o(.text) for __aeabi_idiv
    mk_sleep_timer.o(.text.sleep_timer_start) refers to mk_sleep_timer.o(.data.sleep_timer_handle) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_start) refers to mk_sleep_timer.o(.text.sleep_timer_start) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_stop) refers to mk_sleep_timer.o(.text.sleep_timer_stop) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.high_xtal_off_time) refers to mk_sleep_timer.o(.text.high_xtal_off_time) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_ppm_set) refers to mk_sleep_timer.o(.data.sleep_timer_handle) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_set) refers to mk_sleep_timer.o(.text.sleep_timer_ppm_set) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.sleep_timer_ppm_get) refers to mk_sleep_timer.o(.data.sleep_timer_handle) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_get) refers to mk_sleep_timer.o(.text.sleep_timer_ppm_get) for [Anonymous Symbol]
    mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) refers to mk_sleep_timer.o(.rodata.str1.1) for .L.str
    mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) refers to mk_sleep_timer.o(.data.sleep_timer_handle) for [Anonymous Symbol]
    mk_sleep_timer.o(.ARM.exidx.text.SLEEP_TIMER_IRQHandler) refers to mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler) for [Anonymous Symbol]
    mk_trace.o(.text.trace_open) refers to mk_uart.o(.text.uart_open) for uart_open
    mk_trace.o(.text.trace_open) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_open) refers to mk_trace.o(.text.trace_open) for [Anonymous Symbol]
    mk_trace.o(.text.trace_close) refers to mk_uart.o(.text.uart_close) for uart_close
    mk_trace.o(.text.trace_close) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_close) refers to mk_trace.o(.text.trace_close) for [Anonymous Symbol]
    mk_trace.o(.text.trace_crash_dump_cb_register) refers to mk_trace.o(.bss.trace_crash_dump_cb_list) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_crash_dump_cb_register) refers to mk_trace.o(.text.trace_crash_dump_cb_register) for [Anonymous Symbol]
    mk_trace.o(.text.trace_buf_is_empty) refers to mk_trace.o(.text.int_lock) for int_lock
    mk_trace.o(.text.trace_buf_is_empty) refers to mk_trace.o(.text.int_unlock) for int_unlock
    mk_trace.o(.text.trace_buf_is_empty) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_buf_is_empty) refers to mk_trace.o(.text.trace_buf_is_empty) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.int_lock) refers to mk_trace.o(.text.int_lock) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.int_unlock) refers to mk_trace.o(.text.int_unlock) for [Anonymous Symbol]
    mk_trace.o(.text.trace_output) refers to mk_trace.o(.text.int_lock) for int_lock
    mk_trace.o(.text.trace_output) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_trace.o(.text.trace_output) refers to memcpya.o(.text) for __aeabi_memcpy
    mk_trace.o(.text.trace_output) refers to mk_trace.o(.text.trace_sending) for trace_sending
    mk_trace.o(.text.trace_output) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_trace.o(.text.trace_output) refers to mk_trace.o(.text.int_unlock) for int_unlock
    mk_trace.o(.text.trace_output) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.text.trace_output) refers to mk_trace.o(.rodata.str1.1) for .L.str.1
    mk_trace.o(.ARM.exidx.text.trace_output) refers to mk_trace.o(.text.trace_output) for [Anonymous Symbol]
    mk_trace.o(.text.trace_printf) refers to memseta.o(.text) for __aeabi_memclr
    mk_trace.o(.text.trace_printf) refers to mk_misc.o(.text.sys_tick_us) for sys_tick_us
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.text.mk_snprintf) for mk_snprintf
    mk_trace.o(.text.trace_printf) refers to libc.o(.text.strlen) for strlen
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.text.trace_format) for trace_format
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.text.trace_output) for trace_output
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.rodata.trace_level_cfg) for [Anonymous Symbol]
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.rodata.str1.1) for .L.str.3
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.data.module_name) for [Anonymous Symbol]
    mk_trace.o(.text.trace_printf) refers to mk_trace.o(.data.level_tag) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_printf) refers to mk_trace.o(.text.trace_printf) for [Anonymous Symbol]
    mk_trace.o(.text.trace_sending) refers to mk_trace.o(.text.int_lock) for int_lock
    mk_trace.o(.text.trace_sending) refers to mk_uart.o(.text.uart_send) for uart_send
    mk_trace.o(.text.trace_sending) refers to mk_trace.o(.text.int_unlock) for int_unlock
    mk_trace.o(.text.trace_sending) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.text.trace_sending) refers to mk_trace.o(.text.trace_sending_continue) for trace_sending_continue
    mk_trace.o(.ARM.exidx.text.trace_sending) refers to mk_trace.o(.text.trace_sending) for [Anonymous Symbol]
    mk_trace.o(.text.trace_assert_dump) refers to mk_trace.o(.text.int_lock) for int_lock
    mk_trace.o(.text.trace_assert_dump) refers to mk_trace.o(.text.trace_format) for trace_format
    mk_trace.o(.text.trace_assert_dump) refers to mk_trace.o(.text._trace_assert_dump) for _trace_assert_dump
    mk_trace.o(.text.trace_assert_dump) refers to mk_trace.o(.text.trace_crash_dump_callback) for trace_crash_dump_callback
    mk_trace.o(.text.trace_assert_dump) refers to mk_trace.o(.text.trace_end) for trace_end
    mk_trace.o(.text.trace_assert_dump) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_assert_dump) refers to mk_trace.o(.text.trace_assert_dump) for [Anonymous Symbol]
    mk_trace.o(.text.trace_format) refers to mk_trace.o(.text._StoreChar) for _StoreChar
    mk_trace.o(.text.trace_format) refers to mk_trace.o(.text._PrintInt) for _PrintInt
    mk_trace.o(.text.trace_format) refers to mk_trace.o(.text._PrintUnsigned) for _PrintUnsigned
    mk_trace.o(.text.trace_format) refers to d2f.o(.text) for __aeabi_d2f
    mk_trace.o(.text.trace_format) refers to fcmpge.o(.text) for __aeabi_fcmpge
    mk_trace.o(.text.trace_format) refers to ffixi.o(.text) for __aeabi_f2iz
    mk_trace.o(.text.trace_format) refers to libc.o(.text.abs) for abs
    mk_trace.o(.text.trace_format) refers to fmul.o(.text) for __aeabi_fmul
    mk_trace.o(.text.trace_format) refers to idiv.o(.text) for __aeabi_idivmod
    mk_trace.o(.ARM.exidx.text.trace_format) refers to mk_trace.o(.text.trace_format) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text._StoreChar) refers to mk_trace.o(.text._StoreChar) for [Anonymous Symbol]
    mk_trace.o(.text._PrintInt) refers to idiv.o(.text) for __aeabi_idiv
    mk_trace.o(.text._PrintInt) refers to mk_trace.o(.text._StoreChar) for _StoreChar
    mk_trace.o(.text._PrintInt) refers to mk_trace.o(.text._PrintUnsigned) for _PrintUnsigned
    mk_trace.o(.ARM.exidx.text._PrintInt) refers to mk_trace.o(.text._PrintInt) for [Anonymous Symbol]
    mk_trace.o(.text._PrintUnsigned) refers to uidiv.o(.text) for __aeabi_uidiv
    mk_trace.o(.text._PrintUnsigned) refers to mk_trace.o(.text._StoreChar) for _StoreChar
    mk_trace.o(.text._PrintUnsigned) refers to mk_trace.o(.rodata._PrintUnsigned._aV2C) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text._PrintUnsigned) refers to mk_trace.o(.text._PrintUnsigned) for [Anonymous Symbol]
    mk_trace.o(.text.mk_snprintf) refers to mk_trace.o(.text.trace_format) for trace_format
    mk_trace.o(.ARM.exidx.text.mk_snprintf) refers to mk_trace.o(.text.mk_snprintf) for [Anonymous Symbol]
    mk_trace.o(.text.trace_dump) refers to memseta.o(.text) for __aeabi_memclr
    mk_trace.o(.text.trace_dump) refers to mk_trace.o(.text.mk_snprintf) for mk_snprintf
    mk_trace.o(.text.trace_dump) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_trace.o(.text.trace_dump) refers to mk_trace.o(.text.trace_output) for trace_output
    mk_trace.o(.text.trace_dump) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.text.trace_dump) refers to mk_trace.o(.rodata.trace_level_cfg) for [Anonymous Symbol]
    mk_trace.o(.text.trace_dump) refers to mk_trace.o(.rodata.str1.1) for .L.str.1
    mk_trace.o(.ARM.exidx.text.trace_dump) refers to mk_trace.o(.text.trace_dump) for [Anonymous Symbol]
    mk_trace.o(.text.trace_end) refers to mk_trace.o(.text.trace_output_blocking) for trace_output_blocking
    mk_trace.o(.text.trace_end) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_trace.o(.text.trace_end) refers to mk_trace.o(.rodata.str1.1) for .L.str.6
    mk_trace.o(.ARM.exidx.text.trace_end) refers to mk_trace.o(.text.trace_end) for [Anonymous Symbol]
    mk_trace.o(.text.trace_output_blocking) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_output_blocking) refers to mk_trace.o(.text.trace_output_blocking) for [Anonymous Symbol]
    mk_trace.o(.text.trace_flush) refers to mk_uart.o(.text.uart_tx_in_progress) for uart_tx_in_progress
    mk_trace.o(.text.trace_flush) refers to mk_trace.o(.text.int_lock) for int_lock
    mk_trace.o(.text.trace_flush) refers to mk_trace.o(.text.trace_output_blocking) for trace_output_blocking
    mk_trace.o(.text.trace_flush) refers to mk_trace.o(.text.int_unlock) for int_unlock
    mk_trace.o(.text.trace_flush) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_flush) refers to mk_trace.o(.text.trace_flush) for [Anonymous Symbol]
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.text.trace_flush) for trace_flush
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.text.trace_output_blocking) for trace_output_blocking
    mk_trace.o(.text._trace_assert_dump) refers to libc.o(.text.strlen) for strlen
    mk_trace.o(.text._trace_assert_dump) refers to mk_misc.o(.text.sys_tick_us) for sys_tick_us
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.text.mk_snprintf) for mk_snprintf
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.text.trace_print_backtrace) for trace_print_backtrace
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.rodata._trace_assert_dump.separate_line) for [Anonymous Symbol]
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.rodata.trace_new_line) for [Anonymous Symbol]
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.rodata.str1.1) for .L.str.7
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.rodata._trace_assert_dump.desc_file) for [Anonymous Symbol]
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.rodata._trace_assert_dump.desc_func) for [Anonymous Symbol]
    mk_trace.o(.text._trace_assert_dump) refers to mk_trace.o(.rodata._trace_assert_dump.desc_line) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text._trace_assert_dump) refers to mk_trace.o(.text._trace_assert_dump) for [Anonymous Symbol]
    mk_trace.o(.text.trace_crash_dump_callback) refers to mk_trace.o(.bss.trace_crash_dump_cb_list) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_crash_dump_callback) refers to mk_trace.o(.text.trace_crash_dump_callback) for [Anonymous Symbol]
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.text.trace_flush) for trace_flush
    mk_trace.o(.text.trace_exception_handler) refers to mk_misc.o(.text.sys_tick_us) for sys_tick_us
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.text.mk_snprintf) for mk_snprintf
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.text.trace_output_blocking) for trace_output_blocking
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.rodata.str1.1) for .L.str.7
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.text.trace_print_backtrace) for trace_print_backtrace
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.text.trace_crash_dump_callback) for trace_crash_dump_callback
    mk_trace.o(.text.trace_exception_handler) refers to mk_trace.o(.text.trace_end) for trace_end
    mk_trace.o(.ARM.exidx.text.trace_exception_handler) refers to mk_trace.o(.text.trace_exception_handler) for [Anonymous Symbol]
    mk_trace.o(.text.trace_print_backtrace) refers to mk_trace.o(.text.mk_snprintf) for mk_snprintf
    mk_trace.o(.text.trace_print_backtrace) refers to mk_trace.o(.text.trace_output_blocking) for trace_output_blocking
    mk_trace.o(.text.trace_print_backtrace) refers to mk_trace.o(.text.trace_address_executable) for trace_address_executable
    mk_trace.o(.text.trace_print_backtrace) refers to mk_trace.o(.rodata.str1.1) for .L.str.49
    mk_trace.o(.ARM.exidx.text.trace_print_backtrace) refers to mk_trace.o(.text.trace_print_backtrace) for [Anonymous Symbol]
    mk_trace.o(.text.HardFault_Handler) refers to mk_trace.o(.text.trace_exception_handler) for trace_exception_handler
    mk_trace.o(.ARM.exidx.text.HardFault_Handler) refers to mk_trace.o(.text.HardFault_Handler) for [Anonymous Symbol]
    mk_trace.o(.text.trace_sending_continue) refers to mk_trace.o(.text.int_lock) for int_lock
    mk_trace.o(.text.trace_sending_continue) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_trace.o(.text.trace_sending_continue) refers to mk_trace.o(.text.trace_sending) for trace_sending
    mk_trace.o(.text.trace_sending_continue) refers to mk_trace.o(.text.int_unlock) for int_unlock
    mk_trace.o(.text.trace_sending_continue) refers to mk_trace.o(.bss.trace_handle) for [Anonymous Symbol]
    mk_trace.o(.text.trace_sending_continue) refers to mk_trace.o(.rodata.str1.1) for .L.str.28
    mk_trace.o(.ARM.exidx.text.trace_sending_continue) refers to mk_trace.o(.text.trace_sending_continue) for [Anonymous Symbol]
    mk_trace.o(.ARM.exidx.text.trace_address_executable) refers to mk_trace.o(.text.trace_address_executable) for [Anonymous Symbol]
    mk_trace.o(.data.module_name) refers to mk_trace.o(.rodata.str1.1) for .L.str.29
    mk_trace.o(.data.level_tag) refers to mk_trace.o(.rodata.str1.1) for .L.str.42
    mk_uart.o(.text.uart_state_get) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_state_get) refers to mk_uart.o(.text.uart_state_get) for [Anonymous Symbol]
    mk_uart.o(.text.uart_tx_in_progress) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_tx_in_progress) refers to mk_uart.o(.text.uart_tx_in_progress) for [Anonymous Symbol]
    mk_uart.o(.text.uart_fifo_busy) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_fifo_busy) refers to mk_uart.o(.text.uart_fifo_busy) for [Anonymous Symbol]
    mk_uart.o(.text.uart_rx_fifo_clear) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_rx_fifo_clear) refers to mk_uart.o(.text.uart_rx_fifo_clear) for [Anonymous Symbol]
    mk_uart.o(.text.uart_baud_set) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_uart.o(.text.uart_baud_set) refers to mk_clock.o(.text.clock_set_divider) for clock_set_divider
    mk_uart.o(.text.uart_baud_set) refers to mk_misc.o(.text.delay_us) for delay_us
    mk_uart.o(.text.uart_baud_set) refers to mk_uart.o(.rodata.str1.1) for .L.str
    mk_uart.o(.text.uart_baud_set) refers to mk_uart.o(.rodata.baud_table) for [Anonymous Symbol]
    mk_uart.o(.text.uart_baud_set) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_baud_set) refers to mk_uart.o(.text.uart_baud_set) for [Anonymous Symbol]
    mk_uart.o(.text.uart_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_uart.o(.text.uart_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_uart.o(.text.uart_open) refers to mk_uart.o(.text.uart_baud_set) for uart_baud_set
    mk_uart.o(.text.uart_open) refers to mk_uart.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_uart.o(.text.uart_open) refers to mk_uart.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_uart.o(.text.uart_open) refers to mk_uart.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_uart.o(.text.uart_open) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_open) refers to mk_uart.o(.text.uart_open) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_uart.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_uart.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_uart.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_uart.o(.text.uart_close) refers to mk_uart.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_uart.o(.text.uart_close) refers to mk_uart.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_uart.o(.text.uart_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_uart.o(.text.uart_close) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_close) refers to mk_uart.o(.text.uart_close) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_uart.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.text.uart_state_set) for uart_state_set
    mk_uart.o(.text.uart_send) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_uart.o(.text.uart_send) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_send) refers to mk_uart.o(.text.uart_dma_callback) for uart_dma_callback
    mk_uart.o(.ARM.exidx.text.uart_send) refers to mk_uart.o(.text.uart_send) for [Anonymous Symbol]
    mk_uart.o(.text.uart_state_set) refers to mk_uart.o(.text.int_lock) for int_lock
    mk_uart.o(.text.uart_state_set) refers to mk_uart.o(.text.int_unlock) for int_unlock
    mk_uart.o(.text.uart_state_set) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_state_set) refers to mk_uart.o(.text.uart_state_set) for [Anonymous Symbol]
    mk_uart.o(.text.uart_dma_callback) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_dma_callback) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_uart.o(.text.uart_dma_callback) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_dma_callback) refers to mk_uart.o(.rodata.str1.1) for .L.str
    mk_uart.o(.ARM.exidx.text.uart_dma_callback) refers to mk_uart.o(.text.uart_dma_callback) for [Anonymous Symbol]
    mk_uart.o(.text.uart_state_clear) refers to mk_uart.o(.text.int_lock) for int_lock
    mk_uart.o(.text.uart_state_clear) refers to mk_uart.o(.text.int_unlock) for int_unlock
    mk_uart.o(.text.uart_state_clear) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.uart_state_clear) refers to mk_uart.o(.text.uart_state_clear) for [Anonymous Symbol]
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.text.uart_state_set) for uart_state_set
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_uart.o(.text.uart_receive) refers to mk_dma.o(.text.dma_open) for dma_open
    mk_uart.o(.text.uart_receive) refers to mk_dma.o(.text.dma_transfer) for dma_transfer
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_receive) refers to mk_uart.o(.text.uart_dma_callback) for uart_dma_callback
    mk_uart.o(.ARM.exidx.text.uart_receive) refers to mk_uart.o(.text.uart_receive) for [Anonymous Symbol]
    mk_uart.o(.text.uart_tx_abort_dma) refers to mk_dma.o(.text.dma_abort) for dma_abort
    mk_uart.o(.text.uart_tx_abort_dma) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_tx_abort_dma) refers to mk_uart.o(.text.uart_dma_abort_callback) for uart_dma_abort_callback
    mk_uart.o(.ARM.exidx.text.uart_tx_abort_dma) refers to mk_uart.o(.text.uart_tx_abort_dma) for [Anonymous Symbol]
    mk_uart.o(.text.uart_dma_abort_callback) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_dma_abort_callback) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_uart.o(.text.uart_dma_abort_callback) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_dma_abort_callback) refers to mk_uart.o(.rodata.str1.1) for .L.str
    mk_uart.o(.ARM.exidx.text.uart_dma_abort_callback) refers to mk_uart.o(.text.uart_dma_abort_callback) for [Anonymous Symbol]
    mk_uart.o(.text.uart_rx_abort_dma) refers to mk_dma.o(.text.dma_abort) for dma_abort
    mk_uart.o(.text.uart_rx_abort_dma) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_rx_abort_dma) refers to mk_uart.o(.text.uart_dma_abort_callback) for uart_dma_abort_callback
    mk_uart.o(.ARM.exidx.text.uart_rx_abort_dma) refers to mk_uart.o(.text.uart_rx_abort_dma) for [Anonymous Symbol]
    mk_uart.o(.text.uart_irq_handler) refers to mk_uart.o(.text.uart_state_clear) for uart_state_clear
    mk_uart.o(.text.uart_irq_handler) refers to mk_trace.o(.text.trace_assert_dump) for trace_assert_dump
    mk_uart.o(.text.uart_irq_handler) refers to mk_uart.o(.data.uart_handle) for [Anonymous Symbol]
    mk_uart.o(.text.uart_irq_handler) refers to mk_uart.o(.rodata.str1.1) for .L.str
    mk_uart.o(.ARM.exidx.text.uart_irq_handler) refers to mk_uart.o(.text.uart_irq_handler) for [Anonymous Symbol]
    mk_uart.o(.text.UART0_IRQHandler) refers to mk_uart.o(.text.uart_irq_handler) for uart_irq_handler
    mk_uart.o(.ARM.exidx.text.UART0_IRQHandler) refers to mk_uart.o(.text.UART0_IRQHandler) for [Anonymous Symbol]
    mk_uart.o(.text.UART1_IRQHandler) refers to mk_uart.o(.text.uart_irq_handler) for uart_irq_handler
    mk_uart.o(.ARM.exidx.text.UART1_IRQHandler) refers to mk_uart.o(.text.UART1_IRQHandler) for [Anonymous Symbol]
    mk_uart.o(.text.uart_printf_init) refers to mk_uart.o(.text.uart_open) for uart_open
    mk_uart.o(.text.uart_printf_init) refers to mk_uart.o(.rodata.cst32) for .L__const.uart_printf_init.uart_print_cfg
    mk_uart.o(.ARM.exidx.text.uart_printf_init) refers to mk_uart.o(.text.uart_printf_init) for [Anonymous Symbol]
    mk_uart.o(.text.uart_printf) refers to memseta.o(.text) for __aeabi_memclr
    mk_uart.o(.text.uart_printf) refers to mk_trace.o(.text.trace_format) for trace_format
    mk_uart.o(.text.uart_printf) refers to mk_uart.o(.text.uart_send) for uart_send
    mk_uart.o(.ARM.exidx.text.uart_printf) refers to mk_uart.o(.text.uart_printf) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.int_lock) refers to mk_uart.o(.text.int_lock) for [Anonymous Symbol]
    mk_uart.o(.ARM.exidx.text.int_unlock) refers to mk_uart.o(.text.int_unlock) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_open) refers to mk_clock.o(.text.clock_enable) for clock_enable
    mk_wdt.o(.text.wdt_open) refers to mk_reset.o(.text.reset_module) for reset_module
    mk_wdt.o(.text.wdt_open) refers to mk_wdt.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority
    mk_wdt.o(.text.wdt_open) refers to mk_wdt.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_wdt.o(.text.wdt_open) refers to mk_wdt.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
    mk_wdt.o(.text.wdt_open) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_wdt.o(.text.wdt_open) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_open) refers to mk_wdt.o(.rodata.str1.1) for .L.str
    mk_wdt.o(.ARM.exidx.text.wdt_open) refers to mk_wdt.o(.text.wdt_open) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.__NVIC_SetPriority) refers to mk_wdt.o(.text.__NVIC_SetPriority) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to mk_wdt.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to mk_wdt.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_close) refers to mk_wdt.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
    mk_wdt.o(.text.wdt_close) refers to mk_wdt.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
    mk_wdt.o(.text.wdt_close) refers to mk_clock.o(.text.clock_disable) for clock_disable
    mk_wdt.o(.text.wdt_close) refers to mk_trace.o(.text.trace_printf) for trace_printf
    mk_wdt.o(.text.wdt_close) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_close) refers to mk_wdt.o(.rodata.str1.1) for .L.str.1
    mk_wdt.o(.ARM.exidx.text.wdt_close) refers to mk_wdt.o(.text.wdt_close) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to mk_wdt.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_set_time) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_set_time) refers to mk_wdt.o(.text.wdt_set_time) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_ping) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_ping) refers to mk_wdt.o(.text.wdt_ping) for [Anonymous Symbol]
    mk_wdt.o(.text.wdt_time_left) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.wdt_time_left) refers to mk_wdt.o(.text.wdt_time_left) for [Anonymous Symbol]
    mk_wdt.o(.text.WDT_IRQHandler) refers to mk_wdt.o(.data.wdt_handle) for [Anonymous Symbol]
    mk_wdt.o(.ARM.exidx.text.WDT_IRQHandler) refers to mk_wdt.o(.text.WDT_IRQHandler) for [Anonymous Symbol]
    adc_example.o(.text.main) refers to board.o(.text.board_clock_run) for board_clock_run
    adc_example.o(.text.main) refers to pin_config.o(.text.board_pins_config) for board_pins_config
    adc_example.o(.text.main) refers to board.o(.text.board_debug_console_open) for board_debug_console_open
    adc_example.o(.text.main) refers to mk_reset.o(.text.reset_cause_get) for reset_cause_get
    adc_example.o(.text.main) refers to mk_reset.o(.text.reset_cause_clear) for reset_cause_clear
    adc_example.o(.text.main) refers to mk_calib.o(.text.calib_chip) for calib_chip
    adc_example.o(.text.main) refers to mk_wdt.o(.text.wdt_close) for wdt_close
    adc_example.o(.text.main) refers to mk_gpio.o(.text.gpio_open) for gpio_open
    adc_example.o(.text.main) refers to board.o(.text.board_configure) for board_configure
    adc_example.o(.text.main) refers to mk_adc.o(.text.adc_open) for adc_open
    adc_example.o(.text.main) refers to mk_adc.o(.text.adc_get) for adc_get
    adc_example.o(.text.main) refers to mk_misc.o(.text.delay_us) for delay_us
    adc_example.o(.text.main) refers to adc_example.o(.data.usr_adc_cfg) for [Anonymous Symbol]
    adc_example.o(.text.main) refers to adc_example.o(.bss.sample) for [Anonymous Symbol]
    adc_example.o(.text.main) refers to adc_example.o(.text.adc_callback) for adc_callback
    adc_example.o(.ARM.exidx.text.main) refers to adc_example.o(.text.main) for [Anonymous Symbol]
    adc_example.o(.text.adc_callback) refers to mk_adc.o(.text.adc_code_to_mv) for adc_code_to_mv
    adc_example.o(.text.adc_callback) refers to mk_trace.o(.text.trace_printf) for trace_printf
    adc_example.o(.text.adc_callback) refers to adc_example.o(.rodata.str1.1) for .L.str
    adc_example.o(.text.adc_callback) refers to adc_example.o(.bss.fVoltage_mv) for fVoltage_mv
    adc_example.o(.text.adc_callback) refers to adc_example.o(.bss.bat_percent) for bat_percent
    adc_example.o(.ARM.exidx.text.adc_callback) refers to adc_example.o(.text.adc_callback) for [Anonymous Symbol]
    board.o(.text.board_clock_run) refers to mk_clock.o(.text.clock_attach) for clock_attach
    board.o(.text.board_clock_run) refers to mk_misc.o(.text.delay_us) for delay_us
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_open) for calib_open
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_start) for calib_start
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_check) for calib_check
    board.o(.text.board_clock_run) refers to mk_calib.o(.text.calib_close) for calib_close
    board.o(.text.board_clock_run) refers to mk_clock.o(.text.clock_set_divider) for clock_set_divider
    board.o(.text.board_clock_run) refers to mk_misc.o(.text.sys_tick_start) for sys_tick_start
    board.o(.text.board_clock_run) refers to mk_misc.o(.text.sys_timer_open) for sys_timer_open
    board.o(.ARM.exidx.text.board_clock_run) refers to board.o(.text.board_clock_run) for [Anonymous Symbol]
    board.o(.text.board_debug_console_open) refers to mk_trace.o(.text.trace_open) for trace_open
    board.o(.text.board_debug_console_open) refers to mk_trace.o(.text.trace_printf) for trace_printf
    board.o(.text.board_debug_console_open) refers to board.o(.bss.user_trace_port) for [Anonymous Symbol]
    board.o(.text.board_debug_console_open) refers to board.o(.rodata.str1.1) for .L.str
    board.o(.text.board_debug_console_open) refers to startup_mk800x.o(.ZBUILD_SECTION) for mk_build_inf
    board.o(.ARM.exidx.text.board_debug_console_open) refers to board.o(.text.board_debug_console_open) for [Anonymous Symbol]
    board.o(.text.board_calibration_params_default) refers to board.o(.bss.board_param) for board_param
    board.o(.ARM.exidx.text.board_calibration_params_default) refers to board.o(.text.board_calibration_params_default) for [Anonymous Symbol]
    board.o(.text.board_calibration_params_load) refers to board.o(.text.board_calibration_params_default) for board_calibration_params_default
    board.o(.ARM.exidx.text.board_calibration_params_load) refers to board.o(.text.board_calibration_params_load) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_calibration_param_write) refers to board.o(.text.board_calibration_param_write) for [Anonymous Symbol]
    board.o(.text.board_ranging_result_correct) refers to mk_misc.o(.text.mk_q7_to_f32) for mk_q7_to_f32
    board.o(.text.board_ranging_result_correct) refers to fcmple.o(.text) for __aeabi_fcmple
    board.o(.text.board_ranging_result_correct) refers to fcmpge.o(.text) for __aeabi_fcmpge
    board.o(.text.board_ranging_result_correct) refers to mk_misc.o(.text.mk_f32_to_q7) for mk_f32_to_q7
    board.o(.ARM.exidx.text.board_ranging_result_correct) refers to board.o(.text.board_ranging_result_correct) for [Anonymous Symbol]
    board.o(.text.board_button_init) refers to mk_gpio.o(.text.gpio_pin_set_dir) for gpio_pin_set_dir
    board.o(.text.board_button_init) refers to mk_io.o(.text.io_pull_set) for io_pull_set
    board.o(.text.board_button_init) refers to mk_gpio.o(.text.gpio_enable_irq) for gpio_enable_irq
    board.o(.text.board_button_init) refers to mk_power.o(.text.power_wakeup_enable) for power_wakeup_enable
    board.o(.text.board_button_init) refers to board.o(.bss.button_irq_handler) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_button_init) refers to board.o(.text.board_button_init) for [Anonymous Symbol]
    board.o(.text.board_led_init) refers to mk_gpio.o(.text.gpio_pin_set_dir) for gpio_pin_set_dir
    board.o(.ARM.exidx.text.board_led_init) refers to board.o(.text.board_led_init) for [Anonymous Symbol]
    board.o(.text.board_led_on) refers to mk_gpio.o(.text.gpio_pin_set) for gpio_pin_set
    board.o(.ARM.exidx.text.board_led_on) refers to board.o(.text.board_led_on) for [Anonymous Symbol]
    board.o(.text.board_led_off) refers to mk_gpio.o(.text.gpio_pin_clr) for gpio_pin_clr
    board.o(.ARM.exidx.text.board_led_off) refers to board.o(.text.board_led_off) for [Anonymous Symbol]
    board.o(.text.board_led_toggle) refers to mk_gpio.o(.text.gpio_pin_toggle) for gpio_pin_toggle
    board.o(.ARM.exidx.text.board_led_toggle) refers to board.o(.text.board_led_toggle) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_configure) refers to board.o(.text.board_configure) for [Anonymous Symbol]
    board.o(.text.board_prepare_for_power_down) refers to board.o(.text.board_led_off) for board_led_off
    board.o(.ARM.exidx.text.board_prepare_for_power_down) refers to board.o(.text.board_prepare_for_power_down) for [Anonymous Symbol]
    board.o(.text.board_restore_from_power_down) refers to mk_gpio.o(.text.gpio_enable_irq) for gpio_enable_irq
    board.o(.text.board_restore_from_power_down) refers to board.o(.text.board_led_on) for board_led_on
    board.o(.text.board_restore_from_power_down) refers to mk_misc.o(.text.sys_timer_open) for sys_timer_open
    board.o(.text.board_restore_from_power_down) refers to mk_trace.o(.text.trace_open) for trace_open
    board.o(.text.board_restore_from_power_down) refers to board.o(.bss.button_irq_handler) for [Anonymous Symbol]
    board.o(.text.board_restore_from_power_down) refers to board.o(.bss.user_trace_port) for [Anonymous Symbol]
    board.o(.ARM.exidx.text.board_restore_from_power_down) refers to board.o(.text.board_restore_from_power_down) for [Anonymous Symbol]
    pin_config.o(.text.board_pins_config) refers to mk_io.o(.text.io_pin_mux_set) for io_pin_mux_set
    pin_config.o(.text.board_pins_config) refers to mk_io.o(.text.io_pull_set) for io_pull_set
    pin_config.o(.ARM.exidx.text.board_pins_config) refers to pin_config.o(.text.board_pins_config) for [Anonymous Symbol]
    libc.o(.text.update_libc_rom_table) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.update_libc_rom_table) refers to libc.o(.text.update_libc_rom_table) for [Anonymous Symbol]
    libc.o(.text.memcpy) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.memcpy) refers to libc.o(.text.memcpy) for [Anonymous Symbol]
    libc.o(.text.memmove) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.memmove) refers to libc.o(.text.memmove) for [Anonymous Symbol]
    libc.o(.text.strcpy) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strcpy) refers to libc.o(.text.strcpy) for [Anonymous Symbol]
    libc.o(.text.strncpy) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strncpy) refers to libc.o(.text.strncpy) for [Anonymous Symbol]
    libc.o(.text.strcat) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strcat) refers to libc.o(.text.strcat) for [Anonymous Symbol]
    libc.o(.text.strncat) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strncat) refers to libc.o(.text.strncat) for [Anonymous Symbol]
    libc.o(.text.memcmp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.memcmp) refers to libc.o(.text.memcmp) for [Anonymous Symbol]
    libc.o(.text.strcmp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strcmp) refers to libc.o(.text.strcmp) for [Anonymous Symbol]
    libc.o(.text.strncmp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strncmp) refers to libc.o(.text.strncmp) for [Anonymous Symbol]
    libc.o(.text.strcasecmp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strcasecmp) refers to libc.o(.text.strcasecmp) for [Anonymous Symbol]
    libc.o(.text.strncasecmp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strncasecmp) refers to libc.o(.text.strncasecmp) for [Anonymous Symbol]
    libc.o(.text.strcoll) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strcoll) refers to libc.o(.text.strcoll) for [Anonymous Symbol]
    libc.o(.text.strxfrm) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strxfrm) refers to libc.o(.text.strxfrm) for [Anonymous Symbol]
    libc.o(.text.memchr) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.memchr) refers to libc.o(.text.memchr) for [Anonymous Symbol]
    libc.o(.text.strchr) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strchr) refers to libc.o(.text.strchr) for [Anonymous Symbol]
    libc.o(.text.strcspn) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strcspn) refers to libc.o(.text.strcspn) for [Anonymous Symbol]
    libc.o(.text.strpbrk) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strpbrk) refers to libc.o(.text.strpbrk) for [Anonymous Symbol]
    libc.o(.text.strrchr) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strrchr) refers to libc.o(.text.strrchr) for [Anonymous Symbol]
    libc.o(.text.strspn) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strspn) refers to libc.o(.text.strspn) for [Anonymous Symbol]
    libc.o(.text.strstr) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strstr) refers to libc.o(.text.strstr) for [Anonymous Symbol]
    libc.o(.text.strtok) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strtok) refers to libc.o(.text.strtok) for [Anonymous Symbol]
    libc.o(.text.memset) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.memset) refers to libc.o(.text.memset) for [Anonymous Symbol]
    libc.o(.text.strerror) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strerror) refers to libc.o(.text.strerror) for [Anonymous Symbol]
    libc.o(.text.strlen) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strlen) refers to libc.o(.text.strlen) for [Anonymous Symbol]
    libc.o(.text.strlcpy) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strlcpy) refers to libc.o(.text.strlcpy) for [Anonymous Symbol]
    libc.o(.text.strlcat) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strlcat) refers to libc.o(.text.strlcat) for [Anonymous Symbol]
    libc.o(.text.sprintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sprintf) refers to libc.o(.text.sprintf) for [Anonymous Symbol]
    libc.o(.text.snprintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.snprintf) refers to libc.o(.text.snprintf) for [Anonymous Symbol]
    libc.o(.text.vsprintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.vsprintf) refers to libc.o(.text.vsprintf) for [Anonymous Symbol]
    libc.o(.text.vsnprintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.vsnprintf) refers to libc.o(.text.vsnprintf) for [Anonymous Symbol]
    libc.o(.text.sscanf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sscanf) refers to libc.o(.text.sscanf) for [Anonymous Symbol]
    libc.o(.text.vsscanf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.vsscanf) refers to libc.o(.text.vsscanf) for [Anonymous Symbol]
    libc.o(.text.atof) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atof) refers to libc.o(.text.atof) for [Anonymous Symbol]
    libc.o(.text.atoi) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atoi) refers to libc.o(.text.atoi) for [Anonymous Symbol]
    libc.o(.text.atol) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atol) refers to libc.o(.text.atol) for [Anonymous Symbol]
    libc.o(.text.atoll) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atoll) refers to libc.o(.text.atoll) for [Anonymous Symbol]
    libc.o(.text.strtod) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strtod) refers to libc.o(.text.strtod) for [Anonymous Symbol]
    libc.o(.text.strtol) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strtol) refers to libc.o(.text.strtol) for [Anonymous Symbol]
    libc.o(.text.strtoul) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strtoul) refers to libc.o(.text.strtoul) for [Anonymous Symbol]
    libc.o(.text.strtoll) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strtoll) refers to libc.o(.text.strtoll) for [Anonymous Symbol]
    libc.o(.text.strtoull) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.strtoull) refers to libc.o(.text.strtoull) for [Anonymous Symbol]
    libc.o(.text.rand) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.rand) refers to libc.o(.text.rand) for [Anonymous Symbol]
    libc.o(.text.srand) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.srand) refers to libc.o(.text.srand) for [Anonymous Symbol]
    libc.o(.text.bsearch) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.bsearch) refers to libc.o(.text.bsearch) for [Anonymous Symbol]
    libc.o(.text.qsort) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.qsort) refers to libc.o(.text.qsort) for [Anonymous Symbol]
    libc.o(.text.abs) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.abs) refers to libc.o(.text.abs) for [Anonymous Symbol]
    libc.o(.text.div) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.div) refers to libc.o(.text.div) for [Anonymous Symbol]
    libc.o(.text.labs) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.labs) refers to libc.o(.text.labs) for [Anonymous Symbol]
    libc.o(.text.ldiv) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.ldiv) refers to libc.o(.text.ldiv) for [Anonymous Symbol]
    libc.o(.text.llabs) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.llabs) refers to libc.o(.text.llabs) for [Anonymous Symbol]
    libc.o(.text.lldiv) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.lldiv) refers to libc.o(.text.lldiv) for [Anonymous Symbol]
    libc.o(.text.acos) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.acos) refers to libc.o(.text.acos) for [Anonymous Symbol]
    libc.o(.text.asin) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.asin) refers to libc.o(.text.asin) for [Anonymous Symbol]
    libc.o(.text.atan) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atan) refers to libc.o(.text.atan) for [Anonymous Symbol]
    libc.o(.text.atan2) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atan2) refers to libc.o(.text.atan2) for [Anonymous Symbol]
    libc.o(.text.cos) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.cos) refers to libc.o(.text.cos) for [Anonymous Symbol]
    libc.o(.text.sin) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sin) refers to libc.o(.text.sin) for [Anonymous Symbol]
    libc.o(.text.tan) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tan) refers to libc.o(.text.tan) for [Anonymous Symbol]
    libc.o(.text.cosh) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.cosh) refers to libc.o(.text.cosh) for [Anonymous Symbol]
    libc.o(.text.sinh) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sinh) refers to libc.o(.text.sinh) for [Anonymous Symbol]
    libc.o(.text.tanh) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tanh) refers to libc.o(.text.tanh) for [Anonymous Symbol]
    libc.o(.text.exp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.exp) refers to libc.o(.text.exp) for [Anonymous Symbol]
    libc.o(.text.frexp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.frexp) refers to libc.o(.text.frexp) for [Anonymous Symbol]
    libc.o(.text.ldexp) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.ldexp) refers to libc.o(.text.ldexp) for [Anonymous Symbol]
    libc.o(.text.log) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log) refers to libc.o(.text.log) for [Anonymous Symbol]
    libc.o(.text.log10) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log10) refers to libc.o(.text.log10) for [Anonymous Symbol]
    libc.o(.text.modf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.modf) refers to libc.o(.text.modf) for [Anonymous Symbol]
    libc.o(.text.pow) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.pow) refers to libc.o(.text.pow) for [Anonymous Symbol]
    libc.o(.text.sqrt) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sqrt) refers to libc.o(.text.sqrt) for [Anonymous Symbol]
    libc.o(.text.ceil) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.ceil) refers to libc.o(.text.ceil) for [Anonymous Symbol]
    libc.o(.text.fabs) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fabs) refers to libc.o(.text.fabs) for [Anonymous Symbol]
    libc.o(.text.floor) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.floor) refers to libc.o(.text.floor) for [Anonymous Symbol]
    libc.o(.text.fmod) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmod) refers to libc.o(.text.fmod) for [Anonymous Symbol]
    libc.o(.text.acosh) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.acosh) refers to libc.o(.text.acosh) for [Anonymous Symbol]
    libc.o(.text.asinh) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.asinh) refers to libc.o(.text.asinh) for [Anonymous Symbol]
    libc.o(.text.atanh) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atanh) refers to libc.o(.text.atanh) for [Anonymous Symbol]
    libc.o(.text.cbrt) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.cbrt) refers to libc.o(.text.cbrt) for [Anonymous Symbol]
    libc.o(.text.erf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.erf) refers to libc.o(.text.erf) for [Anonymous Symbol]
    libc.o(.text.erfc) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.erfc) refers to libc.o(.text.erfc) for [Anonymous Symbol]
    libc.o(.text.expm1) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.expm1) refers to libc.o(.text.expm1) for [Anonymous Symbol]
    libc.o(.text.hypot) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.hypot) refers to libc.o(.text.hypot) for [Anonymous Symbol]
    libc.o(.text.remainder) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.remainder) refers to libc.o(.text.remainder) for [Anonymous Symbol]
    libc.o(.text.rint) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.rint) refers to libc.o(.text.rint) for [Anonymous Symbol]
    libc.o(.text.scalbln) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.scalbln) refers to libc.o(.text.scalbln) for [Anonymous Symbol]
    libc.o(.text.scalblnf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.scalblnf) refers to libc.o(.text.scalblnf) for [Anonymous Symbol]
    libc.o(.text.scalblnl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.scalblnl) refers to libc.o(.text.scalblnl) for [Anonymous Symbol]
    libc.o(.text.fabsf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fabsf) refers to libc.o(.text.fabsf) for [Anonymous Symbol]
    libc.o(.text.sinf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sinf) refers to libc.o(.text.sinf) for [Anonymous Symbol]
    libc.o(.text.cosf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.cosf) refers to libc.o(.text.cosf) for [Anonymous Symbol]
    libc.o(.text.tanf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tanf) refers to libc.o(.text.tanf) for [Anonymous Symbol]
    libc.o(.text.acosf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.acosf) refers to libc.o(.text.acosf) for [Anonymous Symbol]
    libc.o(.text.asinf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.asinf) refers to libc.o(.text.asinf) for [Anonymous Symbol]
    libc.o(.text.atanf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atanf) refers to libc.o(.text.atanf) for [Anonymous Symbol]
    libc.o(.text.atan2f) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atan2f) refers to libc.o(.text.atan2f) for [Anonymous Symbol]
    libc.o(.text.sinhf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sinhf) refers to libc.o(.text.sinhf) for [Anonymous Symbol]
    libc.o(.text.coshf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.coshf) refers to libc.o(.text.coshf) for [Anonymous Symbol]
    libc.o(.text.tanhf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tanhf) refers to libc.o(.text.tanhf) for [Anonymous Symbol]
    libc.o(.text.expf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.expf) refers to libc.o(.text.expf) for [Anonymous Symbol]
    libc.o(.text.logf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.logf) refers to libc.o(.text.logf) for [Anonymous Symbol]
    libc.o(.text.log10f) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log10f) refers to libc.o(.text.log10f) for [Anonymous Symbol]
    libc.o(.text.powf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.powf) refers to libc.o(.text.powf) for [Anonymous Symbol]
    libc.o(.text.sqrtf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sqrtf) refers to libc.o(.text.sqrtf) for [Anonymous Symbol]
    libc.o(.text.ldexpf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.ldexpf) refers to libc.o(.text.ldexpf) for [Anonymous Symbol]
    libc.o(.text.frexpf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.frexpf) refers to libc.o(.text.frexpf) for [Anonymous Symbol]
    libc.o(.text.ceilf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.ceilf) refers to libc.o(.text.ceilf) for [Anonymous Symbol]
    libc.o(.text.floorf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.floorf) refers to libc.o(.text.floorf) for [Anonymous Symbol]
    libc.o(.text.fmodf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmodf) refers to libc.o(.text.fmodf) for [Anonymous Symbol]
    libc.o(.text.modff) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.modff) refers to libc.o(.text.modff) for [Anonymous Symbol]
    libc.o(.text.acosl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.acosl) refers to libc.o(.text.acosl) for [Anonymous Symbol]
    libc.o(.text.asinl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.asinl) refers to libc.o(.text.asinl) for [Anonymous Symbol]
    libc.o(.text.atanl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atanl) refers to libc.o(.text.atanl) for [Anonymous Symbol]
    libc.o(.text.atan2l) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atan2l) refers to libc.o(.text.atan2l) for [Anonymous Symbol]
    libc.o(.text.ceill) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.ceill) refers to libc.o(.text.ceill) for [Anonymous Symbol]
    libc.o(.text.cosl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.cosl) refers to libc.o(.text.cosl) for [Anonymous Symbol]
    libc.o(.text.coshl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.coshl) refers to libc.o(.text.coshl) for [Anonymous Symbol]
    libc.o(.text.expl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.expl) refers to libc.o(.text.expl) for [Anonymous Symbol]
    libc.o(.text.fabsl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fabsl) refers to libc.o(.text.fabsl) for [Anonymous Symbol]
    libc.o(.text.floorl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.floorl) refers to libc.o(.text.floorl) for [Anonymous Symbol]
    libc.o(.text.fmodl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmodl) refers to libc.o(.text.fmodl) for [Anonymous Symbol]
    libc.o(.text.frexpl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.frexpl) refers to libc.o(.text.frexpl) for [Anonymous Symbol]
    libc.o(.text.ldexpl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.ldexpl) refers to libc.o(.text.ldexpl) for [Anonymous Symbol]
    libc.o(.text.logl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.logl) refers to libc.o(.text.logl) for [Anonymous Symbol]
    libc.o(.text.log10l) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log10l) refers to libc.o(.text.log10l) for [Anonymous Symbol]
    libc.o(.text.modfl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.modfl) refers to libc.o(.text.modfl) for [Anonymous Symbol]
    libc.o(.text.powl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.powl) refers to libc.o(.text.powl) for [Anonymous Symbol]
    libc.o(.text.sinl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sinl) refers to libc.o(.text.sinl) for [Anonymous Symbol]
    libc.o(.text.sinhl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sinhl) refers to libc.o(.text.sinhl) for [Anonymous Symbol]
    libc.o(.text.sqrtl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.sqrtl) refers to libc.o(.text.sqrtl) for [Anonymous Symbol]
    libc.o(.text.tanl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tanl) refers to libc.o(.text.tanl) for [Anonymous Symbol]
    libc.o(.text.tanhl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tanhl) refers to libc.o(.text.tanhl) for [Anonymous Symbol]
    libc.o(.text.acoshf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.acoshf) refers to libc.o(.text.acoshf) for [Anonymous Symbol]
    libc.o(.text.acoshl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.acoshl) refers to libc.o(.text.acoshl) for [Anonymous Symbol]
    libc.o(.text.asinhf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.asinhf) refers to libc.o(.text.asinhf) for [Anonymous Symbol]
    libc.o(.text.asinhl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.asinhl) refers to libc.o(.text.asinhl) for [Anonymous Symbol]
    libc.o(.text.atanhf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atanhf) refers to libc.o(.text.atanhf) for [Anonymous Symbol]
    libc.o(.text.atanhl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.atanhl) refers to libc.o(.text.atanhl) for [Anonymous Symbol]
    libc.o(.text.copysignl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.copysignl) refers to libc.o(.text.copysignl) for [Anonymous Symbol]
    libc.o(.text.cbrtf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.cbrtf) refers to libc.o(.text.cbrtf) for [Anonymous Symbol]
    libc.o(.text.cbrtl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.cbrtl) refers to libc.o(.text.cbrtl) for [Anonymous Symbol]
    libc.o(.text.erff) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.erff) refers to libc.o(.text.erff) for [Anonymous Symbol]
    libc.o(.text.erfl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.erfl) refers to libc.o(.text.erfl) for [Anonymous Symbol]
    libc.o(.text.erfcf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.erfcf) refers to libc.o(.text.erfcf) for [Anonymous Symbol]
    libc.o(.text.erfcl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.erfcl) refers to libc.o(.text.erfcl) for [Anonymous Symbol]
    libc.o(.text.expm1f) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.expm1f) refers to libc.o(.text.expm1f) for [Anonymous Symbol]
    libc.o(.text.expm1l) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.expm1l) refers to libc.o(.text.expm1l) for [Anonymous Symbol]
    libc.o(.text.log1pf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log1pf) refers to libc.o(.text.log1pf) for [Anonymous Symbol]
    libc.o(.text.log1pl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log1pl) refers to libc.o(.text.log1pl) for [Anonymous Symbol]
    libc.o(.text.hypotf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.hypotf) refers to libc.o(.text.hypotf) for [Anonymous Symbol]
    libc.o(.text.hypotl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.hypotl) refers to libc.o(.text.hypotl) for [Anonymous Symbol]
    libc.o(.text.remainderf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.remainderf) refers to libc.o(.text.remainderf) for [Anonymous Symbol]
    libc.o(.text.remainderl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.remainderl) refers to libc.o(.text.remainderl) for [Anonymous Symbol]
    libc.o(.text.rintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.rintf) refers to libc.o(.text.rintf) for [Anonymous Symbol]
    libc.o(.text.rintl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.rintl) refers to libc.o(.text.rintl) for [Anonymous Symbol]
    libc.o(.text.exp2) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.exp2) refers to libc.o(.text.exp2) for [Anonymous Symbol]
    libc.o(.text.exp2f) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.exp2f) refers to libc.o(.text.exp2f) for [Anonymous Symbol]
    libc.o(.text.exp2l) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.exp2l) refers to libc.o(.text.exp2l) for [Anonymous Symbol]
    libc.o(.text.fdim) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fdim) refers to libc.o(.text.fdim) for [Anonymous Symbol]
    libc.o(.text.fdimf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fdimf) refers to libc.o(.text.fdimf) for [Anonymous Symbol]
    libc.o(.text.fdiml) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fdiml) refers to libc.o(.text.fdiml) for [Anonymous Symbol]
    libc.o(.text.fma) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fma) refers to libc.o(.text.fma) for [Anonymous Symbol]
    libc.o(.text.fmaf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmaf) refers to libc.o(.text.fmaf) for [Anonymous Symbol]
    libc.o(.text.fmax) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmax) refers to libc.o(.text.fmax) for [Anonymous Symbol]
    libc.o(.text.fmaxf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmaxf) refers to libc.o(.text.fmaxf) for [Anonymous Symbol]
    libc.o(.text.fmaxl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmaxl) refers to libc.o(.text.fmaxl) for [Anonymous Symbol]
    libc.o(.text.fmin) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fmin) refers to libc.o(.text.fmin) for [Anonymous Symbol]
    libc.o(.text.fminf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fminf) refers to libc.o(.text.fminf) for [Anonymous Symbol]
    libc.o(.text.fminl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.fminl) refers to libc.o(.text.fminl) for [Anonymous Symbol]
    libc.o(.text.log2f) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log2f) refers to libc.o(.text.log2f) for [Anonymous Symbol]
    libc.o(.text.log2l) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.log2l) refers to libc.o(.text.log2l) for [Anonymous Symbol]
    libc.o(.text.lrint) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.lrint) refers to libc.o(.text.lrint) for [Anonymous Symbol]
    libc.o(.text.lrintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.lrintf) refers to libc.o(.text.lrintf) for [Anonymous Symbol]
    libc.o(.text.llrint) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.llrint) refers to libc.o(.text.llrint) for [Anonymous Symbol]
    libc.o(.text.llrintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.llrintf) refers to libc.o(.text.llrintf) for [Anonymous Symbol]
    libc.o(.text.lround) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.lround) refers to libc.o(.text.lround) for [Anonymous Symbol]
    libc.o(.text.lroundf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.lroundf) refers to libc.o(.text.lroundf) for [Anonymous Symbol]
    libc.o(.text.llround) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.llround) refers to libc.o(.text.llround) for [Anonymous Symbol]
    libc.o(.text.llroundf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.llroundf) refers to libc.o(.text.llroundf) for [Anonymous Symbol]
    libc.o(.text.nan) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.nan) refers to libc.o(.text.nan) for [Anonymous Symbol]
    libc.o(.text.nanf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.nanf) refers to libc.o(.text.nanf) for [Anonymous Symbol]
    libc.o(.text.nearbyint) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.nearbyint) refers to libc.o(.text.nearbyint) for [Anonymous Symbol]
    libc.o(.text.nearbyintf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.nearbyintf) refers to libc.o(.text.nearbyintf) for [Anonymous Symbol]
    libc.o(.text.nearbyintl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.nearbyintl) refers to libc.o(.text.nearbyintl) for [Anonymous Symbol]
    libc.o(.text.remquo) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.remquo) refers to libc.o(.text.remquo) for [Anonymous Symbol]
    libc.o(.text.remquof) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.remquof) refers to libc.o(.text.remquof) for [Anonymous Symbol]
    libc.o(.text.round) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.round) refers to libc.o(.text.round) for [Anonymous Symbol]
    libc.o(.text.roundf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.roundf) refers to libc.o(.text.roundf) for [Anonymous Symbol]
    libc.o(.text.roundl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.roundl) refers to libc.o(.text.roundl) for [Anonymous Symbol]
    libc.o(.text.tgamma) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tgamma) refers to libc.o(.text.tgamma) for [Anonymous Symbol]
    libc.o(.text.tgammaf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tgammaf) refers to libc.o(.text.tgammaf) for [Anonymous Symbol]
    libc.o(.text.tgammal) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.tgammal) refers to libc.o(.text.tgammal) for [Anonymous Symbol]
    libc.o(.text.trunc) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.trunc) refers to libc.o(.text.trunc) for [Anonymous Symbol]
    libc.o(.text.truncf) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.truncf) refers to libc.o(.text.truncf) for [Anonymous Symbol]
    libc.o(.text.truncl) refers to libc.o(.bss.noinit) for [Anonymous Symbol]
    libc.o(.ARM.exidx.text.truncl) refers to libc.o(.text.truncl) for [Anonymous Symbol]
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
    entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry4.o(.ARM.Collect$$$$00000003) for _main_stk
    idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod
    ldiv.o(.text) refers to uldiv.o(.text) for __aeabi_uldivmod
    fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue
    fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
    dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
    dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
    ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    ddiv.o(.text) refers to depilogue.o(.text) for _double_round
    fcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fcmpge.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue
    dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue
    ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    d2f.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    d2f.o(.text) refers to fepilogue.o(.text) for _float_round
    entry4.o(.ARM.Collect$$$$00000003) refers to entry4.o(.ARM.Collect$$$$00002714) for __lit__00000000
    entry4.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main
    entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
    entry9a.o(.ARM.Collect$$$$0000000B) refers to adc_example.o(.text.main) for main
    entry9b.o(.ARM.Collect$$$$0000000C) refers to adc_example.o(.text.main) for main
    uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    fepilogue.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    depilogue.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
    depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz
    depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl
    depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr
    init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
    depilogue.o(i.__ARM_clz) refers (Special) to iusefp.o(.text) for __I$use$fp
 
 
==============================================================================
 
Removing Unused input sections from the image.
 
    Removing startup_mk800x.o(.text), (0 bytes).
    Removing startup_mk800x.o(.ARM.exidx.text.Default_Handler), (8 bytes).
    Removing startup_mk800x.o(.ARM.exidx.text.Reset_Handler), (8 bytes).
    Removing startup_mk800x.o(.ARM.exidx.text.start_main_asm), (8 bytes).
    Removing system_mk800x.o(.text), (0 bytes).
    Removing system_mk800x.o(.text.SystemCoreClockUpdate), (16 bytes).
    Removing system_mk800x.o(.ARM.exidx.text.SystemCoreClockUpdate), (8 bytes).
    Removing system_mk800x.o(.ARM.exidx.text.SystemInit), (8 bytes).
    Removing mk_adc.o(.text), (0 bytes).
    Removing mk_adc.o(.ARM.exidx.text.adc_open), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_adc.o(.text.adc_close), (108 bytes).
    Removing mk_adc.o(.ARM.exidx.text.adc_close), (8 bytes).
    Removing mk_adc.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_adc.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_adc.o(.text.adc_switch_channel), (72 bytes).
    Removing mk_adc.o(.ARM.exidx.text.adc_switch_channel), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.adc_get), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.int_lock), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.int_unlock), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.adc_dma_callback), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.ADC_IRQHandler), (8 bytes).
    Removing mk_adc.o(.ARM.exidx.text.adc_code_to_mv), (8 bytes).
    Removing mk_adc.o(.text.battery_monitor_open), (88 bytes).
    Removing mk_adc.o(.ARM.exidx.text.battery_monitor_open), (8 bytes).
    Removing mk_adc.o(.text.battery_monitor_close), (28 bytes).
    Removing mk_adc.o(.ARM.exidx.text.battery_monitor_close), (8 bytes).
    Removing mk_adc.o(.text.battery_monitor_get), (80 bytes).
    Removing mk_adc.o(.ARM.exidx.text.battery_monitor_get), (8 bytes).
    Removing mk_adc.o(.text.temp_sensor_open), (96 bytes).
    Removing mk_adc.o(.ARM.exidx.text.temp_sensor_open), (8 bytes).
    Removing mk_adc.o(.text.temp_sensor_close), (28 bytes).
    Removing mk_adc.o(.ARM.exidx.text.temp_sensor_close), (8 bytes).
    Removing mk_adc.o(.text.temp_sensor_get), (380 bytes).
    Removing mk_adc.o(.ARM.exidx.text.temp_sensor_get), (8 bytes).
    Removing mk_calib.o(.text), (0 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_open), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_close), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_start), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_check), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_chip), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_set), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal32k_load_cap_set), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal38m4_load_cap_auto_tune), (128 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal38m4_load_cap_auto_tune), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal38m4_with_clock_out), (120 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal38m4_with_clock_out), (8 bytes).
    Removing mk_calib.o(.text.calib_xtal32k_with_clock_out), (128 bytes).
    Removing mk_calib.o(.ARM.exidx.text.calib_xtal32k_with_clock_out), (8 bytes).
    Removing mk_calib.o(.ARM.exidx.text.CALIB_IRQHandler), (8 bytes).
    Removing mk_clock.o(.text), (0 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_enable), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_disable), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_attach), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_32K_clk_config), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_sys_clk_config), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_wdt_clk_config), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_set_divider), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_frequency), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_sys_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_ahb_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_apb_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_wdt_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_32k_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_get_flash_clk_freq), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_xtal38m4_injection_set), (8 bytes).
    Removing mk_clock.o(.ARM.exidx.text.clock_xtal32k_injection_set), (8 bytes).
    Removing mk_dma.o(.text), (0 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_open), (8 bytes).
    Removing mk_dma.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_dma.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_dma.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_dma.o(.text.dma_close), (112 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_close), (8 bytes).
    Removing mk_dma.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_dma.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_transfer), (8 bytes).
    Removing mk_dma.o(.text.dma_abort), (128 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_abort), (8 bytes).
    Removing mk_dma.o(.text.int_lock), (40 bytes).
    Removing mk_dma.o(.ARM.exidx.text.int_lock), (8 bytes).
    Removing mk_dma.o(.text.int_unlock), (24 bytes).
    Removing mk_dma.o(.ARM.exidx.text.int_unlock), (8 bytes).
    Removing mk_dma.o(.text.dma_force_abort), (156 bytes).
    Removing mk_dma.o(.ARM.exidx.text.dma_force_abort), (8 bytes).
    Removing mk_dma.o(.ARM.exidx.text.DMA_IRQHandler), (8 bytes).
    Removing mk_dual_timer.o(.text), (0 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_open), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_close), (116 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_close), (8 bytes).
    Removing mk_dual_timer.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_start), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_stop), (28 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_stop), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_reset), (10 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_reset), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_set), (28 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_set), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_get), (24 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_get), (8 bytes).
    Removing mk_dual_timer.o(.text.dual_timer_delay), (60 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.dual_timer_delay), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.TIMER2_IRQHandler), (8 bytes).
    Removing mk_dual_timer.o(.ARM.exidx.text.TIMER3_IRQHandler), (8 bytes).
    Removing mk_flash.o(.text), (0 bytes).
    Removing mk_flash.o(.text.flash_open), (664 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_open), (8 bytes).
    Removing mk_flash.o(.text.flash_reset_cmd), (40 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_reset_cmd), (8 bytes).
    Removing mk_flash.o(.text.flash_write_cmd), (320 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_cmd), (8 bytes).
    Removing mk_flash.o(.text.flash_wait_status), (80 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_wait_status), (8 bytes).
    Removing mk_flash.o(.text.flash_write_quad_mode), (208 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_quad_mode), (8 bytes).
    Removing mk_flash.o(.text.flash_read_status1), (52 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_read_status1), (8 bytes).
    Removing mk_flash.o(.text.flash_write_mem_cmd), (100 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_mem_cmd), (8 bytes).
    Removing mk_flash.o(.text.__NVIC_SetPriority), (120 bytes).
    Removing mk_flash.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_flash.o(.text.__NVIC_ClearPendingIRQ), (36 bytes).
    Removing mk_flash.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_flash.o(.text.__NVIC_EnableIRQ), (36 bytes).
    Removing mk_flash.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_flash.o(.text.flash_close), (108 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_close), (8 bytes).
    Removing mk_flash.o(.text.flash_open_for_xip), (300 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_open_for_xip), (8 bytes).
    Removing mk_flash.o(.text.flash_power_up), (60 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_power_up), (8 bytes).
    Removing mk_flash.o(.text.flash_power_down), (60 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_power_down), (8 bytes).
    Removing mk_flash.o(.text.flash_sector_erase), (300 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_sector_erase), (8 bytes).
    Removing mk_flash.o(.text.flash_state_update), (112 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_state_update), (8 bytes).
    Removing mk_flash.o(.text.flash_wait_done), (60 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_wait_done), (8 bytes).
    Removing mk_flash.o(.text.flash_block_erase), (304 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_block_erase), (8 bytes).
    Removing mk_flash.o(.text.flash_erase), (568 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_erase), (8 bytes).
    Removing mk_flash.o(.text.flash_check_busy), (316 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_check_busy), (8 bytes).
    Removing mk_flash.o(.text.flash_write_nbytes), (980 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_nbytes), (8 bytes).
    Removing mk_flash.o(.text.flash_init_write_nbytes_cfg), (316 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_init_write_nbytes_cfg), (8 bytes).
    Removing mk_flash.o(.text.flash_write_variable_len_cmd), (224 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write_variable_len_cmd), (8 bytes).
    Removing mk_flash.o(.text.flash_dma_write_nbytes_callback), (580 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_dma_write_nbytes_callback), (8 bytes).
    Removing mk_flash.o(.text.flash_page_write_nbytes), (132 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_page_write_nbytes), (8 bytes).
    Removing mk_flash.o(.text.flash_write), (520 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_write), (8 bytes).
    Removing mk_flash.o(.text.flash_dma_callback), (596 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_dma_callback), (8 bytes).
    Removing mk_flash.o(.text.flash_page_write), (172 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_page_write), (8 bytes).
    Removing mk_flash.o(.text.flash_read), (816 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_read), (8 bytes).
    Removing mk_flash.o(.ARM.exidx.text.FLASH_CTRL_IRQHandler), (8 bytes).
    Removing mk_flash.o(.text.flash_read_status), (52 bytes).
    Removing mk_flash.o(.ARM.exidx.text.flash_read_status), (8 bytes).
    Removing mk_flash.o(.text.int_lock), (40 bytes).
    Removing mk_flash.o(.ARM.exidx.text.int_lock), (8 bytes).
    Removing mk_flash.o(.text.int_unlock), (24 bytes).
    Removing mk_flash.o(.ARM.exidx.text.int_unlock), (8 bytes).
    Removing mk_flash.o(.rodata.str1.1), (297 bytes).
    Removing mk_flash.o(.rodata.cst32), (96 bytes).
    Removing mk_flash.o(.rodata.flash_cmd), (220 bytes).
    Removing mk_gpio.o(.text), (0 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_open), (8 bytes).
    Removing mk_gpio.o(.text.gpio_close), (12 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_close), (8 bytes).
    Removing mk_gpio.o(.text.gpio_write), (20 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_write), (8 bytes).
    Removing mk_gpio.o(.text.gpio_read), (12 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_read), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_set), (32 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_set), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_clr), (32 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_clr), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_toggle), (32 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_toggle), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_get_val), (28 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_get_val), (8 bytes).
    Removing mk_gpio.o(.text.gpio_pin_set_dir), (140 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_pin_set_dir), (8 bytes).
    Removing mk_gpio.o(.text.gpio_enable_irq), (216 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_enable_irq), (8 bytes).
    Removing mk_gpio.o(.text.__NVIC_SetPriority), (120 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_gpio.o(.text.__NVIC_ClearPendingIRQ), (36 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_gpio.o(.text.__NVIC_EnableIRQ), (36 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_gpio.o(.text.gpio_disable_irq), (68 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.gpio_disable_irq), (8 bytes).
    Removing mk_gpio.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_gpio.o(.ARM.exidx.text.GPIO_IRQHandler), (8 bytes).
    Removing mk_io.o(.text), (0 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_pin_mux_set), (8 bytes).
    Removing mk_io.o(.text.io_open_drain_set), (60 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_open_drain_set), (8 bytes).
    Removing mk_io.o(.text.io_drive_set), (56 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_drive_set), (8 bytes).
    Removing mk_io.o(.ARM.exidx.text.io_pull_set), (8 bytes).
    Removing mk_misc.o(.text), (0 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_chip_id), (8 bytes).
    Removing mk_misc.o(.text.mk_chip_uuid), (204 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_chip_uuid), (8 bytes).
    Removing mk_misc.o(.text.bod_open), (112 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bod_open), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_misc.o(.text.__NVIC_ClearPendingIRQ), (36 bytes).
    Removing mk_misc.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_misc.o(.text.__NVIC_EnableIRQ), (36 bytes).
    Removing mk_misc.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_misc.o(.text.bod_close), (40 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bod_close), (8 bytes).
    Removing mk_misc.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_misc.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.BOD_IRQHandler), (8 bytes).
    Removing mk_misc.o(.text.bor_open), (84 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bor_open), (8 bytes).
    Removing mk_misc.o(.text.bor_close), (16 bytes).
    Removing mk_misc.o(.ARM.exidx.text.bor_close), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_open), (8 bytes).
    Removing mk_misc.o(.text.sys_timer_close), (10 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_close), (8 bytes).
    Removing mk_misc.o(.text.sys_timer_get), (12 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_get), (8 bytes).
    Removing mk_misc.o(.text.sys_timer_delay_us), (84 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_delay_us), (8 bytes).
    Removing mk_misc.o(.text.sys_timer_delay_ms), (76 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_timer_delay_ms), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_open), (40 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_open), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_close), (10 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_close), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_start), (18 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_start), (8 bytes).
    Removing mk_misc.o(.text.mac_timer_stop), (10 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mac_timer_stop), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_start), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_us), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.int_lock), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.int_unlock), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_ms), (144 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_ms), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_get), (12 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_get), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_callback_set), (20 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_callback_set), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_elapse_ms), (116 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_elapse_ms), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_pause), (124 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_pause), (8 bytes).
    Removing mk_misc.o(.text.sys_tick_resume), (128 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_tick_resume), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.SysTick_Handler), (8 bytes).
    Removing mk_misc.o(.text.sys_reset), (48 bytes).
    Removing mk_misc.o(.ARM.exidx.text.sys_reset), (8 bytes).
    Removing mk_misc.o(.ARM.exidx.text.delay_us), (8 bytes).
    Removing mk_misc.o(.text.count_bits), (46 bytes).
    Removing mk_misc.o(.ARM.exidx.text.count_bits), (8 bytes).
    Removing mk_misc.o(.text.search_byte_right_one), (128 bytes).
    Removing mk_misc.o(.ARM.exidx.text.search_byte_right_one), (8 bytes).
    Removing mk_misc.o(.text.byte_right_one_mask), (18 bytes).
    Removing mk_misc.o(.ARM.exidx.text.byte_right_one_mask), (8 bytes).
    Removing mk_misc.o(.text.average_filter), (156 bytes).
    Removing mk_misc.o(.ARM.exidx.text.average_filter), (8 bytes).
    Removing mk_misc.o(.text.mk_q7_to_s16), (22 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_q7_to_s16), (8 bytes).
    Removing mk_misc.o(.text.mk_s16_to_q7), (18 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_s16_to_q7), (8 bytes).
    Removing mk_misc.o(.text.mk_q7_to_f32), (40 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_q7_to_f32), (8 bytes).
    Removing mk_misc.o(.text.mk_f32_to_q7), (30 bytes).
    Removing mk_misc.o(.ARM.exidx.text.mk_f32_to_q7), (8 bytes).
    Removing mk_misc.o(.rodata.default_bod_cfg), (8 bytes).
    Removing mk_misc.o(.rodata.default_bor_cfg), (8 bytes).
    Removing mk_misc.o(.rodata..L__const.mac_timer_open.mac_timer_cfg), (24 bytes).
    Removing mk_misc.o(.bss.average_filter.data_buffer), (20 bytes).
    Removing mk_misc.o(.bss.average_filter.data_num), (1 bytes).
    Removing mk_power.o(.text), (0 bytes).
    Removing mk_power.o(.text.power_fem_tx_ctrl), (12 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_fem_tx_ctrl), (8 bytes).
    Removing mk_power.o(.text.power_fem_rx_ctrl), (12 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_fem_rx_ctrl), (8 bytes).
    Removing mk_power.o(.text.power_init), (104 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_init), (8 bytes).
    Removing mk_power.o(.text.power_on_radio), (92 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_on_radio), (8 bytes).
    Removing mk_power.o(.text.power_mode_request), (84 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_mode_request), (8 bytes).
    Removing mk_power.o(.text.power_off_radio), (60 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_off_radio), (8 bytes).
    Removing mk_power.o(.text.power_mode_clear), (68 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_mode_clear), (8 bytes).
    Removing mk_power.o(.text.power_enter_sleep_mode), (20 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_enter_sleep_mode), (8 bytes).
    Removing mk_power.o(.text.enter_power_down_in_ram), (536 bytes).
    Removing mk_power.o(.ARM.exidx.text.enter_power_down_in_ram), (8 bytes).
    Removing mk_power.o(.text.__NVIC_ClearPendingIRQ), (36 bytes).
    Removing mk_power.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_power.o(.text.__NVIC_EnableIRQ), (36 bytes).
    Removing mk_power.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_power.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_power.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_power.o(.text.power_enter_power_down_mode), (148 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_enter_power_down_mode), (8 bytes).
    Removing mk_power.o(.text.board_prepare_for_power_down), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.board_prepare_for_power_down), (8 bytes).
    Removing mk_power.o(.text.board_restore_from_power_down), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.board_restore_from_power_down), (8 bytes).
    Removing mk_power.o(.text.enter_shelf_mode_in_ram), (48 bytes).
    Removing mk_power.o(.ARM.exidx.text.enter_shelf_mode_in_ram), (8 bytes).
    Removing mk_power.o(.text.power_enter_shelf_mode), (20 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_enter_shelf_mode), (8 bytes).
    Removing mk_power.o(.text.int_lock), (40 bytes).
    Removing mk_power.o(.ARM.exidx.text.int_lock), (8 bytes).
    Removing mk_power.o(.text.int_unlock), (24 bytes).
    Removing mk_power.o(.ARM.exidx.text.int_unlock), (8 bytes).
    Removing mk_power.o(.text.power_mode_requester_get), (20 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_mode_requester_get), (8 bytes).
    Removing mk_power.o(.text.power_wakeup_enable), (88 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_wakeup_enable), (8 bytes).
    Removing mk_power.o(.text.power_wakeup_disable), (48 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_wakeup_disable), (8 bytes).
    Removing mk_power.o(.text.power_manage), (180 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_manage), (8 bytes).
    Removing mk_power.o(.text.power_check_io_power_mode), (140 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_check_io_power_mode), (8 bytes).
    Removing mk_power.o(.text.power_check_if_power_mode), (82 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_check_if_power_mode), (8 bytes).
    Removing mk_power.o(.text.power_clear_if_power_mode), (10 bytes).
    Removing mk_power.o(.ARM.exidx.text.power_clear_if_power_mode), (8 bytes).
    Removing mk_power.o(.text.app_restore_from_power_down), (2 bytes).
    Removing mk_power.o(.ARM.exidx.text.app_restore_from_power_down), (8 bytes).
    Removing mk_power.o(.bss.power_env), (20 bytes).
    Removing mk_power.o(.rodata.str1.1), (25 bytes).
    Removing mk_reset.o(.text), (0 bytes).
    Removing mk_reset.o(.ARM.exidx.text.reset_cause_get), (8 bytes).
    Removing mk_reset.o(.ARM.exidx.text.reset_cause_clear), (8 bytes).
    Removing mk_reset.o(.ARM.exidx.text.reset_module), (8 bytes).
    Removing mk_rtc.o(.text), (0 bytes).
    Removing mk_rtc.o(.text.rtc_open), (200 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_open), (8 bytes).
    Removing mk_rtc.o(.text.__NVIC_SetPriority), (120 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_rtc.o(.text.__NVIC_ClearPendingIRQ), (36 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_rtc.o(.text.__NVIC_EnableIRQ), (36 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_rtc.o(.text.rtc_close), (204 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_close), (8 bytes).
    Removing mk_rtc.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_rtc.o(.text.rtc_set), (64 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_set), (8 bytes).
    Removing mk_rtc.o(.text.rtc_check_parameter), (144 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_check_parameter), (8 bytes).
    Removing mk_rtc.o(.text.rtc_time_to_second), (44 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_time_to_second), (8 bytes).
    Removing mk_rtc.o(.text.rtc_get), (60 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_get), (8 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_second_to_time), (8 bytes).
    Removing mk_rtc.o(.text.rtc_set_alarm), (156 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_set_alarm), (8 bytes).
    Removing mk_rtc.o(.text.rtc_clear_alarm), (40 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_clear_alarm), (8 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.RTC_TICK_IRQHandler), (8 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.RTC_ALARM_IRQHandler), (8 bytes).
    Removing mk_rtc.o(.text.rco32k_clk_calibrate), (116 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rco32k_clk_calibrate), (8 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.RCO32K_CAL_IRQHandler), (8 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.rtc_month_days), (8 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.is_leap_year), (8 bytes).
    Removing mk_rtc.o(.text.mktime), (180 bytes).
    Removing mk_rtc.o(.ARM.exidx.text.mktime), (8 bytes).
    Removing mk_sleep_timer.o(.text), (0 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_open), (104 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_open), (8 bytes).
    Removing mk_sleep_timer.o(.text.__NVIC_SetPriority), (120 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_sleep_timer.o(.text.__NVIC_ClearPendingIRQ), (36 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_sleep_timer.o(.text.__NVIC_EnableIRQ), (36 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_close), (48 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_close), (8 bytes).
    Removing mk_sleep_timer.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_start), (72 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_start), (8 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_stop), (12 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_stop), (8 bytes).
    Removing mk_sleep_timer.o(.text.high_xtal_off_time), (12 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.high_xtal_off_time), (8 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_set), (8 bytes).
    Removing mk_sleep_timer.o(.text.sleep_timer_ppm_get), (12 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.sleep_timer_ppm_get), (8 bytes).
    Removing mk_sleep_timer.o(.ARM.exidx.text.SLEEP_TIMER_IRQHandler), (8 bytes).
    Removing mk_trace.o(.text), (0 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_open), (8 bytes).
    Removing mk_trace.o(.text.trace_close), (80 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_close), (8 bytes).
    Removing mk_trace.o(.text.trace_crash_dump_cb_register), (76 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_crash_dump_cb_register), (8 bytes).
    Removing mk_trace.o(.text.trace_buf_is_empty), (52 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_buf_is_empty), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.int_lock), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.int_unlock), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_output), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_printf), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_sending), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_assert_dump), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_format), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text._StoreChar), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text._PrintInt), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text._PrintUnsigned), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.mk_snprintf), (8 bytes).
    Removing mk_trace.o(.text.trace_dump), (512 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_dump), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_end), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_output_blocking), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_flush), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text._trace_assert_dump), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_crash_dump_callback), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_exception_handler), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_print_backtrace), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.HardFault_Handler), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_sending_continue), (8 bytes).
    Removing mk_trace.o(.ARM.exidx.text.trace_address_executable), (8 bytes).
    Removing mk_uart.o(.text), (0 bytes).
    Removing mk_uart.o(.text.uart_state_get), (24 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_state_get), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_tx_in_progress), (8 bytes).
    Removing mk_uart.o(.text.uart_fifo_busy), (60 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_fifo_busy), (8 bytes).
    Removing mk_uart.o(.text.uart_rx_fifo_clear), (48 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_rx_fifo_clear), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_baud_set), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_open), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_uart.o(.text.uart_close), (220 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_close), (8 bytes).
    Removing mk_uart.o(.text.__NVIC_DisableIRQ), (44 bytes).
    Removing mk_uart.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_send), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_state_set), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_dma_callback), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_state_clear), (8 bytes).
    Removing mk_uart.o(.text.uart_receive), (636 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_receive), (8 bytes).
    Removing mk_uart.o(.text.uart_tx_abort_dma), (96 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_tx_abort_dma), (8 bytes).
    Removing mk_uart.o(.text.uart_dma_abort_callback), (344 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_dma_abort_callback), (8 bytes).
    Removing mk_uart.o(.text.uart_rx_abort_dma), (112 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_rx_abort_dma), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_irq_handler), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.UART0_IRQHandler), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.UART1_IRQHandler), (8 bytes).
    Removing mk_uart.o(.text.uart_printf_init), (36 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_printf_init), (8 bytes).
    Removing mk_uart.o(.text.uart_printf), (98 bytes).
    Removing mk_uart.o(.ARM.exidx.text.uart_printf), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.int_lock), (8 bytes).
    Removing mk_uart.o(.ARM.exidx.text.int_unlock), (8 bytes).
    Removing mk_uart.o(.rodata.cst32), (32 bytes).
    Removing mk_wdt.o(.text), (0 bytes).
    Removing mk_wdt.o(.text.wdt_open), (304 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_open), (8 bytes).
    Removing mk_wdt.o(.text.__NVIC_SetPriority), (120 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes).
    Removing mk_wdt.o(.text.__NVIC_EnableIRQ), (36 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_close), (8 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes).
    Removing mk_wdt.o(.text.wdt_set_time), (108 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_set_time), (8 bytes).
    Removing mk_wdt.o(.text.wdt_ping), (96 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_ping), (8 bytes).
    Removing mk_wdt.o(.text.wdt_time_left), (84 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.wdt_time_left), (8 bytes).
    Removing mk_wdt.o(.ARM.exidx.text.WDT_IRQHandler), (8 bytes).
    Removing adc_example.o(.text), (0 bytes).
    Removing adc_example.o(.ARM.exidx.text.main), (8 bytes).
    Removing adc_example.o(.ARM.exidx.text.adc_callback), (8 bytes).
    Removing board.o(.text), (0 bytes).
    Removing board.o(.ARM.exidx.text.board_clock_run), (8 bytes).
    Removing board.o(.ARM.exidx.text.board_debug_console_open), (8 bytes).
    Removing board.o(.text.board_calibration_params_default), (12 bytes).
    Removing board.o(.ARM.exidx.text.board_calibration_params_default), (8 bytes).
    Removing board.o(.text.board_calibration_params_load), (8 bytes).
    Removing board.o(.ARM.exidx.text.board_calibration_params_load), (8 bytes).
    Removing board.o(.text.board_calibration_param_write), (30 bytes).
    Removing board.o(.ARM.exidx.text.board_calibration_param_write), (8 bytes).
    Removing board.o(.text.board_ranging_result_correct), (128 bytes).
    Removing board.o(.ARM.exidx.text.board_ranging_result_correct), (8 bytes).
    Removing board.o(.text.board_button_init), (68 bytes).
    Removing board.o(.ARM.exidx.text.board_button_init), (8 bytes).
    Removing board.o(.text.board_led_init), (32 bytes).
    Removing board.o(.ARM.exidx.text.board_led_init), (8 bytes).
    Removing board.o(.text.board_led_on), (16 bytes).
    Removing board.o(.ARM.exidx.text.board_led_on), (8 bytes).
    Removing board.o(.text.board_led_off), (16 bytes).
    Removing board.o(.ARM.exidx.text.board_led_off), (8 bytes).
    Removing board.o(.text.board_led_toggle), (16 bytes).
    Removing board.o(.ARM.exidx.text.board_led_toggle), (8 bytes).
    Removing board.o(.ARM.exidx.text.board_configure), (8 bytes).
    Removing board.o(.text.board_prepare_for_power_down), (10 bytes).
    Removing board.o(.ARM.exidx.text.board_prepare_for_power_down), (8 bytes).
    Removing board.o(.text.board_restore_from_power_down), (56 bytes).
    Removing board.o(.ARM.exidx.text.board_restore_from_power_down), (8 bytes).
    Removing board.o(.bss.button_irq_handler), (4 bytes).
    Removing pin_config.o(.text), (0 bytes).
    Removing pin_config.o(.ARM.exidx.text.board_pins_config), (8 bytes).
    Removing libc.o(.text), (0 bytes).
    Removing libc.o(.ARM.exidx.text.update_libc_rom_table), (8 bytes).
    Removing libc.o(.text.memcpy), (44 bytes).
    Removing libc.o(.ARM.exidx.text.memcpy), (8 bytes).
    Removing libc.o(.text.memmove), (44 bytes).
    Removing libc.o(.ARM.exidx.text.memmove), (8 bytes).
    Removing libc.o(.text.strcpy), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strcpy), (8 bytes).
    Removing libc.o(.text.strncpy), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strncpy), (8 bytes).
    Removing libc.o(.text.strcat), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strcat), (8 bytes).
    Removing libc.o(.text.strncat), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strncat), (8 bytes).
    Removing libc.o(.text.memcmp), (44 bytes).
    Removing libc.o(.ARM.exidx.text.memcmp), (8 bytes).
    Removing libc.o(.text.strcmp), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strcmp), (8 bytes).
    Removing libc.o(.text.strncmp), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strncmp), (8 bytes).
    Removing libc.o(.text.strcasecmp), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strcasecmp), (8 bytes).
    Removing libc.o(.text.strncasecmp), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strncasecmp), (8 bytes).
    Removing libc.o(.text.strcoll), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strcoll), (8 bytes).
    Removing libc.o(.text.strxfrm), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strxfrm), (8 bytes).
    Removing libc.o(.text.memchr), (44 bytes).
    Removing libc.o(.ARM.exidx.text.memchr), (8 bytes).
    Removing libc.o(.text.strchr), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strchr), (8 bytes).
    Removing libc.o(.text.strcspn), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strcspn), (8 bytes).
    Removing libc.o(.text.strpbrk), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strpbrk), (8 bytes).
    Removing libc.o(.text.strrchr), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strrchr), (8 bytes).
    Removing libc.o(.text.strspn), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strspn), (8 bytes).
    Removing libc.o(.text.strstr), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strstr), (8 bytes).
    Removing libc.o(.text.strtok), (36 bytes).
    Removing libc.o(.ARM.exidx.text.strtok), (8 bytes).
    Removing libc.o(.text.memset), (44 bytes).
    Removing libc.o(.ARM.exidx.text.memset), (8 bytes).
    Removing libc.o(.text.strerror), (32 bytes).
    Removing libc.o(.ARM.exidx.text.strerror), (8 bytes).
    Removing libc.o(.ARM.exidx.text.strlen), (8 bytes).
    Removing libc.o(.text.strlcpy), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strlcpy), (8 bytes).
    Removing libc.o(.text.strlcat), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strlcat), (8 bytes).
    Removing libc.o(.text.sprintf), (68 bytes).
    Removing libc.o(.ARM.exidx.text.sprintf), (8 bytes).
    Removing libc.o(.text.snprintf), (68 bytes).
    Removing libc.o(.ARM.exidx.text.snprintf), (8 bytes).
    Removing libc.o(.text.vsprintf), (44 bytes).
    Removing libc.o(.ARM.exidx.text.vsprintf), (8 bytes).
    Removing libc.o(.text.vsnprintf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.vsnprintf), (8 bytes).
    Removing libc.o(.text.sscanf), (64 bytes).
    Removing libc.o(.ARM.exidx.text.sscanf), (8 bytes).
    Removing libc.o(.text.vsscanf), (44 bytes).
    Removing libc.o(.ARM.exidx.text.vsscanf), (8 bytes).
    Removing libc.o(.text.atof), (32 bytes).
    Removing libc.o(.ARM.exidx.text.atof), (8 bytes).
    Removing libc.o(.text.atoi), (32 bytes).
    Removing libc.o(.ARM.exidx.text.atoi), (8 bytes).
    Removing libc.o(.text.atol), (32 bytes).
    Removing libc.o(.ARM.exidx.text.atol), (8 bytes).
    Removing libc.o(.text.atoll), (32 bytes).
    Removing libc.o(.ARM.exidx.text.atoll), (8 bytes).
    Removing libc.o(.text.strtod), (40 bytes).
    Removing libc.o(.ARM.exidx.text.strtod), (8 bytes).
    Removing libc.o(.text.strtol), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strtol), (8 bytes).
    Removing libc.o(.text.strtoul), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strtoul), (8 bytes).
    Removing libc.o(.text.strtoll), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strtoll), (8 bytes).
    Removing libc.o(.text.strtoull), (44 bytes).
    Removing libc.o(.ARM.exidx.text.strtoull), (8 bytes).
    Removing libc.o(.text.rand), (20 bytes).
    Removing libc.o(.ARM.exidx.text.rand), (8 bytes).
    Removing libc.o(.text.srand), (32 bytes).
    Removing libc.o(.ARM.exidx.text.srand), (8 bytes).
    Removing libc.o(.text.bsearch), (60 bytes).
    Removing libc.o(.ARM.exidx.text.bsearch), (8 bytes).
    Removing libc.o(.text.qsort), (52 bytes).
    Removing libc.o(.ARM.exidx.text.qsort), (8 bytes).
    Removing libc.o(.ARM.exidx.text.abs), (8 bytes).
    Removing libc.o(.text.div), (40 bytes).
    Removing libc.o(.ARM.exidx.text.div), (8 bytes).
    Removing libc.o(.text.labs), (32 bytes).
    Removing libc.o(.ARM.exidx.text.labs), (8 bytes).
    Removing libc.o(.text.ldiv), (40 bytes).
    Removing libc.o(.ARM.exidx.text.ldiv), (8 bytes).
    Removing libc.o(.text.llabs), (44 bytes).
    Removing libc.o(.ARM.exidx.text.llabs), (8 bytes).
    Removing libc.o(.text.lldiv), (56 bytes).
    Removing libc.o(.ARM.exidx.text.lldiv), (8 bytes).
    Removing libc.o(.text.acos), (44 bytes).
    Removing libc.o(.ARM.exidx.text.acos), (8 bytes).
    Removing libc.o(.text.asin), (44 bytes).
    Removing libc.o(.ARM.exidx.text.asin), (8 bytes).
    Removing libc.o(.text.atan), (44 bytes).
    Removing libc.o(.ARM.exidx.text.atan), (8 bytes).
    Removing libc.o(.text.atan2), (60 bytes).
    Removing libc.o(.ARM.exidx.text.atan2), (8 bytes).
    Removing libc.o(.text.cos), (44 bytes).
    Removing libc.o(.ARM.exidx.text.cos), (8 bytes).
    Removing libc.o(.text.sin), (48 bytes).
    Removing libc.o(.ARM.exidx.text.sin), (8 bytes).
    Removing libc.o(.text.tan), (48 bytes).
    Removing libc.o(.ARM.exidx.text.tan), (8 bytes).
    Removing libc.o(.text.cosh), (44 bytes).
    Removing libc.o(.ARM.exidx.text.cosh), (8 bytes).
    Removing libc.o(.text.sinh), (48 bytes).
    Removing libc.o(.ARM.exidx.text.sinh), (8 bytes).
    Removing libc.o(.text.tanh), (48 bytes).
    Removing libc.o(.ARM.exidx.text.tanh), (8 bytes).
    Removing libc.o(.text.exp), (44 bytes).
    Removing libc.o(.ARM.exidx.text.exp), (8 bytes).
    Removing libc.o(.text.frexp), (52 bytes).
    Removing libc.o(.ARM.exidx.text.frexp), (8 bytes).
    Removing libc.o(.text.ldexp), (52 bytes).
    Removing libc.o(.ARM.exidx.text.ldexp), (8 bytes).
    Removing libc.o(.text.log), (48 bytes).
    Removing libc.o(.ARM.exidx.text.log), (8 bytes).
    Removing libc.o(.text.log10), (48 bytes).
    Removing libc.o(.ARM.exidx.text.log10), (8 bytes).
    Removing libc.o(.text.modf), (52 bytes).
    Removing libc.o(.ARM.exidx.text.modf), (8 bytes).
    Removing libc.o(.text.pow), (60 bytes).
    Removing libc.o(.ARM.exidx.text.pow), (8 bytes).
    Removing libc.o(.text.sqrt), (48 bytes).
    Removing libc.o(.ARM.exidx.text.sqrt), (8 bytes).
    Removing libc.o(.text.ceil), (44 bytes).
    Removing libc.o(.ARM.exidx.text.ceil), (8 bytes).
    Removing libc.o(.text.fabs), (44 bytes).
    Removing libc.o(.ARM.exidx.text.fabs), (8 bytes).
    Removing libc.o(.text.floor), (44 bytes).
    Removing libc.o(.ARM.exidx.text.floor), (8 bytes).
    Removing libc.o(.text.fmod), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fmod), (8 bytes).
    Removing libc.o(.text.acosh), (48 bytes).
    Removing libc.o(.ARM.exidx.text.acosh), (8 bytes).
    Removing libc.o(.text.asinh), (48 bytes).
    Removing libc.o(.ARM.exidx.text.asinh), (8 bytes).
    Removing libc.o(.text.atanh), (48 bytes).
    Removing libc.o(.ARM.exidx.text.atanh), (8 bytes).
    Removing libc.o(.text.cbrt), (48 bytes).
    Removing libc.o(.ARM.exidx.text.cbrt), (8 bytes).
    Removing libc.o(.text.erf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.erf), (8 bytes).
    Removing libc.o(.text.erfc), (48 bytes).
    Removing libc.o(.ARM.exidx.text.erfc), (8 bytes).
    Removing libc.o(.text.expm1), (48 bytes).
    Removing libc.o(.ARM.exidx.text.expm1), (8 bytes).
    Removing libc.o(.text.hypot), (60 bytes).
    Removing libc.o(.ARM.exidx.text.hypot), (8 bytes).
    Removing libc.o(.text.remainder), (60 bytes).
    Removing libc.o(.ARM.exidx.text.remainder), (8 bytes).
    Removing libc.o(.text.rint), (48 bytes).
    Removing libc.o(.ARM.exidx.text.rint), (8 bytes).
    Removing libc.o(.text.scalbln), (52 bytes).
    Removing libc.o(.ARM.exidx.text.scalbln), (8 bytes).
    Removing libc.o(.text.scalblnf), (44 bytes).
    Removing libc.o(.ARM.exidx.text.scalblnf), (8 bytes).
    Removing libc.o(.text.scalblnl), (52 bytes).
    Removing libc.o(.ARM.exidx.text.scalblnl), (8 bytes).
    Removing libc.o(.text.fabsf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.fabsf), (8 bytes).
    Removing libc.o(.text.sinf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.sinf), (8 bytes).
    Removing libc.o(.text.cosf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.cosf), (8 bytes).
    Removing libc.o(.text.tanf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.tanf), (8 bytes).
    Removing libc.o(.text.acosf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.acosf), (8 bytes).
    Removing libc.o(.text.asinf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.asinf), (8 bytes).
    Removing libc.o(.text.atanf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.atanf), (8 bytes).
    Removing libc.o(.text.atan2f), (48 bytes).
    Removing libc.o(.ARM.exidx.text.atan2f), (8 bytes).
    Removing libc.o(.text.sinhf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.sinhf), (8 bytes).
    Removing libc.o(.text.coshf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.coshf), (8 bytes).
    Removing libc.o(.text.tanhf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.tanhf), (8 bytes).
    Removing libc.o(.text.expf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.expf), (8 bytes).
    Removing libc.o(.text.logf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.logf), (8 bytes).
    Removing libc.o(.text.log10f), (40 bytes).
    Removing libc.o(.ARM.exidx.text.log10f), (8 bytes).
    Removing libc.o(.text.powf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.powf), (8 bytes).
    Removing libc.o(.text.sqrtf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.sqrtf), (8 bytes).
    Removing libc.o(.text.ldexpf), (44 bytes).
    Removing libc.o(.ARM.exidx.text.ldexpf), (8 bytes).
    Removing libc.o(.text.frexpf), (44 bytes).
    Removing libc.o(.ARM.exidx.text.frexpf), (8 bytes).
    Removing libc.o(.text.ceilf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.ceilf), (8 bytes).
    Removing libc.o(.text.floorf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.floorf), (8 bytes).
    Removing libc.o(.text.fmodf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.fmodf), (8 bytes).
    Removing libc.o(.text.modff), (44 bytes).
    Removing libc.o(.ARM.exidx.text.modff), (8 bytes).
    Removing libc.o(.text.acosl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.acosl), (8 bytes).
    Removing libc.o(.text.asinl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.asinl), (8 bytes).
    Removing libc.o(.text.atanl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.atanl), (8 bytes).
    Removing libc.o(.text.atan2l), (60 bytes).
    Removing libc.o(.ARM.exidx.text.atan2l), (8 bytes).
    Removing libc.o(.text.ceill), (48 bytes).
    Removing libc.o(.ARM.exidx.text.ceill), (8 bytes).
    Removing libc.o(.text.cosl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.cosl), (8 bytes).
    Removing libc.o(.text.coshl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.coshl), (8 bytes).
    Removing libc.o(.text.expl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.expl), (8 bytes).
    Removing libc.o(.text.fabsl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.fabsl), (8 bytes).
    Removing libc.o(.text.floorl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.floorl), (8 bytes).
    Removing libc.o(.text.fmodl), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fmodl), (8 bytes).
    Removing libc.o(.text.frexpl), (52 bytes).
    Removing libc.o(.ARM.exidx.text.frexpl), (8 bytes).
    Removing libc.o(.text.ldexpl), (52 bytes).
    Removing libc.o(.ARM.exidx.text.ldexpl), (8 bytes).
    Removing libc.o(.text.logl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.logl), (8 bytes).
    Removing libc.o(.text.log10l), (48 bytes).
    Removing libc.o(.ARM.exidx.text.log10l), (8 bytes).
    Removing libc.o(.text.modfl), (52 bytes).
    Removing libc.o(.ARM.exidx.text.modfl), (8 bytes).
    Removing libc.o(.text.powl), (60 bytes).
    Removing libc.o(.ARM.exidx.text.powl), (8 bytes).
    Removing libc.o(.text.sinl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.sinl), (8 bytes).
    Removing libc.o(.text.sinhl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.sinhl), (8 bytes).
    Removing libc.o(.text.sqrtl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.sqrtl), (8 bytes).
    Removing libc.o(.text.tanl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.tanl), (8 bytes).
    Removing libc.o(.text.tanhl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.tanhl), (8 bytes).
    Removing libc.o(.text.acoshf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.acoshf), (8 bytes).
    Removing libc.o(.text.acoshl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.acoshl), (8 bytes).
    Removing libc.o(.text.asinhf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.asinhf), (8 bytes).
    Removing libc.o(.text.asinhl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.asinhl), (8 bytes).
    Removing libc.o(.text.atanhf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.atanhf), (8 bytes).
    Removing libc.o(.text.atanhl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.atanhl), (8 bytes).
    Removing libc.o(.text.copysignl), (60 bytes).
    Removing libc.o(.ARM.exidx.text.copysignl), (8 bytes).
    Removing libc.o(.text.cbrtf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.cbrtf), (8 bytes).
    Removing libc.o(.text.cbrtl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.cbrtl), (8 bytes).
    Removing libc.o(.text.erff), (40 bytes).
    Removing libc.o(.ARM.exidx.text.erff), (8 bytes).
    Removing libc.o(.text.erfl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.erfl), (8 bytes).
    Removing libc.o(.text.erfcf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.erfcf), (8 bytes).
    Removing libc.o(.text.erfcl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.erfcl), (8 bytes).
    Removing libc.o(.text.expm1f), (40 bytes).
    Removing libc.o(.ARM.exidx.text.expm1f), (8 bytes).
    Removing libc.o(.text.expm1l), (48 bytes).
    Removing libc.o(.ARM.exidx.text.expm1l), (8 bytes).
    Removing libc.o(.text.log1pf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.log1pf), (8 bytes).
    Removing libc.o(.text.log1pl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.log1pl), (8 bytes).
    Removing libc.o(.text.hypotf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.hypotf), (8 bytes).
    Removing libc.o(.text.hypotl), (60 bytes).
    Removing libc.o(.ARM.exidx.text.hypotl), (8 bytes).
    Removing libc.o(.text.remainderf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.remainderf), (8 bytes).
    Removing libc.o(.text.remainderl), (60 bytes).
    Removing libc.o(.ARM.exidx.text.remainderl), (8 bytes).
    Removing libc.o(.text.rintf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.rintf), (8 bytes).
    Removing libc.o(.text.rintl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.rintl), (8 bytes).
    Removing libc.o(.text.exp2), (48 bytes).
    Removing libc.o(.ARM.exidx.text.exp2), (8 bytes).
    Removing libc.o(.text.exp2f), (40 bytes).
    Removing libc.o(.ARM.exidx.text.exp2f), (8 bytes).
    Removing libc.o(.text.exp2l), (48 bytes).
    Removing libc.o(.ARM.exidx.text.exp2l), (8 bytes).
    Removing libc.o(.text.fdim), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fdim), (8 bytes).
    Removing libc.o(.text.fdimf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.fdimf), (8 bytes).
    Removing libc.o(.text.fdiml), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fdiml), (8 bytes).
    Removing libc.o(.text.fma), (92 bytes).
    Removing libc.o(.ARM.exidx.text.fma), (8 bytes).
    Removing libc.o(.text.fmaf), (56 bytes).
    Removing libc.o(.ARM.exidx.text.fmaf), (8 bytes).
    Removing libc.o(.text.fmax), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fmax), (8 bytes).
    Removing libc.o(.text.fmaxf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.fmaxf), (8 bytes).
    Removing libc.o(.text.fmaxl), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fmaxl), (8 bytes).
    Removing libc.o(.text.fmin), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fmin), (8 bytes).
    Removing libc.o(.text.fminf), (48 bytes).
    Removing libc.o(.ARM.exidx.text.fminf), (8 bytes).
    Removing libc.o(.text.fminl), (60 bytes).
    Removing libc.o(.ARM.exidx.text.fminl), (8 bytes).
    Removing libc.o(.text.log2f), (40 bytes).
    Removing libc.o(.ARM.exidx.text.log2f), (8 bytes).
    Removing libc.o(.text.log2l), (48 bytes).
    Removing libc.o(.ARM.exidx.text.log2l), (8 bytes).
    Removing libc.o(.text.lrint), (48 bytes).
    Removing libc.o(.ARM.exidx.text.lrint), (8 bytes).
    Removing libc.o(.text.lrintf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.lrintf), (8 bytes).
    Removing libc.o(.text.llrint), (48 bytes).
    Removing libc.o(.ARM.exidx.text.llrint), (8 bytes).
    Removing libc.o(.text.llrintf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.llrintf), (8 bytes).
    Removing libc.o(.text.lround), (48 bytes).
    Removing libc.o(.ARM.exidx.text.lround), (8 bytes).
    Removing libc.o(.text.lroundf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.lroundf), (8 bytes).
    Removing libc.o(.text.llround), (48 bytes).
    Removing libc.o(.ARM.exidx.text.llround), (8 bytes).
    Removing libc.o(.text.llroundf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.llroundf), (8 bytes).
    Removing libc.o(.text.nan), (36 bytes).
    Removing libc.o(.ARM.exidx.text.nan), (8 bytes).
    Removing libc.o(.text.nanf), (36 bytes).
    Removing libc.o(.ARM.exidx.text.nanf), (8 bytes).
    Removing libc.o(.text.nearbyint), (48 bytes).
    Removing libc.o(.ARM.exidx.text.nearbyint), (8 bytes).
    Removing libc.o(.text.nearbyintf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.nearbyintf), (8 bytes).
    Removing libc.o(.text.nearbyintl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.nearbyintl), (8 bytes).
    Removing libc.o(.text.remquo), (76 bytes).
    Removing libc.o(.ARM.exidx.text.remquo), (8 bytes).
    Removing libc.o(.text.remquof), (52 bytes).
    Removing libc.o(.ARM.exidx.text.remquof), (8 bytes).
    Removing libc.o(.text.round), (48 bytes).
    Removing libc.o(.ARM.exidx.text.round), (8 bytes).
    Removing libc.o(.text.roundf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.roundf), (8 bytes).
    Removing libc.o(.text.roundl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.roundl), (8 bytes).
    Removing libc.o(.text.tgamma), (48 bytes).
    Removing libc.o(.ARM.exidx.text.tgamma), (8 bytes).
    Removing libc.o(.text.tgammaf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.tgammaf), (8 bytes).
    Removing libc.o(.text.tgammal), (48 bytes).
    Removing libc.o(.ARM.exidx.text.tgammal), (8 bytes).
    Removing libc.o(.text.trunc), (48 bytes).
    Removing libc.o(.ARM.exidx.text.trunc), (8 bytes).
    Removing libc.o(.text.truncf), (40 bytes).
    Removing libc.o(.ARM.exidx.text.truncf), (8 bytes).
    Removing libc.o(.text.truncl), (48 bytes).
    Removing libc.o(.ARM.exidx.text.truncl), (8 bytes).
    Removing fadd.o(.text), (178 bytes).
    Removing dadd.o(.text), (356 bytes).
    Removing dmul.o(.text), (208 bytes).
    Removing ddiv.o(.text), (240 bytes).
    Removing fcmple.o(.text), (28 bytes).
    Removing dflti.o(.text), (40 bytes).
    Removing dfixi.o(.text), (72 bytes).
    Removing f2d.o(.text), (40 bytes).
    Removing depilogue.o(.text), (190 bytes).
    Removing depilogue.o(i.__ARM_clz), (46 bytes).
 
929 unused section(s) (total 35757 bytes) removed from the image.
 
==============================================================================
 
Image Symbol Table
 
    Local Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    ../clib/../cmprslib/zerorunl.c           0x00000000   Number         0  __dczerorl.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uidiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  idiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  ldiv.o ABSOLUTE
    ../clib/microlib/division.c              0x00000000   Number         0  uldiv.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry4.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry5.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry7b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry8b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry9b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry10b.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11a.o ABSOLUTE
    ../clib/microlib/init/entry.s            0x00000000   Number         0  entry11b.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llshl.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llushr.o ABSOLUTE
    ../clib/microlib/longlong.c              0x00000000   Number         0  llsshr.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpya.o ABSOLUTE
    ../clib/microlib/string/memcpy.c         0x00000000   Number         0  memcpyb.o ABSOLUTE
    ../clib/microlib/string/memset.c         0x00000000   Number         0  memseta.o ABSOLUTE
    ../clib/microlib/stubs.s                 0x00000000   Number         0  iusefp.o ABSOLUTE
    ../fplib/microlib/d2f.c                  0x00000000   Number         0  d2f.o ABSOLUTE
    ../fplib/microlib/f2d.c                  0x00000000   Number         0  f2d.o ABSOLUTE
    ../fplib/microlib/fpadd.c                0x00000000   Number         0  fadd.o ABSOLUTE
    ../fplib/microlib/fpadd.c                0x00000000   Number         0  dadd.o ABSOLUTE
    ../fplib/microlib/fpcmp.c                0x00000000   Number         0  fcmple.o ABSOLUTE
    ../fplib/microlib/fpcmp.c                0x00000000   Number         0  fcmpge.o ABSOLUTE
    ../fplib/microlib/fpdiv.c                0x00000000   Number         0  ddiv.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  fepilogue.o ABSOLUTE
    ../fplib/microlib/fpepilogue.c           0x00000000   Number         0  depilogue.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  ffixi.o ABSOLUTE
    ../fplib/microlib/fpfix.c                0x00000000   Number         0  dfixi.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  fflti.o ABSOLUTE
    ../fplib/microlib/fpflt.c                0x00000000   Number         0  dflti.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  fmul.o ABSOLUTE
    ../fplib/microlib/fpmul.c                0x00000000   Number         0  dmul.o ABSOLUTE
    __tagsym$$used.0                         0x00000000   Number         0  startup_mk800x.o(RESET)
    adc_example.c                            0x00000000   Number         0  adc_example.o ABSOLUTE
    board.c                                  0x00000000   Number         0  board.o ABSOLUTE
    dc.s                                     0x00000000   Number         0  dc.o ABSOLUTE
    handlers.s                               0x00000000   Number         0  handlers.o ABSOLUTE
    init.s                                   0x00000000   Number         0  init.o ABSOLUTE
    libc.c                                   0x00000000   Number         0  libc.o ABSOLUTE
    mk_adc.c                                 0x00000000   Number         0  mk_adc.o ABSOLUTE
    mk_calib.c                               0x00000000   Number         0  mk_calib.o ABSOLUTE
    mk_clock.c                               0x00000000   Number         0  mk_clock.o ABSOLUTE
    mk_dma.c                                 0x00000000   Number         0  mk_dma.o ABSOLUTE
    mk_dual_timer.c                          0x00000000   Number         0  mk_dual_timer.o ABSOLUTE
    mk_flash.c                               0x00000000   Number         0  mk_flash.o ABSOLUTE
    mk_gpio.c                                0x00000000   Number         0  mk_gpio.o ABSOLUTE
    mk_io.c                                  0x00000000   Number         0  mk_io.o ABSOLUTE
    mk_misc.c                                0x00000000   Number         0  mk_misc.o ABSOLUTE
    mk_power.c                               0x00000000   Number         0  mk_power.o ABSOLUTE
    mk_reset.c                               0x00000000   Number         0  mk_reset.o ABSOLUTE
    mk_rtc.c                                 0x00000000   Number         0  mk_rtc.o ABSOLUTE
    mk_sleep_timer.c                         0x00000000   Number         0  mk_sleep_timer.o ABSOLUTE
    mk_trace.c                               0x00000000   Number         0  mk_trace.o ABSOLUTE
    mk_uart.c                                0x00000000   Number         0  mk_uart.o ABSOLUTE
    mk_wdt.c                                 0x00000000   Number         0  mk_wdt.o ABSOLUTE
    pin_config.c                             0x00000000   Number         0  pin_config.o ABSOLUTE
    startup_MK800X.c                         0x00000000   Number         0  startup_mk800x.o ABSOLUTE
    system_MK800X.c                          0x00000000   Number         0  system_mk800x.o ABSOLUTE
    .ARM.Collect$$$$00000000                 0x000000c0   Section        0  entry.o(.ARM.Collect$$$$00000000)
    .ARM.Collect$$$$00000003                 0x000000c0   Section        4  entry4.o(.ARM.Collect$$$$00000003)
    .ARM.Collect$$$$00000004                 0x000000c4   Section        4  entry5.o(.ARM.Collect$$$$00000004)
    .ARM.Collect$$$$00000008                 0x000000c8   Section        0  entry7b.o(.ARM.Collect$$$$00000008)
    .ARM.Collect$$$$0000000A                 0x000000c8   Section        0  entry8b.o(.ARM.Collect$$$$0000000A)
    .ARM.Collect$$$$0000000B                 0x000000c8   Section        8  entry9a.o(.ARM.Collect$$$$0000000B)
    __lit__00000000                          0x000000d0   Data           4  entry4.o(.ARM.Collect$$$$00002714)
    .ARM.Collect$$$$0000000D                 0x000000d0   Section        0  entry10a.o(.ARM.Collect$$$$0000000D)
    .ARM.Collect$$$$0000000F                 0x000000d0   Section        0  entry11a.o(.ARM.Collect$$$$0000000F)
    .ARM.Collect$$$$00002714                 0x000000d0   Section        4  entry4.o(.ARM.Collect$$$$00002714)
    .text                                    0x000000d4   Section        0  uidiv.o(.text)
    .text                                    0x00000100   Section        0  idiv.o(.text)
    .text                                    0x00000128   Section        0  memcpya.o(.text)
    .text                                    0x0000014c   Section        0  memseta.o(.text)
    .text                                    0x00000170   Section        0  fmul.o(.text)
    .text                                    0x000001ea   Section        0  fcmpge.o(.text)
    .text                                    0x00000206   Section        0  fflti.o(.text)
    .text                                    0x0000021c   Section        0  ffixi.o(.text)
    .text                                    0x0000024e   Section        0  d2f.o(.text)
    .text                                    0x00000286   Section        0  iusefp.o(.text)
    .text                                    0x00000286   Section        0  fepilogue.o(.text)
    .text                                    0x00000308   Section       36  init.o(.text)
    .text                                    0x0000032c   Section        0  __dczerorl.o(.text)
    [Anonymous Symbol]                       0x00000368   Section        0  mk_adc.o(.text.ADC_IRQHandler)
    __arm_cp.11_0                            0x0000045c   Number         4  mk_adc.o(.text.ADC_IRQHandler)
    __arm_cp.11_1                            0x00000460   Number         4  mk_adc.o(.text.ADC_IRQHandler)
    __arm_cp.11_2                            0x00000464   Number         4  mk_adc.o(.text.ADC_IRQHandler)
    __arm_cp.11_3                            0x00000468   Number         4  mk_adc.o(.text.ADC_IRQHandler)
    [Anonymous Symbol]                       0x0000046c   Section        0  mk_misc.o(.text.BOD_IRQHandler)
    [Anonymous Symbol]                       0x0000046e   Section        0  mk_calib.o(.text.CALIB_IRQHandler)
    [Anonymous Symbol]                       0x00000470   Section        0  mk_dma.o(.text.DMA_IRQHandler)
    __arm_cp.11_0                            0x00000594   Number         4  mk_dma.o(.text.DMA_IRQHandler)
    [Anonymous Symbol]                       0x00000598   Section        0  startup_mk800x.o(.text.Default_Handler)
    [Anonymous Symbol]                       0x0000059c   Section        0  mk_flash.o(.text.FLASH_CTRL_IRQHandler)
    __arm_cp.29_0                            0x000005f0   Number         4  mk_flash.o(.text.FLASH_CTRL_IRQHandler)
    [Anonymous Symbol]                       0x000005f4   Section        0  mk_gpio.o(.text.GPIO_IRQHandler)
    __arm_cp.15_0                            0x00000658   Number         4  mk_gpio.o(.text.GPIO_IRQHandler)
    [Anonymous Symbol]                       0x0000065c   Section        0  mk_trace.o(.text.HardFault_Handler)
    label_1                                  0x0000066e   Number         0  mk_trace.o(.text.HardFault_Handler)
    label_2                                  0x00000676   Number         0  mk_trace.o(.text.HardFault_Handler)
    [Anonymous Symbol]                       0x000006e8   Section        0  mk_rtc.o(.text.RCO32K_CAL_IRQHandler)
    __arm_cp.16_1                            0x00000848   Number         4  mk_rtc.o(.text.RCO32K_CAL_IRQHandler)
    __arm_cp.16_2                            0x0000084c   Number         4  mk_rtc.o(.text.RCO32K_CAL_IRQHandler)
    __arm_cp.16_3                            0x00000850   Number         4  mk_rtc.o(.text.RCO32K_CAL_IRQHandler)
    __arm_cp.16_4                            0x00000854   Number         4  mk_rtc.o(.text.RCO32K_CAL_IRQHandler)
    __arm_cp.16_5                            0x00000858   Number         4  mk_rtc.o(.text.RCO32K_CAL_IRQHandler)
    [Anonymous Symbol]                       0x0000085c   Section        0  mk_rtc.o(.text.RTC_ALARM_IRQHandler)
    [Anonymous Symbol]                       0x000008d8   Section        0  mk_rtc.o(.text.RTC_TICK_IRQHandler)
    __arm_cp.13_0                            0x00000958   Number         4  mk_rtc.o(.text.RTC_TICK_IRQHandler)
    [Anonymous Symbol]                       0x0000095c   Section        0  startup_mk800x.o(.text.Reset_Handler)
    __arm_cp.1_0                             0x0000097c   Number         4  startup_mk800x.o(.text.Reset_Handler)
    [Anonymous Symbol]                       0x00000980   Section        0  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.11_0                            0x000009ec   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.11_1                            0x000009f0   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.11_2                            0x000009f4   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.11_3                            0x000009f8   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    __arm_cp.11_4                            0x000009fc   Number         4  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    [Anonymous Symbol]                       0x00000a00   Section        0  mk_misc.o(.text.SysTick_Handler)
    __arm_cp.30_0                            0x00000a1c   Number         4  mk_misc.o(.text.SysTick_Handler)
    [Anonymous Symbol]                       0x00000a20   Section        0  system_mk800x.o(.text.SystemInit)
    __arm_cp.1_0                             0x00000a28   Number         4  system_mk800x.o(.text.SystemInit)
    __arm_cp.1_1                             0x00000a2c   Number         4  system_mk800x.o(.text.SystemInit)
    [Anonymous Symbol]                       0x00000a30   Section        0  mk_dual_timer.o(.text.TIMER2_IRQHandler)
    [Anonymous Symbol]                       0x00000a68   Section        0  mk_dual_timer.o(.text.TIMER3_IRQHandler)
    __arm_cp.13_0                            0x00000aa4   Number         4  mk_dual_timer.o(.text.TIMER3_IRQHandler)
    [Anonymous Symbol]                       0x00000aa8   Section        0  mk_uart.o(.text.UART0_IRQHandler)
    [Anonymous Symbol]                       0x00000ab2   Section        0  mk_uart.o(.text.UART1_IRQHandler)
    [Anonymous Symbol]                       0x00000abc   Section        0  mk_wdt.o(.text.WDT_IRQHandler)
    __arm_cp.9_0                             0x00000af4   Number         4  mk_wdt.o(.text.WDT_IRQHandler)
    _PrintInt                                0x00000af9   Thumb Code   482  mk_trace.o(.text._PrintInt)
    [Anonymous Symbol]                       0x00000af8   Section        0  mk_trace.o(.text._PrintInt)
    _PrintUnsigned                           0x00000cdd   Thumb Code   456  mk_trace.o(.text._PrintUnsigned)
    [Anonymous Symbol]                       0x00000cdc   Section        0  mk_trace.o(.text._PrintUnsigned)
    __arm_cp.13_0                            0x00000ea0   Number         4  mk_trace.o(.text._PrintUnsigned)
    _StoreChar                               0x00000ea5   Thumb Code    62  mk_trace.o(.text._StoreChar)
    [Anonymous Symbol]                       0x00000ea4   Section        0  mk_trace.o(.text._StoreChar)
    __NVIC_ClearPendingIRQ                   0x00000ee5   Thumb Code    32  mk_adc.o(.text.__NVIC_ClearPendingIRQ)
    [Anonymous Symbol]                       0x00000ee4   Section        0  mk_adc.o(.text.__NVIC_ClearPendingIRQ)
    __NVIC_ClearPendingIRQ                   0x00000f05   Thumb Code    32  mk_dma.o(.text.__NVIC_ClearPendingIRQ)
    [Anonymous Symbol]                       0x00000f04   Section        0  mk_dma.o(.text.__NVIC_ClearPendingIRQ)
    __NVIC_ClearPendingIRQ                   0x00000f25   Thumb Code    32  mk_dual_timer.o(.text.__NVIC_ClearPendingIRQ)
    [Anonymous Symbol]                       0x00000f24   Section        0  mk_dual_timer.o(.text.__NVIC_ClearPendingIRQ)
    __NVIC_ClearPendingIRQ                   0x00000f45   Thumb Code    32  mk_uart.o(.text.__NVIC_ClearPendingIRQ)
    [Anonymous Symbol]                       0x00000f44   Section        0  mk_uart.o(.text.__NVIC_ClearPendingIRQ)
    __NVIC_ClearPendingIRQ                   0x00000f65   Thumb Code    36  mk_wdt.o(.text.__NVIC_ClearPendingIRQ)
    [Anonymous Symbol]                       0x00000f64   Section        0  mk_wdt.o(.text.__NVIC_ClearPendingIRQ)
    __arm_cp.2_0                             0x00000f84   Number         4  mk_wdt.o(.text.__NVIC_ClearPendingIRQ)
    __NVIC_DisableIRQ                        0x00000f89   Thumb Code    44  mk_wdt.o(.text.__NVIC_DisableIRQ)
    [Anonymous Symbol]                       0x00000f88   Section        0  mk_wdt.o(.text.__NVIC_DisableIRQ)
    __arm_cp.5_0                             0x00000fb0   Number         4  mk_wdt.o(.text.__NVIC_DisableIRQ)
    __NVIC_EnableIRQ                         0x00000fb5   Thumb Code    32  mk_adc.o(.text.__NVIC_EnableIRQ)
    [Anonymous Symbol]                       0x00000fb4   Section        0  mk_adc.o(.text.__NVIC_EnableIRQ)
    __NVIC_EnableIRQ                         0x00000fd5   Thumb Code    32  mk_dma.o(.text.__NVIC_EnableIRQ)
    [Anonymous Symbol]                       0x00000fd4   Section        0  mk_dma.o(.text.__NVIC_EnableIRQ)
    __NVIC_EnableIRQ                         0x00000ff5   Thumb Code    32  mk_dual_timer.o(.text.__NVIC_EnableIRQ)
    [Anonymous Symbol]                       0x00000ff4   Section        0  mk_dual_timer.o(.text.__NVIC_EnableIRQ)
    __NVIC_EnableIRQ                         0x00001015   Thumb Code    36  mk_uart.o(.text.__NVIC_EnableIRQ)
    [Anonymous Symbol]                       0x00001014   Section        0  mk_uart.o(.text.__NVIC_EnableIRQ)
    __arm_cp.8_0                             0x00001034   Number         4  mk_uart.o(.text.__NVIC_EnableIRQ)
    __NVIC_SetPriority                       0x00001039   Thumb Code   112  mk_adc.o(.text.__NVIC_SetPriority)
    [Anonymous Symbol]                       0x00001038   Section        0  mk_adc.o(.text.__NVIC_SetPriority)
    __NVIC_SetPriority                       0x000010a9   Thumb Code   112  mk_dma.o(.text.__NVIC_SetPriority)
    [Anonymous Symbol]                       0x000010a8   Section        0  mk_dma.o(.text.__NVIC_SetPriority)
    __NVIC_SetPriority                       0x00001119   Thumb Code   112  mk_dual_timer.o(.text.__NVIC_SetPriority)
    [Anonymous Symbol]                       0x00001118   Section        0  mk_dual_timer.o(.text.__NVIC_SetPriority)
    __NVIC_SetPriority                       0x00001189   Thumb Code   112  mk_misc.o(.text.__NVIC_SetPriority)
    [Anonymous Symbol]                       0x00001188   Section        0  mk_misc.o(.text.__NVIC_SetPriority)
    __NVIC_SetPriority                       0x000011f9   Thumb Code   120  mk_uart.o(.text.__NVIC_SetPriority)
    [Anonymous Symbol]                       0x000011f8   Section        0  mk_uart.o(.text.__NVIC_SetPriority)
    __arm_cp.6_0                             0x00001268   Number         4  mk_uart.o(.text.__NVIC_SetPriority)
    __arm_cp.6_1                             0x0000126c   Number         4  mk_uart.o(.text.__NVIC_SetPriority)
    _trace_assert_dump                       0x00001271   Thumb Code   832  mk_trace.o(.text._trace_assert_dump)
    [Anonymous Symbol]                       0x00001270   Section        0  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_0                            0x0000155c   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_1                            0x00001560   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_2                            0x00001564   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_3                            0x00001568   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_4                            0x0000156c   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_5                            0x00001570   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_6                            0x00001574   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_7                            0x00001578   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_8                            0x0000157c   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_9                            0x00001580   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_10                           0x00001584   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_11                           0x00001588   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_12                           0x0000158c   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_13                           0x00001590   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_14                           0x00001594   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_15                           0x00001598   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_16                           0x0000159c   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_17                           0x000015a0   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_18                           0x000015a4   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_19                           0x000015a8   Number         4  mk_trace.o(.text._trace_assert_dump)
    __arm_cp.19_20                           0x000015ac   Number         4  mk_trace.o(.text._trace_assert_dump)
    [Anonymous Symbol]                       0x000015b0   Section        0  libc.o(.text.abs)
    __arm_cp.46_0                            0x000015cc   Number         4  libc.o(.text.abs)
    adc_callback                             0x000015d1   Thumb Code   200  adc_example.o(.text.adc_callback)
    [Anonymous Symbol]                       0x000015d0   Section        0  adc_example.o(.text.adc_callback)
    __arm_cp.1_0                             0x00001680   Number         4  adc_example.o(.text.adc_callback)
    __arm_cp.1_1                             0x00001684   Number         4  adc_example.o(.text.adc_callback)
    __arm_cp.1_2                             0x00001688   Number         4  adc_example.o(.text.adc_callback)
    __arm_cp.1_3                             0x0000168c   Number         4  adc_example.o(.text.adc_callback)
    __arm_cp.1_4                             0x00001690   Number         4  adc_example.o(.text.adc_callback)
    __arm_cp.1_5                             0x00001694   Number         4  adc_example.o(.text.adc_callback)
    [Anonymous Symbol]                       0x00001698   Section        0  mk_adc.o(.text.adc_code_to_mv)
    __arm_cp.12_0                            0x000016f0   Number         4  mk_adc.o(.text.adc_code_to_mv)
    adc_dma_callback                         0x000016f5   Thumb Code   144  mk_adc.o(.text.adc_dma_callback)
    [Anonymous Symbol]                       0x000016f4   Section        0  mk_adc.o(.text.adc_dma_callback)
    __arm_cp.10_1                            0x00001778   Number         4  mk_adc.o(.text.adc_dma_callback)
    __arm_cp.10_2                            0x0000177c   Number         4  mk_adc.o(.text.adc_dma_callback)
    __arm_cp.10_3                            0x00001780   Number         4  mk_adc.o(.text.adc_dma_callback)
    [Anonymous Symbol]                       0x00001784   Section        0  mk_adc.o(.text.adc_get)
    __arm_cp.7_1                             0x00001924   Number         4  mk_adc.o(.text.adc_get)
    __arm_cp.7_2                             0x00001928   Number         4  mk_adc.o(.text.adc_get)
    [Anonymous Symbol]                       0x0000192c   Section        0  mk_adc.o(.text.adc_open)
    __arm_cp.0_0                             0x00001ae0   Number         4  mk_adc.o(.text.adc_open)
    __arm_cp.0_1                             0x00001ae4   Number         4  mk_adc.o(.text.adc_open)
    __arm_cp.0_2                             0x00001ae8   Number         4  mk_adc.o(.text.adc_open)
    __arm_cp.0_3                             0x00001aec   Number         4  mk_adc.o(.text.adc_open)
    __arm_cp.0_4                             0x00001af0   Number         4  mk_adc.o(.text.adc_open)
    [Anonymous Symbol]                       0x00001af4   Section        0  board.o(.text.board_clock_run)
    __arm_cp.0_1                             0x00001b60   Number         4  board.o(.text.board_clock_run)
    [Anonymous Symbol]                       0x00001b64   Section        0  board.o(.text.board_configure)
    [Anonymous Symbol]                       0x00001b68   Section        0  board.o(.text.board_debug_console_open)
    __arm_cp.1_0                             0x00001b9c   Number         4  board.o(.text.board_debug_console_open)
    __arm_cp.1_1                             0x00001ba0   Number         4  board.o(.text.board_debug_console_open)
    __arm_cp.1_2                             0x00001ba4   Number         4  board.o(.text.board_debug_console_open)
    __arm_cp.1_3                             0x00001ba8   Number         4  board.o(.text.board_debug_console_open)
    [Anonymous Symbol]                       0x00001bac   Section        0  pin_config.o(.text.board_pins_config)
    [Anonymous Symbol]                       0x00001bdc   Section        0  mk_calib.o(.text.calib_check)
    [Anonymous Symbol]                       0x00001bf8   Section        0  mk_calib.o(.text.calib_chip)
    __arm_cp.4_0                             0x00001d98   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_1                             0x00001d9c   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_2                             0x00001da0   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_3                             0x00001da4   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_4                             0x00001da8   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_5                             0x00001dac   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_6                             0x00001db0   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_7                             0x00001db4   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_8                             0x00001db8   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_9                             0x00001dbc   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_10                            0x00001dc0   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_11                            0x00001dc4   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_12                            0x00001dc8   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_13                            0x00001dcc   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_14                            0x00001dd0   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_15                            0x00001dd4   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_16                            0x00001dd8   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_17                            0x00001ddc   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_18                            0x00001de0   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_19                            0x00001de4   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_20                            0x00001de8   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_21                            0x00001dec   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_22                            0x00001df0   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_24                            0x00001df4   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_25                            0x00001df8   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_26                            0x00001dfc   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_27                            0x00001e00   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_28                            0x00001e04   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_29                            0x00001e08   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_30                            0x00001e0c   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_31                            0x00001e10   Number         4  mk_calib.o(.text.calib_chip)
    __arm_cp.4_32                            0x00001e14   Number         4  mk_calib.o(.text.calib_chip)
    [Anonymous Symbol]                       0x00001e18   Section        0  mk_calib.o(.text.calib_close)
    [Anonymous Symbol]                       0x00001e24   Section        0  mk_calib.o(.text.calib_open)
    [Anonymous Symbol]                       0x00001e3c   Section        0  mk_calib.o(.text.calib_start)
    __arm_cp.2_0                             0x00001e50   Number         4  mk_calib.o(.text.calib_start)
    [Anonymous Symbol]                       0x00001e54   Section        0  mk_calib.o(.text.calib_xtal32k_load_cap_set)
    __arm_cp.6_0                             0x00001e98   Number         4  mk_calib.o(.text.calib_xtal32k_load_cap_set)
    __arm_cp.6_1                             0x00001e9c   Number         4  mk_calib.o(.text.calib_xtal32k_load_cap_set)
    [Anonymous Symbol]                       0x00001ea0   Section        0  mk_calib.o(.text.calib_xtal38m4_load_cap_set)
    __arm_cp.5_0                             0x00001ee4   Number         4  mk_calib.o(.text.calib_xtal38m4_load_cap_set)
    __arm_cp.5_1                             0x00001ee8   Number         4  mk_calib.o(.text.calib_xtal38m4_load_cap_set)
    clock_32K_clk_config                     0x00001eed   Thumb Code   116  mk_clock.o(.text.clock_32K_clk_config)
    [Anonymous Symbol]                       0x00001eec   Section        0  mk_clock.o(.text.clock_32K_clk_config)
    [Anonymous Symbol]                       0x00001f60   Section        0  mk_clock.o(.text.clock_attach)
    [Anonymous Symbol]                       0x00001fb4   Section        0  mk_clock.o(.text.clock_disable)
    [Anonymous Symbol]                       0x00001fcc   Section        0  mk_clock.o(.text.clock_enable)
    clock_get_32k_clk_freq                   0x00001fe5   Thumb Code    20  mk_clock.o(.text.clock_get_32k_clk_freq)
    [Anonymous Symbol]                       0x00001fe4   Section        0  mk_clock.o(.text.clock_get_32k_clk_freq)
    clock_get_ahb_clk_freq                   0x00001ff9   Thumb Code    24  mk_clock.o(.text.clock_get_ahb_clk_freq)
    [Anonymous Symbol]                       0x00001ff8   Section        0  mk_clock.o(.text.clock_get_ahb_clk_freq)
    clock_get_apb_clk_freq                   0x00002011   Thumb Code    24  mk_clock.o(.text.clock_get_apb_clk_freq)
    [Anonymous Symbol]                       0x00002010   Section        0  mk_clock.o(.text.clock_get_apb_clk_freq)
    clock_get_flash_clk_freq                 0x00002029   Thumb Code    24  mk_clock.o(.text.clock_get_flash_clk_freq)
    [Anonymous Symbol]                       0x00002028   Section        0  mk_clock.o(.text.clock_get_flash_clk_freq)
    [Anonymous Symbol]                       0x00002040   Section        0  mk_clock.o(.text.clock_get_frequency)
    clock_get_sys_clk_freq                   0x00002099   Thumb Code    68  mk_clock.o(.text.clock_get_sys_clk_freq)
    [Anonymous Symbol]                       0x00002098   Section        0  mk_clock.o(.text.clock_get_sys_clk_freq)
    __arm_cp.8_1                             0x000020d4   Number         4  mk_clock.o(.text.clock_get_sys_clk_freq)
    __arm_cp.8_2                             0x000020d8   Number         4  mk_clock.o(.text.clock_get_sys_clk_freq)
    clock_get_wdt_clk_freq                   0x000020dd   Thumb Code    40  mk_clock.o(.text.clock_get_wdt_clk_freq)
    [Anonymous Symbol]                       0x000020dc   Section        0  mk_clock.o(.text.clock_get_wdt_clk_freq)
    [Anonymous Symbol]                       0x00002104   Section        0  mk_clock.o(.text.clock_set_divider)
    clock_sys_clk_config                     0x00002195   Thumb Code   164  mk_clock.o(.text.clock_sys_clk_config)
    [Anonymous Symbol]                       0x00002194   Section        0  mk_clock.o(.text.clock_sys_clk_config)
    __arm_cp.4_0                             0x00002230   Number         4  mk_clock.o(.text.clock_sys_clk_config)
    __arm_cp.4_1                             0x00002234   Number         4  mk_clock.o(.text.clock_sys_clk_config)
    clock_wdt_clk_config                     0x00002239   Thumb Code    52  mk_clock.o(.text.clock_wdt_clk_config)
    [Anonymous Symbol]                       0x00002238   Section        0  mk_clock.o(.text.clock_wdt_clk_config)
    __arm_cp.5_0                             0x00002268   Number         4  mk_clock.o(.text.clock_wdt_clk_config)
    [Anonymous Symbol]                       0x0000226c   Section        0  mk_clock.o(.text.clock_xtal32k_injection_set)
    __arm_cp.15_0                            0x00002290   Number         4  mk_clock.o(.text.clock_xtal32k_injection_set)
    [Anonymous Symbol]                       0x00002294   Section        0  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.14_0                            0x000022d0   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.14_1                            0x000022d4   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.14_2                            0x000022d8   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.14_3                            0x000022dc   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.14_4                            0x000022e0   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    __arm_cp.14_5                            0x000022e4   Number         4  mk_clock.o(.text.clock_xtal38m4_injection_set)
    [Anonymous Symbol]                       0x000022e8   Section        0  mk_misc.o(.text.delay_us)
    loop0                                    0x00002300   Number         0  mk_misc.o(.text.delay_us)
    exit0                                    0x00002306   Number         0  mk_misc.o(.text.delay_us)
    [Anonymous Symbol]                       0x0000230c   Section        0  mk_dma.o(.text.dma_open)
    [Anonymous Symbol]                       0x000023e0   Section        0  mk_dma.o(.text.dma_transfer)
    __arm_cp.6_0                             0x0000248c   Number         4  mk_dma.o(.text.dma_transfer)
    __arm_cp.6_1                             0x00002490   Number         4  mk_dma.o(.text.dma_transfer)
    __arm_cp.6_2                             0x00002494   Number         4  mk_dma.o(.text.dma_transfer)
    __arm_cp.6_3                             0x00002498   Number         4  mk_dma.o(.text.dma_transfer)
    [Anonymous Symbol]                       0x0000249c   Section        0  mk_dual_timer.o(.text.dual_timer_open)
    __arm_cp.0_0                             0x000025c0   Number         4  mk_dual_timer.o(.text.dual_timer_open)
    __arm_cp.0_1                             0x000025c4   Number         4  mk_dual_timer.o(.text.dual_timer_open)
    __arm_cp.0_2                             0x000025c8   Number         4  mk_dual_timer.o(.text.dual_timer_open)
    [Anonymous Symbol]                       0x000025cc   Section        0  mk_dual_timer.o(.text.dual_timer_start)
    __arm_cp.6_0                             0x000025f0   Number         4  mk_dual_timer.o(.text.dual_timer_start)
    [Anonymous Symbol]                       0x000025f4   Section        0  mk_gpio.o(.text.gpio_open)
    int_lock                                 0x0000260d   Thumb Code    40  mk_adc.o(.text.int_lock)
    [Anonymous Symbol]                       0x0000260c   Section        0  mk_adc.o(.text.int_lock)
    int_lock                                 0x00002635   Thumb Code    40  mk_misc.o(.text.int_lock)
    [Anonymous Symbol]                       0x00002634   Section        0  mk_misc.o(.text.int_lock)
    int_lock                                 0x0000265d   Thumb Code    40  mk_trace.o(.text.int_lock)
    [Anonymous Symbol]                       0x0000265c   Section        0  mk_trace.o(.text.int_lock)
    int_lock                                 0x00002685   Thumb Code    40  mk_uart.o(.text.int_lock)
    [Anonymous Symbol]                       0x00002684   Section        0  mk_uart.o(.text.int_lock)
    int_unlock                               0x000026ad   Thumb Code    24  mk_adc.o(.text.int_unlock)
    [Anonymous Symbol]                       0x000026ac   Section        0  mk_adc.o(.text.int_unlock)
    int_unlock                               0x000026c5   Thumb Code    24  mk_misc.o(.text.int_unlock)
    [Anonymous Symbol]                       0x000026c4   Section        0  mk_misc.o(.text.int_unlock)
    int_unlock                               0x000026dd   Thumb Code    24  mk_trace.o(.text.int_unlock)
    [Anonymous Symbol]                       0x000026dc   Section        0  mk_trace.o(.text.int_unlock)
    int_unlock                               0x000026f5   Thumb Code    24  mk_uart.o(.text.int_unlock)
    [Anonymous Symbol]                       0x000026f4   Section        0  mk_uart.o(.text.int_unlock)
    [Anonymous Symbol]                       0x0000270c   Section        0  mk_io.o(.text.io_pin_mux_set)
    __arm_cp.0_0                             0x0000277c   Number         4  mk_io.o(.text.io_pin_mux_set)
    __arm_cp.0_1                             0x00002780   Number         4  mk_io.o(.text.io_pin_mux_set)
    __arm_cp.0_2                             0x00002784   Number         4  mk_io.o(.text.io_pin_mux_set)
    [Anonymous Symbol]                       0x00002788   Section        0  mk_io.o(.text.io_pull_set)
    __arm_cp.3_0                             0x00002824   Number         4  mk_io.o(.text.io_pull_set)
    __arm_cp.3_1                             0x00002828   Number         4  mk_io.o(.text.io_pull_set)
    is_leap_year                             0x0000282d   Thumb Code   112  mk_rtc.o(.text.is_leap_year)
    [Anonymous Symbol]                       0x0000282c   Section        0  mk_rtc.o(.text.is_leap_year)
    __arm_cp.18_0                            0x0000288c   Number         4  mk_rtc.o(.text.is_leap_year)
    __arm_cp.18_1                            0x00002890   Number         4  mk_rtc.o(.text.is_leap_year)
    __arm_cp.18_2                            0x00002894   Number         4  mk_rtc.o(.text.is_leap_year)
    __arm_cp.18_3                            0x00002898   Number         4  mk_rtc.o(.text.is_leap_year)
    [Anonymous Symbol]                       0x0000289c   Section        0  adc_example.o(.text.main)
    __arm_cp.0_0                             0x000028f4   Number         4  adc_example.o(.text.main)
    __arm_cp.0_1                             0x000028f8   Number         4  adc_example.o(.text.main)
    __arm_cp.0_2                             0x000028fc   Number         4  adc_example.o(.text.main)
    __arm_cp.0_3                             0x00002900   Number         4  adc_example.o(.text.main)
    [Anonymous Symbol]                       0x00002904   Section        0  mk_misc.o(.text.mk_chip_id)
    __arm_cp.0_0                             0x0000290c   Number         4  mk_misc.o(.text.mk_chip_id)
    [Anonymous Symbol]                       0x00002910   Section        0  mk_trace.o(.text.mk_snprintf)
    [Anonymous Symbol]                       0x00002944   Section        0  mk_reset.o(.text.reset_cause_clear)
    [Anonymous Symbol]                       0x00002950   Section        0  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_0                             0x00002a64   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_1                             0x00002a68   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_2                             0x00002a6c   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_3                             0x00002a70   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_4                             0x00002a74   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_5                             0x00002a78   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_6                             0x00002a7c   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_7                             0x00002a80   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_8                             0x00002a84   Number         4  mk_reset.o(.text.reset_cause_get)
    __arm_cp.0_9                             0x00002a88   Number         4  mk_reset.o(.text.reset_cause_get)
    [Anonymous Symbol]                       0x00002a8c   Section        0  mk_reset.o(.text.reset_module)
    __arm_cp.2_0                             0x00002ac8   Number         4  mk_reset.o(.text.reset_module)
    rtc_month_days                           0x00002acd   Thumb Code    84  mk_rtc.o(.text.rtc_month_days)
    [Anonymous Symbol]                       0x00002acc   Section        0  mk_rtc.o(.text.rtc_month_days)
    __arm_cp.17_0                            0x00002b1c   Number         4  mk_rtc.o(.text.rtc_month_days)
    rtc_second_to_time                       0x00002b21   Thumb Code   316  mk_rtc.o(.text.rtc_second_to_time)
    [Anonymous Symbol]                       0x00002b20   Section        0  mk_rtc.o(.text.rtc_second_to_time)
    __arm_cp.10_0                            0x00002c50   Number         4  mk_rtc.o(.text.rtc_second_to_time)
    __arm_cp.10_1                            0x00002c54   Number         4  mk_rtc.o(.text.rtc_second_to_time)
    __arm_cp.10_2                            0x00002c58   Number         4  mk_rtc.o(.text.rtc_second_to_time)
    [Anonymous Symbol]                       0x00002c5c   Section        0  mk_sleep_timer.o(.text.sleep_timer_ppm_set)
    __arm_cp.9_0                             0x00002c6c   Number         4  mk_sleep_timer.o(.text.sleep_timer_ppm_set)
    [Anonymous Symbol]                       0x00002c70   Section        0  startup_mk800x.o(.text.start_main_asm)
    [Anonymous Symbol]                       0x00002c78   Section        0  libc.o(.text.strlen)
    __arm_cp.24_0                            0x00002c94   Number         4  libc.o(.text.strlen)
    [Anonymous Symbol]                       0x00002c98   Section        0  mk_misc.o(.text.sys_tick_start)
    __arm_cp.20_0                            0x00002ce0   Number         4  mk_misc.o(.text.sys_tick_start)
    __arm_cp.20_1                            0x00002ce4   Number         4  mk_misc.o(.text.sys_tick_start)
    __arm_cp.20_2                            0x00002ce8   Number         4  mk_misc.o(.text.sys_tick_start)
    __arm_cp.20_3                            0x00002cec   Number         4  mk_misc.o(.text.sys_tick_start)
    __arm_cp.20_6                            0x00002cf0   Number         4  mk_misc.o(.text.sys_tick_start)
    [Anonymous Symbol]                       0x00002cf4   Section        0  mk_misc.o(.text.sys_tick_us)
    __arm_cp.21_0                            0x00002d64   Number         4  mk_misc.o(.text.sys_tick_us)
    __arm_cp.21_1                            0x00002d68   Number         4  mk_misc.o(.text.sys_tick_us)
    __arm_cp.21_2                            0x00002d6c   Number         4  mk_misc.o(.text.sys_tick_us)
    __arm_cp.21_3                            0x00002d70   Number         4  mk_misc.o(.text.sys_tick_us)
    [Anonymous Symbol]                       0x00002d74   Section        0  mk_misc.o(.text.sys_timer_open)
    __arm_cp.11_0                            0x00002de0   Number         4  mk_misc.o(.text.sys_timer_open)
    __arm_cp.11_1                            0x00002de4   Number         4  mk_misc.o(.text.sys_timer_open)
    trace_address_executable                 0x00002de9   Thumb Code    92  mk_trace.o(.text.trace_address_executable)
    [Anonymous Symbol]                       0x00002de8   Section        0  mk_trace.o(.text.trace_address_executable)
    __arm_cp.25_0                            0x00002e3c   Number         4  mk_trace.o(.text.trace_address_executable)
    __arm_cp.25_1                            0x00002e40   Number         4  mk_trace.o(.text.trace_address_executable)
    [Anonymous Symbol]                       0x00002e44   Section        0  mk_trace.o(.text.trace_assert_dump)
    __arm_cp.9_0                             0x00002eac   Number         4  mk_trace.o(.text.trace_assert_dump)
    trace_crash_dump_callback                0x00002eb1   Thumb Code    64  mk_trace.o(.text.trace_crash_dump_callback)
    [Anonymous Symbol]                       0x00002eb0   Section        0  mk_trace.o(.text.trace_crash_dump_callback)
    __arm_cp.20_0                            0x00002eec   Number         4  mk_trace.o(.text.trace_crash_dump_callback)
    [Anonymous Symbol]                       0x00002ef0   Section        0  mk_trace.o(.text.trace_end)
    __arm_cp.16_0                            0x00002f18   Number         4  mk_trace.o(.text.trace_end)
    [Anonymous Symbol]                       0x00002f1c   Section        0  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_25                           0x00003320   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_27                           0x00003328   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_1                            0x0000334c   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_3                            0x00003350   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_4                            0x00003354   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_5                            0x00003358   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_6                            0x0000335c   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_7                            0x00003360   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_8                            0x00003364   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_9                            0x00003368   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_10                           0x0000336c   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_11                           0x00003370   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_12                           0x00003374   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_13                           0x00003378   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_14                           0x0000337c   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_15                           0x00003380   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_16                           0x00003384   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_17                           0x00003388   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_18                           0x0000338c   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_19                           0x00003390   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_20                           0x00003394   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_21                           0x00003398   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_22                           0x0000339c   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_23                           0x000033a0   Number         4  mk_trace.o(.text.trace_exception_handler)
    __arm_cp.21_24                           0x000033a4   Number         4  mk_trace.o(.text.trace_exception_handler)
    [Anonymous Symbol]                       0x000033a8   Section        0  mk_trace.o(.text.trace_flush)
    __arm_cp.18_0                            0x00003498   Number         4  mk_trace.o(.text.trace_flush)
    __arm_cp.18_1                            0x0000349c   Number         4  mk_trace.o(.text.trace_flush)
    __arm_cp.18_2                            0x000034a0   Number         4  mk_trace.o(.text.trace_flush)
    __arm_cp.18_3                            0x000034a4   Number         4  mk_trace.o(.text.trace_flush)
    __arm_cp.18_4                            0x000034a8   Number         4  mk_trace.o(.text.trace_flush)
    __arm_cp.18_5                            0x000034ac   Number         4  mk_trace.o(.text.trace_flush)
    [Anonymous Symbol]                       0x000034b0   Section        0  mk_trace.o(.text.trace_format)
    __arm_cp.10_0                            0x000038b8   Number         4  mk_trace.o(.text.trace_format)
    __arm_cp.10_1                            0x000038bc   Number         4  mk_trace.o(.text.trace_format)
    [Anonymous Symbol]                       0x000038c0   Section        0  mk_trace.o(.text.trace_open)
    __arm_cp.0_1                             0x00003968   Number         4  mk_trace.o(.text.trace_open)
    __arm_cp.0_2                             0x0000396c   Number         4  mk_trace.o(.text.trace_open)
    [Anonymous Symbol]                       0x00003970   Section        0  mk_trace.o(.text.trace_output)
    __arm_cp.6_1                             0x00003b3c   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_2                             0x00003b40   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_3                             0x00003b44   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_4                             0x00003b48   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_5                             0x00003b4c   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_6                             0x00003b50   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_7                             0x00003b54   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_8                             0x00003b58   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_9                             0x00003b5c   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_10                            0x00003b60   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_11                            0x00003b64   Number         4  mk_trace.o(.text.trace_output)
    __arm_cp.6_12                            0x00003b68   Number         4  mk_trace.o(.text.trace_output)
    trace_output_blocking                    0x00003b6d   Thumb Code   128  mk_trace.o(.text.trace_output_blocking)
    [Anonymous Symbol]                       0x00003b6c   Section        0  mk_trace.o(.text.trace_output_blocking)
    __arm_cp.17_0                            0x00003be0   Number         4  mk_trace.o(.text.trace_output_blocking)
    __arm_cp.17_1                            0x00003be4   Number         4  mk_trace.o(.text.trace_output_blocking)
    __arm_cp.17_2                            0x00003be8   Number         4  mk_trace.o(.text.trace_output_blocking)
    trace_print_backtrace                    0x00003bed   Thumb Code   200  mk_trace.o(.text.trace_print_backtrace)
    [Anonymous Symbol]                       0x00003bec   Section        0  mk_trace.o(.text.trace_print_backtrace)
    __arm_cp.22_0                            0x00003cac   Number         4  mk_trace.o(.text.trace_print_backtrace)
    __arm_cp.22_1                            0x00003cb0   Number         4  mk_trace.o(.text.trace_print_backtrace)
    [Anonymous Symbol]                       0x00003cb4   Section        0  mk_trace.o(.text.trace_printf)
    __arm_cp.7_0                             0x00003e48   Number         4  mk_trace.o(.text.trace_printf)
    __arm_cp.7_1                             0x00003e4c   Number         4  mk_trace.o(.text.trace_printf)
    __arm_cp.7_2                             0x00003e50   Number         4  mk_trace.o(.text.trace_printf)
    __arm_cp.7_3                             0x00003e54   Number         4  mk_trace.o(.text.trace_printf)
    __arm_cp.7_4                             0x00003e58   Number         4  mk_trace.o(.text.trace_printf)
    __arm_cp.7_5                             0x00003e5c   Number         4  mk_trace.o(.text.trace_printf)
    trace_sending                            0x00003e61   Thumb Code   240  mk_trace.o(.text.trace_sending)
    [Anonymous Symbol]                       0x00003e60   Section        0  mk_trace.o(.text.trace_sending)
    __arm_cp.8_0                             0x00003f40   Number         4  mk_trace.o(.text.trace_sending)
    __arm_cp.8_1                             0x00003f44   Number         4  mk_trace.o(.text.trace_sending)
    __arm_cp.8_5                             0x00003f48   Number         4  mk_trace.o(.text.trace_sending)
    __arm_cp.8_6                             0x00003f4c   Number         4  mk_trace.o(.text.trace_sending)
    trace_sending_continue                   0x00003f51   Thumb Code   132  mk_trace.o(.text.trace_sending_continue)
    [Anonymous Symbol]                       0x00003f50   Section        0  mk_trace.o(.text.trace_sending_continue)
    __arm_cp.24_0                            0x00003fbc   Number         4  mk_trace.o(.text.trace_sending_continue)
    __arm_cp.24_1                            0x00003fc0   Number         4  mk_trace.o(.text.trace_sending_continue)
    __arm_cp.24_2                            0x00003fc4   Number         4  mk_trace.o(.text.trace_sending_continue)
    __arm_cp.24_3                            0x00003fc8   Number         4  mk_trace.o(.text.trace_sending_continue)
    __arm_cp.24_4                            0x00003fcc   Number         4  mk_trace.o(.text.trace_sending_continue)
    __arm_cp.24_5                            0x00003fd0   Number         4  mk_trace.o(.text.trace_sending_continue)
    [Anonymous Symbol]                       0x00003fd4   Section        0  mk_uart.o(.text.uart_baud_set)
    __arm_cp.4_1                             0x00004080   Number         4  mk_uart.o(.text.uart_baud_set)
    __arm_cp.4_2                             0x00004084   Number         4  mk_uart.o(.text.uart_baud_set)
    __arm_cp.4_3                             0x00004088   Number         4  mk_uart.o(.text.uart_baud_set)
    uart_dma_callback                        0x0000408d   Thumb Code   536  mk_uart.o(.text.uart_dma_callback)
    [Anonymous Symbol]                       0x0000408c   Section        0  mk_uart.o(.text.uart_dma_callback)
    __arm_cp.13_0                            0x0000428c   Number         4  mk_uart.o(.text.uart_dma_callback)
    __arm_cp.13_1                            0x00004290   Number         4  mk_uart.o(.text.uart_dma_callback)
    __arm_cp.13_2                            0x00004294   Number         4  mk_uart.o(.text.uart_dma_callback)
    __arm_cp.13_3                            0x00004298   Number         4  mk_uart.o(.text.uart_dma_callback)
    __arm_cp.13_4                            0x0000429c   Number         4  mk_uart.o(.text.uart_dma_callback)
    __arm_cp.13_5                            0x000042a0   Number         4  mk_uart.o(.text.uart_dma_callback)
    [Anonymous Symbol]                       0x000042a4   Section        0  mk_uart.o(.text.uart_irq_handler)
    __arm_cp.19_0                            0x0000466c   Number         4  mk_uart.o(.text.uart_irq_handler)
    __arm_cp.19_1                            0x00004670   Number         4  mk_uart.o(.text.uart_irq_handler)
    __arm_cp.19_2                            0x00004674   Number         4  mk_uart.o(.text.uart_irq_handler)
    __arm_cp.19_3                            0x00004678   Number         4  mk_uart.o(.text.uart_irq_handler)
    [Anonymous Symbol]                       0x0000467c   Section        0  mk_uart.o(.text.uart_open)
    __arm_cp.5_0                             0x000048d4   Number         4  mk_uart.o(.text.uart_open)
    [Anonymous Symbol]                       0x000048d8   Section        0  mk_uart.o(.text.uart_send)
    __arm_cp.11_1                            0x00004b5c   Number         4  mk_uart.o(.text.uart_send)
    uart_state_clear                         0x00004b61   Thumb Code    80  mk_uart.o(.text.uart_state_clear)
    [Anonymous Symbol]                       0x00004b60   Section        0  mk_uart.o(.text.uart_state_clear)
    __arm_cp.14_0                            0x00004bac   Number         4  mk_uart.o(.text.uart_state_clear)
    uart_state_set                           0x00004bb1   Thumb Code   196  mk_uart.o(.text.uart_state_set)
    [Anonymous Symbol]                       0x00004bb0   Section        0  mk_uart.o(.text.uart_state_set)
    __arm_cp.12_0                            0x00004c70   Number         4  mk_uart.o(.text.uart_state_set)
    [Anonymous Symbol]                       0x00004c74   Section        0  mk_uart.o(.text.uart_tx_in_progress)
    __arm_cp.1_0                             0x00004cb0   Number         4  mk_uart.o(.text.uart_tx_in_progress)
    [Anonymous Symbol]                       0x00004cb4   Section        0  libc.o(.text.update_libc_rom_table)
    __arm_cp.0_0                             0x00004cd0   Number         4  libc.o(.text.update_libc_rom_table)
    __arm_cp.0_1                             0x00004cd4   Number         4  libc.o(.text.update_libc_rom_table)
    __arm_cp.0_2                             0x00004cd8   Number         4  libc.o(.text.update_libc_rom_table)
    __arm_cp.0_3                             0x00004cdc   Number         4  libc.o(.text.update_libc_rom_table)
    [Anonymous Symbol]                       0x00004ce0   Section        0  mk_wdt.o(.text.wdt_close)
    __arm_cp.4_0                             0x00004d68   Number         4  mk_wdt.o(.text.wdt_close)
    __arm_cp.4_1                             0x00004d6c   Number         4  mk_wdt.o(.text.wdt_close)
    __arm_cp.4_2                             0x00004d70   Number         4  mk_wdt.o(.text.wdt_close)
    i.__scatterload_copy                     0x00004d74   Section       14  handlers.o(i.__scatterload_copy)
    i.__scatterload_null                     0x00004d82   Section        2  handlers.o(i.__scatterload_null)
    i.__scatterload_zeroinit                 0x00004d84   Section       14  handlers.o(i.__scatterload_zeroinit)
    [Anonymous Symbol]                       0x00004d94   Section        0  mk_misc.o(.rodata..L__const.sys_timer_open.sys_timer_cfg)
    _PrintUnsigned._aV2C                     0x00004dac   Data          16  mk_trace.o(.rodata._PrintUnsigned._aV2C)
    [Anonymous Symbol]                       0x00004dac   Section        0  mk_trace.o(.rodata._PrintUnsigned._aV2C)
    _trace_assert_dump.desc_file             0x00004dbc   Data          11  mk_trace.o(.rodata._trace_assert_dump.desc_file)
    [Anonymous Symbol]                       0x00004dbc   Section        0  mk_trace.o(.rodata._trace_assert_dump.desc_file)
    _trace_assert_dump.desc_func             0x00004dc7   Data          11  mk_trace.o(.rodata._trace_assert_dump.desc_func)
    [Anonymous Symbol]                       0x00004dc7   Section        0  mk_trace.o(.rodata._trace_assert_dump.desc_func)
    _trace_assert_dump.desc_line             0x00004dd2   Data          11  mk_trace.o(.rodata._trace_assert_dump.desc_line)
    [Anonymous Symbol]                       0x00004dd2   Section        0  mk_trace.o(.rodata._trace_assert_dump.desc_line)
    _trace_assert_dump.separate_line         0x00004ddd   Data          43  mk_trace.o(.rodata._trace_assert_dump.separate_line)
    [Anonymous Symbol]                       0x00004ddd   Section        0  mk_trace.o(.rodata._trace_assert_dump.separate_line)
    baud_table                               0x00004e08   Data          42  mk_uart.o(.rodata.baud_table)
    [Anonymous Symbol]                       0x00004e08   Section        0  mk_uart.o(.rodata.baud_table)
    .L__const.adc_get.adc_dma_cfg            0x00004e34   Data          32  mk_adc.o(.rodata.cst32)
    rtc_days_in_month                        0x00004e54   Data          12  mk_rtc.o(.rodata.rtc_days_in_month)
    [Anonymous Symbol]                       0x00004e54   Section        0  mk_rtc.o(.rodata.rtc_days_in_month)
    .L.str.2                                 0x00004e60   Data          25  mk_adc.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x00004e60   Section        0  mk_adc.o(.rodata.str1.1)
    .L.str.1                                 0x00004e79   Data          27  mk_adc.o(.rodata.str1.1)
    .L.str                                   0x00004e94   Data          32  mk_adc.o(.rodata.str1.1)
    .L__FUNCTION__.adc_dma_callback          0x00004eb4   Data          17  mk_adc.o(.rodata.str1.1)
    .L__FUNCTION__.ADC_IRQHandler            0x00004ec5   Data          15  mk_adc.o(.rodata.str1.1)
    .L.str.1                                 0x00004ed4   Data          49  mk_calib.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x00004ed4   Section        0  mk_calib.o(.rodata.str1.1)
    .L.str.4                                 0x00004f05   Data          22  mk_calib.o(.rodata.str1.1)
    .L.str.2                                 0x00004f15   Data          29  mk_calib.o(.rodata.str1.1)
    .L.str.3                                 0x00004f1b   Data          23  mk_calib.o(.rodata.str1.1)
    .L.str                                   0x00004f32   Data          16  mk_calib.o(.rodata.str1.1)
    .L.str                                   0x00004f42   Data          32  mk_dma.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x00004f42   Section        0  mk_dma.o(.rodata.str1.1)
    .L.str.1                                 0x00004f62   Data          26  mk_dma.o(.rodata.str1.1)
    .L__FUNCTION__.dma_transfer              0x00004f7c   Data          13  mk_dma.o(.rodata.str1.1)
    .L.str                                   0x00004f89   Data          39  mk_dual_timer.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x00004f89   Section        0  mk_dual_timer.o(.rodata.str1.1)
    .L.str.1                                 0x00004fb0   Data          18  mk_dual_timer.o(.rodata.str1.1)
    .L__FUNCTION__.dual_timer_open           0x00004fc2   Data          16  mk_dual_timer.o(.rodata.str1.1)
    .L.str.2                                 0x00004fd2   Data          26  mk_misc.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x00004fd2   Section        0  mk_misc.o(.rodata.str1.1)
    .L.str                                   0x00004fec   Data          33  mk_misc.o(.rodata.str1.1)
    .L__FUNCTION__.mk_chip_uuid              0x00004ff3   Data          13  mk_misc.o(.rodata.str1.1)
    .L.str.1                                 0x00005000   Data          13  mk_misc.o(.rodata.str1.1)
    .L__FUNCTION__.sys_tick_start            0x0000500d   Data          15  mk_misc.o(.rodata.str1.1)
    .L.str.7                                 0x0000501c   Data          16  mk_reset.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x0000501c   Section        0  mk_reset.o(.rodata.str1.1)
    .L.str.2                                 0x0000502c   Data          15  mk_reset.o(.rodata.str1.1)
    .L.str.3                                 0x00005036   Data          16  mk_misc.o(.rodata.str1.1)
    .L.str.4                                 0x0000503b   Data          18  mk_reset.o(.rodata.str1.1)
    .L.str.6                                 0x0000504d   Data          18  mk_reset.o(.rodata.str1.1)
    .L.str.1                                 0x0000505f   Data          15  mk_reset.o(.rodata.str1.1)
    .L.str                                   0x0000506e   Data          15  mk_reset.o(.rodata.str1.1)
    .L.str.3                                 0x0000507d   Data          15  mk_reset.o(.rodata.str1.1)
    .L.str.8                                 0x0000508c   Data          26  mk_reset.o(.rodata.str1.1)
    .L.str.5                                 0x000050a6   Data          21  mk_reset.o(.rodata.str1.1)
    .L.str                                   0x000050bb   Data          16  mk_rtc.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x000050bb   Section        0  mk_rtc.o(.rodata.str1.1)
    .L.str                                   0x000050cb   Data          40  mk_sleep_timer.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x000050cb   Section        0  mk_sleep_timer.o(.rodata.str1.1)
    .L__FUNCTION__.SLEEP_TIMER_IRQHandler    0x000050f3   Data          23  mk_sleep_timer.o(.rodata.str1.1)
    .L.str.1                                 0x0000510a   Data          27  mk_sleep_timer.o(.rodata.str1.1)
    .L.str.26                                0x00005125   Data          13  mk_trace.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x00005125   Section        0  mk_trace.o(.rodata.str1.1)
    .L.str.49                                0x00005132   Data          16  mk_trace.o(.rodata.str1.1)
    .L.str.7                                 0x00005142   Data          10  mk_trace.o(.rodata.str1.1)
    .L.str.6                                 0x0000514c   Data          13  mk_trace.o(.rodata.str1.1)
    .L.str.46                                0x00005159   Data          28  mk_trace.o(.rodata.str1.1)
    .L.str.8                                 0x00005175   Data          27  mk_trace.o(.rodata.str1.1)
    .L.str.27                                0x00005190   Data          28  mk_trace.o(.rodata.str1.1)
    .L__FUNCTION__.trace_dump                0x00005196   Data          11  mk_trace.o(.rodata.str1.1)
    .L.str.5                                 0x000051a1   Data           7  mk_trace.o(.rodata.str1.1)
    .L.str.18                                0x000051ac   Data          15  mk_trace.o(.rodata.str1.1)
    .L.str.19                                0x000051bb   Data          15  mk_trace.o(.rodata.str1.1)
    .L.str.22                                0x000051ca   Data          18  mk_trace.o(.rodata.str1.1)
    .L.str.48                                0x000051dc   Data          12  mk_trace.o(.rodata.str1.1)
    .L.str.20                                0x000051e8   Data          11  mk_trace.o(.rodata.str1.1)
    .L.str.21                                0x000051f3   Data          11  mk_trace.o(.rodata.str1.1)
    .L.str.13                                0x000051f4   Data          10  mk_trace.o(.rodata.str1.1)
    .L.str.24                                0x000051fe   Data          13  mk_trace.o(.rodata.str1.1)
    .L.str.25                                0x0000520b   Data          11  mk_trace.o(.rodata.str1.1)
    .L.str.14                                0x00005216   Data          10  mk_trace.o(.rodata.str1.1)
    .L.str.23                                0x00005220   Data          12  mk_trace.o(.rodata.str1.1)
    .L.str.17                                0x0000522c   Data          12  mk_trace.o(.rodata.str1.1)
    .L.str.15                                0x00005238   Data          12  mk_trace.o(.rodata.str1.1)
    .L.str.12                                0x00005244   Data          13  mk_trace.o(.rodata.str1.1)
    .L.str.50                                0x0000524a   Data           7  mk_trace.o(.rodata.str1.1)
    .L.str.16                                0x00005251   Data          25  mk_trace.o(.rodata.str1.1)
    .L.str.11                                0x0000526a   Data          23  mk_trace.o(.rodata.str1.1)
    .L.str.10                                0x00005281   Data          15  mk_trace.o(.rodata.str1.1)
    .L.str                                   0x00005290   Data          44  mk_trace.o(.rodata.str1.1)
    .L.str.28                                0x000052bc   Data          16  mk_trace.o(.rodata.str1.1)
    .L.str.3                                 0x000052cc   Data           8  mk_trace.o(.rodata.str1.1)
    .L.str.9                                 0x000052d4   Data           8  mk_trace.o(.rodata.str1.1)
    .L.str.2                                 0x000052dc   Data          11  mk_trace.o(.rodata.str1.1)
    .L.str.41                                0x000052e7   Data           8  mk_trace.o(.rodata.str1.1)
    .L.str.38                                0x000052ef   Data           7  mk_trace.o(.rodata.str1.1)
    .L.str.33                                0x000052f6   Data           6  mk_trace.o(.rodata.str1.1)
    .L.str.29                                0x000052fc   Data           6  mk_trace.o(.rodata.str1.1)
    .L.str.39                                0x00005302   Data           6  mk_trace.o(.rodata.str1.1)
    .L.str.45                                0x00005308   Data          10  mk_trace.o(.rodata.str1.1)
    .L.str.40                                0x00005312   Data           5  mk_trace.o(.rodata.str1.1)
    .L.str.34                                0x00005317   Data           6  mk_trace.o(.rodata.str1.1)
    .L.str.43                                0x0000531d   Data           7  mk_trace.o(.rodata.str1.1)
    .L.str.44                                0x00005324   Data           7  mk_trace.o(.rodata.str1.1)
    .L.str.32                                0x0000532b   Data           6  mk_trace.o(.rodata.str1.1)
    .L.str.42                                0x00005331   Data           8  mk_trace.o(.rodata.str1.1)
    .L.str.37                                0x00005339   Data           5  mk_trace.o(.rodata.str1.1)
    .L.str.36                                0x0000533e   Data           7  mk_trace.o(.rodata.str1.1)
    .L.str.35                                0x00005345   Data           7  mk_trace.o(.rodata.str1.1)
    .L.str.31                                0x0000534c   Data           6  mk_trace.o(.rodata.str1.1)
    .L.str.30                                0x00005352   Data           6  mk_trace.o(.rodata.str1.1)
    .L.str.1                                 0x00005358   Data          34  mk_trace.o(.rodata.str1.1)
    .L.str.4                                 0x0000537a   Data           3  mk_trace.o(.rodata.str1.1)
    .L__FUNCTION__.trace_output              0x0000537d   Data          13  mk_trace.o(.rodata.str1.1)
    .L.str                                   0x0000538a   Data          33  mk_uart.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x0000538a   Section        0  mk_uart.o(.rodata.str1.1)
    .L.str.4                                 0x000053ab   Data          28  mk_uart.o(.rodata.str1.1)
    .L.str.2                                 0x000053c7   Data          28  mk_uart.o(.rodata.str1.1)
    .L.str.3                                 0x000053e3   Data          26  mk_uart.o(.rodata.str1.1)
    .L__FUNCTION__.uart_dma_abort_callback   0x000053f7   Data          24  mk_uart.o(.rodata.str1.1)
    .L.str.47                                0x000053fa   Data           3  mk_uart.o(.rodata.str1.1)
    .L.str.1                                 0x000053fd   Data          17  mk_uart.o(.rodata.str1.1)
    .L__FUNCTION__.uart_dma_callback         0x0000540e   Data          18  mk_uart.o(.rodata.str1.1)
    .L__FUNCTION__.uart_irq_handler          0x00005420   Data          17  mk_uart.o(.rodata.str1.1)
    .L__FUNCTION__.uart_baud_set             0x00005431   Data          14  mk_uart.o(.rodata.str1.1)
    .L.str                                   0x0000543f   Data          11  mk_wdt.o(.rodata.str1.1)
    .L.str.1                                 0x0000543f   Data          12  mk_wdt.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x0000543f   Section        0  mk_wdt.o(.rodata.str1.1)
    .L.str                                   0x0000544b   Data          29  adc_example.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x0000544b   Section        0  adc_example.o(.rodata.str1.1)
    .L.str                                   0x00005468   Data          21  board.o(.rodata.str1.1)
    [Anonymous Symbol]                       0x00005468   Section        0  board.o(.rodata.str1.1)
    .L.str.1                                 0x0000547d   Data          23  board.o(.rodata.str1.1)
    trace_level_cfg                          0x00005494   Data          13  mk_trace.o(.rodata.trace_level_cfg)
    [Anonymous Symbol]                       0x00005494   Section        0  mk_trace.o(.rodata.trace_level_cfg)
    trace_new_line                           0x000054a1   Data           3  mk_trace.o(.rodata.trace_new_line)
    [Anonymous Symbol]                       0x000054a1   Section        0  mk_trace.o(.rodata.trace_new_line)
    libc_rom                                 0x02026000   Data           4  libc.o(.bss.noinit)
    [Anonymous Symbol]                       0x02026000   Section        0  libc.o(.bss.noinit)
    adc_handle                               0x0202600c   Data          36  mk_adc.o(.data.adc_handle)
    [Anonymous Symbol]                       0x0202600c   Section        0  mk_adc.o(.data.adc_handle)
    dma_handle                               0x02026030   Data          72  mk_dma.o(.data.dma_handle)
    [Anonymous Symbol]                       0x02026030   Section        0  mk_dma.o(.data.dma_handle)
    dual_timer_handle                        0x02026078   Data          32  mk_dual_timer.o(.data.dual_timer_handle)
    [Anonymous Symbol]                       0x02026078   Section        0  mk_dual_timer.o(.data.dual_timer_handle)
    gpio_handle                              0x02026114   Data          84  mk_gpio.o(.data.gpio_handle)
    [Anonymous Symbol]                       0x02026114   Section        0  mk_gpio.o(.data.gpio_handle)
    level_tag                                0x02026168   Data          20  mk_trace.o(.data.level_tag)
    [Anonymous Symbol]                       0x02026168   Section        0  mk_trace.o(.data.level_tag)
    module_name                              0x0202617c   Data          52  mk_trace.o(.data.module_name)
    [Anonymous Symbol]                       0x0202617c   Section        0  mk_trace.o(.data.module_name)
    rtc_handle                               0x020261b0   Data          24  mk_rtc.o(.data.rtc_handle)
    [Anonymous Symbol]                       0x020261b0   Section        0  mk_rtc.o(.data.rtc_handle)
    sleep_timer_handle                       0x020261c8   Data          20  mk_sleep_timer.o(.data.sleep_timer_handle)
    [Anonymous Symbol]                       0x020261c8   Section        0  mk_sleep_timer.o(.data.sleep_timer_handle)
    uart_handle                              0x020261dc   Data         144  mk_uart.o(.data.uart_handle)
    [Anonymous Symbol]                       0x020261dc   Section        0  mk_uart.o(.data.uart_handle)
    usr_adc_cfg                              0x0202626c   Data          24  adc_example.o(.data.usr_adc_cfg)
    [Anonymous Symbol]                       0x0202626c   Section        0  adc_example.o(.data.usr_adc_cfg)
    wdt_handle                               0x02026284   Data          16  mk_wdt.o(.data.wdt_handle)
    [Anonymous Symbol]                       0x02026284   Section        0  mk_wdt.o(.data.wdt_handle)
    sample                                   0x020262fc   Data           4  adc_example.o(.bss.sample)
    [Anonymous Symbol]                       0x020262fc   Section        0  adc_example.o(.bss.sample)
    sys_tick_env                             0x02026300   Data          20  mk_misc.o(.bss.sys_tick_env)
    [Anonymous Symbol]                       0x02026300   Section        0  mk_misc.o(.bss.sys_tick_env)
    trace_crash_dump_cb_list                 0x02026318   Data           4  mk_trace.o(.bss.trace_crash_dump_cb_list)
    [Anonymous Symbol]                       0x02026318   Section        0  mk_trace.o(.bss.trace_crash_dump_cb_list)
    trace_handle                             0x0202631c   Data        2068  mk_trace.o(.bss.trace_handle)
    [Anonymous Symbol]                       0x0202631c   Section        0  mk_trace.o(.bss.trace_handle)
    user_trace_port                          0x02026b30   Data           4  board.o(.bss.user_trace_port)
    [Anonymous Symbol]                       0x02026b30   Section        0  board.o(.bss.user_trace_port)
 
    Global Symbols
 
    Symbol Name                              Value     Ov Type        Size  Object(Section)
 
    BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$WCHAR32$ENUMINT$~SHL$OTIME$ROPI$MICROLIB$REQ8$PRES8$EABIv2 0x00000000   Number         0  anon$$obj.o ABSOLUTE
    __Vectors                                0x00000000   Data         192  startup_mk800x.o(RESET)
    __cpp_initialize__aeabi_                  - Undefined Weak Reference
    __cxa_finalize                            - Undefined Weak Reference
    _clock_init                               - Undefined Weak Reference
    _microlib_exit                            - Undefined Weak Reference
    __main                                   0x000000c1   Thumb Code     0  entry.o(.ARM.Collect$$$$00000000)
    _main_stk                                0x000000c1   Thumb Code     0  entry4.o(.ARM.Collect$$$$00000003)
    _main_scatterload                        0x000000c5   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    __main_after_scatterload                 0x000000c9   Thumb Code     0  entry5.o(.ARM.Collect$$$$00000004)
    _main_clock                              0x000000c9   Thumb Code     0  entry7b.o(.ARM.Collect$$$$00000008)
    _main_cpp_init                           0x000000c9   Thumb Code     0  entry8b.o(.ARM.Collect$$$$0000000A)
    _main_init                               0x000000c9   Thumb Code     0  entry9a.o(.ARM.Collect$$$$0000000B)
    __rt_final_cpp                           0x000000d1   Thumb Code     0  entry10a.o(.ARM.Collect$$$$0000000D)
    __rt_final_exit                          0x000000d1   Thumb Code     0  entry11a.o(.ARM.Collect$$$$0000000F)
    __aeabi_uidiv                            0x000000d5   Thumb Code     0  uidiv.o(.text)
    __aeabi_uidivmod                         0x000000d5   Thumb Code    44  uidiv.o(.text)
    __aeabi_idiv                             0x00000101   Thumb Code     0  idiv.o(.text)
    __aeabi_idivmod                          0x00000101   Thumb Code    40  idiv.o(.text)
    __aeabi_memcpy                           0x00000129   Thumb Code    36  memcpya.o(.text)
    __aeabi_memcpy4                          0x00000129   Thumb Code     0  memcpya.o(.text)
    __aeabi_memcpy8                          0x00000129   Thumb Code     0  memcpya.o(.text)
    __aeabi_memset                           0x0000014d   Thumb Code    14  memseta.o(.text)
    __aeabi_memset4                          0x0000014d   Thumb Code     0  memseta.o(.text)
    __aeabi_memset8                          0x0000014d   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr                           0x0000015b   Thumb Code     4  memseta.o(.text)
    __aeabi_memclr4                          0x0000015b   Thumb Code     0  memseta.o(.text)
    __aeabi_memclr8                          0x0000015b   Thumb Code     0  memseta.o(.text)
    _memset$wrapper                          0x0000015f   Thumb Code    18  memseta.o(.text)
    __aeabi_fmul                             0x00000171   Thumb Code   122  fmul.o(.text)
    __aeabi_fcmpge                           0x000001eb   Thumb Code    28  fcmpge.o(.text)
    __aeabi_i2f                              0x00000207   Thumb Code    22  fflti.o(.text)
    __aeabi_f2iz                             0x0000021d   Thumb Code    50  ffixi.o(.text)
    __aeabi_d2f                              0x0000024f   Thumb Code    56  d2f.o(.text)
    __I$use$fp                               0x00000287   Thumb Code     0  iusefp.o(.text)
    _float_round                             0x00000287   Thumb Code    16  fepilogue.o(.text)
    _float_epilogue                          0x00000297   Thumb Code   114  fepilogue.o(.text)
    __scatterload                            0x00000309   Thumb Code    28  init.o(.text)
    __scatterload_rt2                        0x00000309   Thumb Code     0  init.o(.text)
    __decompress                             0x0000032d   Thumb Code     0  __dczerorl.o(.text)
    __decompress0                            0x0000032d   Thumb Code    58  __dczerorl.o(.text)
    ADC_IRQHandler                           0x00000369   Thumb Code   260  mk_adc.o(.text.ADC_IRQHandler)
    BOD_IRQHandler                           0x0000046d   Thumb Code     2  mk_misc.o(.text.BOD_IRQHandler)
    CALIB_IRQHandler                         0x0000046f   Thumb Code     2  mk_calib.o(.text.CALIB_IRQHandler)
    DMA_IRQHandler                           0x00000471   Thumb Code   296  mk_dma.o(.text.DMA_IRQHandler)
    ACMP0_IRQHandler                         0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    ACMP1_IRQHandler                         0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    AES_IRQHandler                           0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    Default_Handler                          0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    I2C0_IRQHandler                          0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    LSP_IRQHandler                           0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    MAC_IRQHandler                           0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    NMI_Handler                              0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    PHY_IRQHandler                           0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    PHY_TIMER_IRQHandler                     0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    PWM_IRQHandler                           0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    PendSV_Handler                           0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    SPI0_IRQHandler                          0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    SPI1_IRQHandler                          0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    SVC_Handler                              0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    TIMER0_IRQHandler                        0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    TIMER1_IRQHandler                        0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    TRNG_IRQHandler                          0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    WAKEUP_IRQHandler                        0x00000599   Thumb Code     4  startup_mk800x.o(.text.Default_Handler)
    FLASH_CTRL_IRQHandler                    0x0000059d   Thumb Code    88  mk_flash.o(.text.FLASH_CTRL_IRQHandler)
    GPIO_IRQHandler                          0x000005f5   Thumb Code   104  mk_gpio.o(.text.GPIO_IRQHandler)
    HardFault_Handler                        0x0000065d   Thumb Code   124  mk_trace.o(.text.HardFault_Handler)
    RCO32K_CAL_IRQHandler                    0x000006e9   Thumb Code   372  mk_rtc.o(.text.RCO32K_CAL_IRQHandler)
    RTC_ALARM_IRQHandler                     0x0000085d   Thumb Code   124  mk_rtc.o(.text.RTC_ALARM_IRQHandler)
    RTC_TICK_IRQHandler                      0x000008d9   Thumb Code   132  mk_rtc.o(.text.RTC_TICK_IRQHandler)
    Reset_Handler                            0x0000095d   Thumb Code    36  startup_mk800x.o(.text.Reset_Handler)
    SLEEP_TIMER_IRQHandler                   0x00000981   Thumb Code   128  mk_sleep_timer.o(.text.SLEEP_TIMER_IRQHandler)
    SysTick_Handler                          0x00000a01   Thumb Code    32  mk_misc.o(.text.SysTick_Handler)
    SystemInit                               0x00000a21   Thumb Code    16  system_mk800x.o(.text.SystemInit)
    TIMER2_IRQHandler                        0x00000a31   Thumb Code    56  mk_dual_timer.o(.text.TIMER2_IRQHandler)
    TIMER3_IRQHandler                        0x00000a69   Thumb Code    64  mk_dual_timer.o(.text.TIMER3_IRQHandler)
    UART0_IRQHandler                         0x00000aa9   Thumb Code    10  mk_uart.o(.text.UART0_IRQHandler)
    UART1_IRQHandler                         0x00000ab3   Thumb Code    10  mk_uart.o(.text.UART1_IRQHandler)
    WDT_IRQHandler                           0x00000abd   Thumb Code    60  mk_wdt.o(.text.WDT_IRQHandler)
    abs                                      0x000015b1   Thumb Code    32  libc.o(.text.abs)
    adc_code_to_mv                           0x00001699   Thumb Code    92  mk_adc.o(.text.adc_code_to_mv)
    adc_get                                  0x00001785   Thumb Code   424  mk_adc.o(.text.adc_get)
    adc_open                                 0x0000192d   Thumb Code   456  mk_adc.o(.text.adc_open)
    board_clock_run                          0x00001af5   Thumb Code   112  board.o(.text.board_clock_run)
    board_configure                          0x00001b65   Thumb Code     2  board.o(.text.board_configure)
    board_debug_console_open                 0x00001b69   Thumb Code    68  board.o(.text.board_debug_console_open)
    board_pins_config                        0x00001bad   Thumb Code    46  pin_config.o(.text.board_pins_config)
    calib_check                              0x00001bdd   Thumb Code    28  mk_calib.o(.text.calib_check)
    calib_chip                               0x00001bf9   Thumb Code   544  mk_calib.o(.text.calib_chip)
    calib_close                              0x00001e19   Thumb Code    12  mk_calib.o(.text.calib_close)
    calib_open                               0x00001e25   Thumb Code    24  mk_calib.o(.text.calib_open)
    calib_start                              0x00001e3d   Thumb Code    24  mk_calib.o(.text.calib_start)
    calib_xtal32k_load_cap_set               0x00001e55   Thumb Code    76  mk_calib.o(.text.calib_xtal32k_load_cap_set)
    calib_xtal38m4_load_cap_set              0x00001ea1   Thumb Code    76  mk_calib.o(.text.calib_xtal38m4_load_cap_set)
    clock_attach                             0x00001f61   Thumb Code    82  mk_clock.o(.text.clock_attach)
    clock_disable                            0x00001fb5   Thumb Code    24  mk_clock.o(.text.clock_disable)
    clock_enable                             0x00001fcd   Thumb Code    24  mk_clock.o(.text.clock_enable)
    clock_get_frequency                      0x00002041   Thumb Code    88  mk_clock.o(.text.clock_get_frequency)
    clock_set_divider                        0x00002105   Thumb Code   144  mk_clock.o(.text.clock_set_divider)
    clock_xtal32k_injection_set              0x0000226d   Thumb Code    40  mk_clock.o(.text.clock_xtal32k_injection_set)
    clock_xtal38m4_injection_set             0x00002295   Thumb Code    84  mk_clock.o(.text.clock_xtal38m4_injection_set)
    delay_us                                 0x000022e9   Thumb Code    34  mk_misc.o(.text.delay_us)
    dma_open                                 0x0000230d   Thumb Code   212  mk_dma.o(.text.dma_open)
    dma_transfer                             0x000023e1   Thumb Code   188  mk_dma.o(.text.dma_transfer)
    dual_timer_open                          0x0000249d   Thumb Code   304  mk_dual_timer.o(.text.dual_timer_open)
    dual_timer_start                         0x000025cd   Thumb Code    40  mk_dual_timer.o(.text.dual_timer_start)
    gpio_open                                0x000025f5   Thumb Code    24  mk_gpio.o(.text.gpio_open)
    io_pin_mux_set                           0x0000270d   Thumb Code   124  mk_io.o(.text.io_pin_mux_set)
    io_pull_set                              0x00002789   Thumb Code   164  mk_io.o(.text.io_pull_set)
    main                                     0x0000289d   Thumb Code   104  adc_example.o(.text.main)
    mk_chip_id                               0x00002905   Thumb Code    12  mk_misc.o(.text.mk_chip_id)
    mk_snprintf                              0x00002911   Thumb Code    50  mk_trace.o(.text.mk_snprintf)
    reset_cause_clear                        0x00002945   Thumb Code    12  mk_reset.o(.text.reset_cause_clear)
    reset_cause_get                          0x00002951   Thumb Code   316  mk_reset.o(.text.reset_cause_get)
    reset_module                             0x00002a8d   Thumb Code    64  mk_reset.o(.text.reset_module)
    sleep_timer_ppm_set                      0x00002c5d   Thumb Code    20  mk_sleep_timer.o(.text.sleep_timer_ppm_set)
    start_main_asm                           0x00002c71   Thumb Code     4  startup_mk800x.o(.text.start_main_asm)
    strlen                                   0x00002c79   Thumb Code    32  libc.o(.text.strlen)
    sys_tick_start                           0x00002c99   Thumb Code    92  mk_misc.o(.text.sys_tick_start)
    sys_tick_us                              0x00002cf5   Thumb Code   128  mk_misc.o(.text.sys_tick_us)
    sys_timer_open                           0x00002d75   Thumb Code   116  mk_misc.o(.text.sys_timer_open)
    trace_assert_dump                        0x00002e45   Thumb Code   108  mk_trace.o(.text.trace_assert_dump)
    trace_end                                0x00002ef1   Thumb Code    44  mk_trace.o(.text.trace_end)
    trace_exception_handler                  0x00002f1d   Thumb Code  1164  mk_trace.o(.text.trace_exception_handler)
    trace_flush                              0x000033a9   Thumb Code   264  mk_trace.o(.text.trace_flush)
    trace_format                             0x000034b1   Thumb Code  1040  mk_trace.o(.text.trace_format)
    trace_open                               0x000038c1   Thumb Code   176  mk_trace.o(.text.trace_open)
    trace_output                             0x00003971   Thumb Code   508  mk_trace.o(.text.trace_output)
    trace_printf                             0x00003cb5   Thumb Code   428  mk_trace.o(.text.trace_printf)
    uart_baud_set                            0x00003fd5   Thumb Code   184  mk_uart.o(.text.uart_baud_set)
    uart_irq_handler                         0x000042a5   Thumb Code   984  mk_uart.o(.text.uart_irq_handler)
    uart_open                                0x0000467d   Thumb Code   604  mk_uart.o(.text.uart_open)
    uart_send                                0x000048d9   Thumb Code   648  mk_uart.o(.text.uart_send)
    uart_tx_in_progress                      0x00004c75   Thumb Code    64  mk_uart.o(.text.uart_tx_in_progress)
    update_libc_rom_table                    0x00004cb5   Thumb Code    44  libc.o(.text.update_libc_rom_table)
    wdt_close                                0x00004ce1   Thumb Code   148  mk_wdt.o(.text.wdt_close)
    __scatterload_copy                       0x00004d75   Thumb Code    14  handlers.o(i.__scatterload_copy)
    __scatterload_null                       0x00004d83   Thumb Code     2  handlers.o(i.__scatterload_null)
    __scatterload_zeroinit                   0x00004d85   Thumb Code    14  handlers.o(i.__scatterload_zeroinit)
    Region$$Table$$Base                      0x000054a4   Number         0  anon$$obj.o(Region$$Table)
    Region$$Table$$Limit                     0x000054c4   Number         0  anon$$obj.o(Region$$Table)
    mk_boot_desc                             0x00005750   Data          72  startup_mk800x.o(.ZBOOT_SECTION)
    mk_build_inf                             0x00005798   Data          80  startup_mk800x.o(.ZBUILD_SECTION)
    SystemCoreClock                          0x02026008   Data           4  system_mk800x.o(.data.SystemCoreClock)
    flash_handle                             0x02026098   Data         124  mk_flash.o(.data.flash_handle)
    bat_percent                              0x02026294   Data           1  adc_example.o(.bss.bat_percent)
    board_param                              0x02026298   Data          96  board.o(.bss.board_param)
    fVoltage_mv                              0x020262f8   Data           2  adc_example.o(.bss.fVoltage_mv)
    sys_timer_freq                           0x02026314   Data           4  mk_misc.o(.bss.sys_timer_freq)
    Image$$ARM_LIB_STACK$$ZI$$Limit          0x0202f800   Number         0  anon$$obj.o ABSOLUTE
 
 
 
==============================================================================
 
Memory Map of the image
 
  Image Entry point : 0x000000c1
 
  Load Region LR_ROM (Base: 0x00000000, Size: 0x00005750, Max: 0x00025f60, ABSOLUTE, COMPRESSED[0x00005568])
 
    Execution Region ER_ROM (Exec base: 0x00000000, Load base: 0x00000000, Size: 0x000054c4, Max: 0x00025f60, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x00000000   0x00000000   0x000000c0   Data   RO           11    RESET               startup_mk800x.o
    0x000000c0   0x000000c0   0x00000000   Code   RO         1229  * .ARM.Collect$$$$00000000  mc_p.l(entry.o)
    0x000000c0   0x000000c0   0x00000004   Code   RO         1270    .ARM.Collect$$$$00000003  mc_p.l(entry4.o)
    0x000000c4   0x000000c4   0x00000004   Code   RO         1273    .ARM.Collect$$$$00000004  mc_p.l(entry5.o)
    0x000000c8   0x000000c8   0x00000000   Code   RO         1275    .ARM.Collect$$$$00000008  mc_p.l(entry7b.o)
    0x000000c8   0x000000c8   0x00000000   Code   RO         1277    .ARM.Collect$$$$0000000A  mc_p.l(entry8b.o)
    0x000000c8   0x000000c8   0x00000008   Code   RO         1278    .ARM.Collect$$$$0000000B  mc_p.l(entry9a.o)
    0x000000d0   0x000000d0   0x00000000   Code   RO         1280    .ARM.Collect$$$$0000000D  mc_p.l(entry10a.o)
    0x000000d0   0x000000d0   0x00000000   Code   RO         1282    .ARM.Collect$$$$0000000F  mc_p.l(entry11a.o)
    0x000000d0   0x000000d0   0x00000004   Code   RO         1271    .ARM.Collect$$$$00002714  mc_p.l(entry4.o)
    0x000000d4   0x000000d4   0x0000002c   Code   RO         1232    .text               mc_p.l(uidiv.o)
    0x00000100   0x00000100   0x00000028   Code   RO         1234    .text               mc_p.l(idiv.o)
    0x00000128   0x00000128   0x00000024   Code   RO         1238    .text               mc_p.l(memcpya.o)
    0x0000014c   0x0000014c   0x00000024   Code   RO         1240    .text               mc_p.l(memseta.o)
    0x00000170   0x00000170   0x0000007a   Code   RO         1246    .text               mf_p.l(fmul.o)
    0x000001ea   0x000001ea   0x0000001c   Code   RO         1256    .text               mf_p.l(fcmpge.o)
    0x00000206   0x00000206   0x00000016   Code   RO         1258    .text               mf_p.l(fflti.o)
    0x0000021c   0x0000021c   0x00000032   Code   RO         1262    .text               mf_p.l(ffixi.o)
    0x0000024e   0x0000024e   0x00000038   Code   RO         1268    .text               mf_p.l(d2f.o)
    0x00000286   0x00000286   0x00000000   Code   RO         1292    .text               mc_p.l(iusefp.o)
    0x00000286   0x00000286   0x00000082   Code   RO         1293    .text               mf_p.l(fepilogue.o)
    0x00000308   0x00000308   0x00000024   Code   RO         1300    .text               mc_p.l(init.o)
    0x0000032c   0x0000032c   0x0000003a   Code   RO         1310    .text               mc_p.l(__dczerorl.o)
    0x00000366   0x00000366   0x00000002   PAD
    0x00000368   0x00000368   0x00000104   Code   RO           53    .text.ADC_IRQHandler  mk_adc.o
    0x0000046c   0x0000046c   0x00000002   Code   RO          366    .text.BOD_IRQHandler  mk_misc.o
    0x0000046e   0x0000046e   0x00000002   Code   RO           99    .text.CALIB_IRQHandler  mk_calib.o
    0x00000470   0x00000470   0x00000128   Code   RO          170    .text.DMA_IRQHandler  mk_dma.o
    0x00000598   0x00000598   0x00000004   Code   RO            3    .text.Default_Handler  startup_mk800x.o
    0x0000059c   0x0000059c   0x00000058   Code   RO          276    .text.FLASH_CTRL_IRQHandler  mk_flash.o
    0x000005f4   0x000005f4   0x00000068   Code   RO          325    .text.GPIO_IRQHandler  mk_gpio.o
    0x0000065c   0x0000065c   0x0000008c   Code   RO          654    .text.HardFault_Handler  mk_trace.o
    0x000006e8   0x000006e8   0x00000174   Code   RO          557    .text.RCO32K_CAL_IRQHandler  mk_rtc.o
    0x0000085c   0x0000085c   0x0000007c   Code   RO          553    .text.RTC_ALARM_IRQHandler  mk_rtc.o
    0x000008d8   0x000008d8   0x00000084   Code   RO          551    .text.RTC_TICK_IRQHandler  mk_rtc.o
    0x0000095c   0x0000095c   0x00000024   Code   RO            5    .text.Reset_Handler  startup_mk800x.o
    0x00000980   0x00000980   0x00000080   Code   RO          597    .text.SLEEP_TIMER_IRQHandler  mk_sleep_timer.o
    0x00000a00   0x00000a00   0x00000020   Code   RO          410    .text.SysTick_Handler  mk_misc.o
    0x00000a20   0x00000a20   0x00000010   Code   RO           21    .text.SystemInit    system_mk800x.o
    0x00000a30   0x00000a30   0x00000038   Code   RO          205    .text.TIMER2_IRQHandler  mk_dual_timer.o
    0x00000a68   0x00000a68   0x00000040   Code   RO          207    .text.TIMER3_IRQHandler  mk_dual_timer.o
    0x00000aa8   0x00000aa8   0x0000000a   Code   RO          719    .text.UART0_IRQHandler  mk_uart.o
    0x00000ab2   0x00000ab2   0x0000000a   Code   RO          721    .text.UART1_IRQHandler  mk_uart.o
    0x00000abc   0x00000abc   0x0000003c   Code   RO          760    .text.WDT_IRQHandler  mk_wdt.o
    0x00000af8   0x00000af8   0x000001e2   Code   RO          632    .text._PrintInt     mk_trace.o
    0x00000cda   0x00000cda   0x00000002   PAD
    0x00000cdc   0x00000cdc   0x000001c8   Code   RO          634    .text._PrintUnsigned  mk_trace.o
    0x00000ea4   0x00000ea4   0x0000003e   Code   RO          630    .text._StoreChar    mk_trace.o
    0x00000ee2   0x00000ee2   0x00000002   PAD
    0x00000ee4   0x00000ee4   0x00000020   Code   RO           35    .text.__NVIC_ClearPendingIRQ  mk_adc.o
    0x00000f04   0x00000f04   0x00000020   Code   RO          152    .text.__NVIC_ClearPendingIRQ  mk_dma.o
    0x00000f24   0x00000f24   0x00000020   Code   RO          185    .text.__NVIC_ClearPendingIRQ  mk_dual_timer.o
    0x00000f44   0x00000f44   0x00000020   Code   RO          693    .text.__NVIC_ClearPendingIRQ  mk_uart.o
    0x00000f64   0x00000f64   0x00000024   Code   RO          746    .text.__NVIC_ClearPendingIRQ  mk_wdt.o
    0x00000f88   0x00000f88   0x0000002c   Code   RO          752    .text.__NVIC_DisableIRQ  mk_wdt.o
    0x00000fb4   0x00000fb4   0x00000020   Code   RO           37    .text.__NVIC_EnableIRQ  mk_adc.o
    0x00000fd4   0x00000fd4   0x00000020   Code   RO          154    .text.__NVIC_EnableIRQ  mk_dma.o
    0x00000ff4   0x00000ff4   0x00000020   Code   RO          187    .text.__NVIC_EnableIRQ  mk_dual_timer.o
    0x00001014   0x00001014   0x00000024   Code   RO          695    .text.__NVIC_EnableIRQ  mk_uart.o
    0x00001038   0x00001038   0x00000070   Code   RO           33    .text.__NVIC_SetPriority  mk_adc.o
    0x000010a8   0x000010a8   0x00000070   Code   RO          150    .text.__NVIC_SetPriority  mk_dma.o
    0x00001118   0x00001118   0x00000070   Code   RO          183    .text.__NVIC_SetPriority  mk_dual_timer.o
    0x00001188   0x00001188   0x00000070   Code   RO          356    .text.__NVIC_SetPriority  mk_misc.o
    0x000011f8   0x000011f8   0x00000078   Code   RO          691    .text.__NVIC_SetPriority  mk_uart.o
    0x00001270   0x00001270   0x00000340   Code   RO          646    .text._trace_assert_dump  mk_trace.o
    0x000015b0   0x000015b0   0x00000020   Code   RO          926    .text.abs           libc.o
    0x000015d0   0x000015d0   0x000000c8   Code   RO          773    .text.adc_callback  adc_example.o
    0x00001698   0x00001698   0x0000005c   Code   RO           55    .text.adc_code_to_mv  mk_adc.o
    0x000016f4   0x000016f4   0x00000090   Code   RO           51    .text.adc_dma_callback  mk_adc.o
    0x00001784   0x00001784   0x000001a8   Code   RO           45    .text.adc_get       mk_adc.o
    0x0000192c   0x0000192c   0x000001c8   Code   RO           31    .text.adc_open      mk_adc.o
    0x00001af4   0x00001af4   0x00000070   Code   RO          787    .text.board_clock_run  board.o
    0x00001b64   0x00001b64   0x00000002   Code   RO          809    .text.board_configure  board.o
    0x00001b66   0x00001b66   0x00000002   PAD
    0x00001b68   0x00001b68   0x00000044   Code   RO          789    .text.board_debug_console_open  board.o
    0x00001bac   0x00001bac   0x0000002e   Code   RO          826    .text.board_pins_config  pin_config.o
    0x00001bda   0x00001bda   0x00000002   PAD
    0x00001bdc   0x00001bdc   0x0000001c   Code   RO           85    .text.calib_check   mk_calib.o
    0x00001bf8   0x00001bf8   0x00000220   Code   RO           87    .text.calib_chip    mk_calib.o
    0x00001e18   0x00001e18   0x0000000c   Code   RO           81    .text.calib_close   mk_calib.o
    0x00001e24   0x00001e24   0x00000018   Code   RO           79    .text.calib_open    mk_calib.o
    0x00001e3c   0x00001e3c   0x00000018   Code   RO           83    .text.calib_start   mk_calib.o
    0x00001e54   0x00001e54   0x0000004c   Code   RO           91    .text.calib_xtal32k_load_cap_set  mk_calib.o
    0x00001ea0   0x00001ea0   0x0000004c   Code   RO           89    .text.calib_xtal38m4_load_cap_set  mk_calib.o
    0x00001eec   0x00001eec   0x00000074   Code   RO          115    .text.clock_32K_clk_config  mk_clock.o
    0x00001f60   0x00001f60   0x00000052   Code   RO          113    .text.clock_attach  mk_clock.o
    0x00001fb2   0x00001fb2   0x00000002   PAD
    0x00001fb4   0x00001fb4   0x00000018   Code   RO          111    .text.clock_disable  mk_clock.o
    0x00001fcc   0x00001fcc   0x00000018   Code   RO          109    .text.clock_enable  mk_clock.o
    0x00001fe4   0x00001fe4   0x00000014   Code   RO          133    .text.clock_get_32k_clk_freq  mk_clock.o
    0x00001ff8   0x00001ff8   0x00000018   Code   RO          127    .text.clock_get_ahb_clk_freq  mk_clock.o
    0x00002010   0x00002010   0x00000018   Code   RO          129    .text.clock_get_apb_clk_freq  mk_clock.o
    0x00002028   0x00002028   0x00000018   Code   RO          135    .text.clock_get_flash_clk_freq  mk_clock.o
    0x00002040   0x00002040   0x00000058   Code   RO          123    .text.clock_get_frequency  mk_clock.o
    0x00002098   0x00002098   0x00000044   Code   RO          125    .text.clock_get_sys_clk_freq  mk_clock.o
    0x000020dc   0x000020dc   0x00000028   Code   RO          131    .text.clock_get_wdt_clk_freq  mk_clock.o
    0x00002104   0x00002104   0x00000090   Code   RO          121    .text.clock_set_divider  mk_clock.o
    0x00002194   0x00002194   0x000000a4   Code   RO          117    .text.clock_sys_clk_config  mk_clock.o
    0x00002238   0x00002238   0x00000034   Code   RO          119    .text.clock_wdt_clk_config  mk_clock.o
    0x0000226c   0x0000226c   0x00000028   Code   RO          139    .text.clock_xtal32k_injection_set  mk_clock.o
    0x00002294   0x00002294   0x00000054   Code   RO          137    .text.clock_xtal38m4_injection_set  mk_clock.o
    0x000022e8   0x000022e8   0x00000022   Code   RO          414    .text.delay_us      mk_misc.o
    0x0000230a   0x0000230a   0x00000002   PAD
    0x0000230c   0x0000230c   0x000000d4   Code   RO          148    .text.dma_open      mk_dma.o
    0x000023e0   0x000023e0   0x000000bc   Code   RO          160    .text.dma_transfer  mk_dma.o
    0x0000249c   0x0000249c   0x00000130   Code   RO          181    .text.dual_timer_open  mk_dual_timer.o
    0x000025cc   0x000025cc   0x00000028   Code   RO          193    .text.dual_timer_start  mk_dual_timer.o
    0x000025f4   0x000025f4   0x00000018   Code   RO          295    .text.gpio_open     mk_gpio.o
    0x0000260c   0x0000260c   0x00000028   Code   RO           47    .text.int_lock      mk_adc.o
    0x00002634   0x00002634   0x00000028   Code   RO          394    .text.int_lock      mk_misc.o
    0x0000265c   0x0000265c   0x00000028   Code   RO          616    .text.int_lock      mk_trace.o
    0x00002684   0x00002684   0x00000028   Code   RO          727    .text.int_lock      mk_uart.o
    0x000026ac   0x000026ac   0x00000018   Code   RO           49    .text.int_unlock    mk_adc.o
    0x000026c4   0x000026c4   0x00000018   Code   RO          396    .text.int_unlock    mk_misc.o
    0x000026dc   0x000026dc   0x00000018   Code   RO          618    .text.int_unlock    mk_trace.o
    0x000026f4   0x000026f4   0x00000018   Code   RO          729    .text.int_unlock    mk_uart.o
    0x0000270c   0x0000270c   0x0000007c   Code   RO          335    .text.io_pin_mux_set  mk_io.o
    0x00002788   0x00002788   0x000000a4   Code   RO          341    .text.io_pull_set   mk_io.o
    0x0000282c   0x0000282c   0x00000070   Code   RO          561    .text.is_leap_year  mk_rtc.o
    0x0000289c   0x0000289c   0x00000068   Code   RO          771    .text.main          adc_example.o
    0x00002904   0x00002904   0x0000000c   Code   RO          350    .text.mk_chip_id    mk_misc.o
    0x00002910   0x00002910   0x00000032   Code   RO          636    .text.mk_snprintf   mk_trace.o
    0x00002942   0x00002942   0x00000002   PAD
    0x00002944   0x00002944   0x0000000c   Code   RO          513    .text.reset_cause_clear  mk_reset.o
    0x00002950   0x00002950   0x0000013c   Code   RO          511    .text.reset_cause_get  mk_reset.o
    0x00002a8c   0x00002a8c   0x00000040   Code   RO          515    .text.reset_module  mk_reset.o
    0x00002acc   0x00002acc   0x00000054   Code   RO          559    .text.rtc_month_days  mk_rtc.o
    0x00002b20   0x00002b20   0x0000013c   Code   RO          545    .text.rtc_second_to_time  mk_rtc.o
    0x00002c5c   0x00002c5c   0x00000014   Code   RO          593    .text.sleep_timer_ppm_set  mk_sleep_timer.o
    0x00002c70   0x00002c70   0x00000008   Code   RO            7    .text.start_main_asm  startup_mk800x.o
    0x00002c78   0x00002c78   0x00000020   Code   RO          882    .text.strlen        libc.o
    0x00002c98   0x00002c98   0x0000005c   Code   RO          390    .text.sys_tick_start  mk_misc.o
    0x00002cf4   0x00002cf4   0x00000080   Code   RO          392    .text.sys_tick_us   mk_misc.o
    0x00002d74   0x00002d74   0x00000074   Code   RO          372    .text.sys_timer_open  mk_misc.o
    0x00002de8   0x00002de8   0x0000005c   Code   RO          658    .text.trace_address_executable  mk_trace.o
    0x00002e44   0x00002e44   0x0000006c   Code   RO          626    .text.trace_assert_dump  mk_trace.o
    0x00002eb0   0x00002eb0   0x00000040   Code   RO          648    .text.trace_crash_dump_callback  mk_trace.o
    0x00002ef0   0x00002ef0   0x0000002c   Code   RO          640    .text.trace_end     mk_trace.o
    0x00002f1c   0x00002f1c   0x0000048c   Code   RO          650    .text.trace_exception_handler  mk_trace.o
    0x000033a8   0x000033a8   0x00000108   Code   RO          644    .text.trace_flush   mk_trace.o
    0x000034b0   0x000034b0   0x00000410   Code   RO          628    .text.trace_format  mk_trace.o
    0x000038c0   0x000038c0   0x000000b0   Code   RO          608    .text.trace_open    mk_trace.o
    0x00003970   0x00003970   0x000001fc   Code   RO          620    .text.trace_output  mk_trace.o
    0x00003b6c   0x00003b6c   0x00000080   Code   RO          642    .text.trace_output_blocking  mk_trace.o
    0x00003bec   0x00003bec   0x000000c8   Code   RO          652    .text.trace_print_backtrace  mk_trace.o
    0x00003cb4   0x00003cb4   0x000001ac   Code   RO          622    .text.trace_printf  mk_trace.o
    0x00003e60   0x00003e60   0x000000f0   Code   RO          624    .text.trace_sending  mk_trace.o
    0x00003f50   0x00003f50   0x00000084   Code   RO          656    .text.trace_sending_continue  mk_trace.o
    0x00003fd4   0x00003fd4   0x000000b8   Code   RO          687    .text.uart_baud_set  mk_uart.o
    0x0000408c   0x0000408c   0x00000218   Code   RO          705    .text.uart_dma_callback  mk_uart.o
    0x000042a4   0x000042a4   0x000003d8   Code   RO          717    .text.uart_irq_handler  mk_uart.o
    0x0000467c   0x0000467c   0x0000025c   Code   RO          689    .text.uart_open     mk_uart.o
    0x000048d8   0x000048d8   0x00000288   Code   RO          701    .text.uart_send     mk_uart.o
    0x00004b60   0x00004b60   0x00000050   Code   RO          707    .text.uart_state_clear  mk_uart.o
    0x00004bb0   0x00004bb0   0x000000c4   Code   RO          703    .text.uart_state_set  mk_uart.o
    0x00004c74   0x00004c74   0x00000040   Code   RO          681    .text.uart_tx_in_progress  mk_uart.o
    0x00004cb4   0x00004cb4   0x0000002c   Code   RO          834    .text.update_libc_rom_table  libc.o
    0x00004ce0   0x00004ce0   0x00000094   Code   RO          750    .text.wdt_close     mk_wdt.o
    0x00004d74   0x00004d74   0x0000000e   Code   RO         1304    i.__scatterload_copy  mc_p.l(handlers.o)
    0x00004d82   0x00004d82   0x00000002   Code   RO         1305    i.__scatterload_null  mc_p.l(handlers.o)
    0x00004d84   0x00004d84   0x0000000e   Code   RO         1306    i.__scatterload_zeroinit  mc_p.l(handlers.o)
    0x00004d92   0x00004d92   0x00000002   PAD
    0x00004d94   0x00004d94   0x00000018   Data   RO          436    .rodata..L__const.sys_timer_open.sys_timer_cfg  mk_misc.o
    0x00004dac   0x00004dac   0x00000010   Data   RO          666    .rodata._PrintUnsigned._aV2C  mk_trace.o
    0x00004dbc   0x00004dbc   0x0000000b   Data   RO          667    .rodata._trace_assert_dump.desc_file  mk_trace.o
    0x00004dc7   0x00004dc7   0x0000000b   Data   RO          668    .rodata._trace_assert_dump.desc_func  mk_trace.o
    0x00004dd2   0x00004dd2   0x0000000b   Data   RO          669    .rodata._trace_assert_dump.desc_line  mk_trace.o
    0x00004ddd   0x00004ddd   0x0000002b   Data   RO          670    .rodata._trace_assert_dump.separate_line  mk_trace.o
    0x00004e08   0x00004e08   0x0000002a   Data   RO          733    .rodata.baud_table  mk_uart.o
    0x00004e32   0x00004e32   0x00000002   PAD
    0x00004e34   0x00004e34   0x00000020   Data   RO           70    .rodata.cst32       mk_adc.o
    0x00004e54   0x00004e54   0x0000000c   Data   RO          567    .rodata.rtc_days_in_month  mk_rtc.o
    0x00004e60   0x00004e60   0x00000074   Data   RO           71    .rodata.str1.1      mk_adc.o
    0x00004ed4   0x00004ed4   0x0000006e   Data   RO          101    .rodata.str1.1      mk_calib.o
    0x00004f42   0x00004f42   0x00000047   Data   RO          173    .rodata.str1.1      mk_dma.o
    0x00004f89   0x00004f89   0x00000049   Data   RO          209    .rodata.str1.1      mk_dual_timer.o
    0x00004fd2   0x00004fd2   0x0000004a   Data   RO          432    .rodata.str1.1      mk_misc.o
    0x0000501c   0x0000501c   0x0000009f   Data   RO          517    .rodata.str1.1      mk_reset.o
    0x000050bb   0x000050bb   0x00000010   Data   RO          566    .rodata.str1.1      mk_rtc.o
    0x000050cb   0x000050cb   0x0000005a   Data   RO          600    .rodata.str1.1      mk_sleep_timer.o
    0x00005125   0x00005125   0x00000265   Data   RO          662    .rodata.str1.1      mk_trace.o
    0x0000538a   0x0000538a   0x000000b5   Data   RO          732    .rodata.str1.1      mk_uart.o
    0x0000543f   0x0000543f   0x0000000c   Data   RO          763    .rodata.str1.1      mk_wdt.o
    0x0000544b   0x0000544b   0x0000001d   Data   RO          779    .rodata.str1.1      adc_example.o
    0x00005468   0x00005468   0x0000002c   Data   RO          817    .rodata.str1.1      board.o
    0x00005494   0x00005494   0x0000000d   Data   RO          663    .rodata.trace_level_cfg  mk_trace.o
    0x000054a1   0x000054a1   0x00000003   Data   RO          671    .rodata.trace_new_line  mk_trace.o
    0x000054a4   0x000054a4   0x00000020   Data   RO         1303    Region$$Table       anon$$obj.o
 
 
    Execution Region RW_RAM (Exec base: 0x02026000, Load base: 0x000054c4, Size: 0x00000004, Max: 0x00000008, ABSOLUTE, UNINIT)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x02026000        -       0x00000004   Zero   RW         1222    .bss.noinit         libc.o
 
 
    Execution Region RW_RAM1 (Exec base: 0x02026008, Load base: 0x000054c4, Size: 0x00000b2c, Max: 0x00005ff8, ABSOLUTE, COMPRESSED[0x000000a4])
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x02026008   COMPRESSED   0x00000004   Data   RW           23    .data.SystemCoreClock  system_mk800x.o
    0x0202600c   COMPRESSED   0x00000024   Data   RW           69    .data.adc_handle    mk_adc.o
    0x02026030   COMPRESSED   0x00000048   Data   RW          172    .data.dma_handle    mk_dma.o
    0x02026078   COMPRESSED   0x00000020   Data   RW          210    .data.dual_timer_handle  mk_dual_timer.o
    0x02026098   COMPRESSED   0x0000007c   Data   RW          284    .data.flash_handle  mk_flash.o
    0x02026114   COMPRESSED   0x00000054   Data   RW          327    .data.gpio_handle   mk_gpio.o
    0x02026168   COMPRESSED   0x00000014   Data   RW          665    .data.level_tag     mk_trace.o
    0x0202617c   COMPRESSED   0x00000034   Data   RW          664    .data.module_name   mk_trace.o
    0x020261b0   COMPRESSED   0x00000018   Data   RW          565    .data.rtc_handle    mk_rtc.o
    0x020261c8   COMPRESSED   0x00000014   Data   RW          599    .data.sleep_timer_handle  mk_sleep_timer.o
    0x020261dc   COMPRESSED   0x00000090   Data   RW          731    .data.uart_handle   mk_uart.o
    0x0202626c   COMPRESSED   0x00000018   Data   RW          775    .data.usr_adc_cfg   adc_example.o
    0x02026284   COMPRESSED   0x00000010   Data   RW          762    .data.wdt_handle    mk_wdt.o
    0x02026294        -       0x00000001   Zero   RW          778    .bss.bat_percent    adc_example.o
    0x02026295   COMPRESSED   0x00000003   PAD
    0x02026298        -       0x00000060   Zero   RW          815    .bss.board_param    board.o
    0x020262f8        -       0x00000002   Zero   RW          777    .bss.fVoltage_mv    adc_example.o
    0x020262fa   COMPRESSED   0x00000002   PAD
    0x020262fc        -       0x00000004   Zero   RW          776    .bss.sample         adc_example.o
    0x02026300        -       0x00000014   Zero   RW          438    .bss.sys_tick_env   mk_misc.o
    0x02026314        -       0x00000004   Zero   RW          435    .bss.sys_timer_freq  mk_misc.o
    0x02026318        -       0x00000004   Zero   RW          661    .bss.trace_crash_dump_cb_list  mk_trace.o
    0x0202631c        -       0x00000814   Zero   RW          660    .bss.trace_handle   mk_trace.o
    0x02026b30        -       0x00000004   Zero   RW          816    .bss.user_trace_port  board.o
 
 
    Execution Region ARM_LIB_STACK (Exec base: 0x0202c000, Load base: 0x00005568, Size: 0x00003800, Max: 0x00003800, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x0202c000        -       0x00003800   Zero   RW            1    ARM_LIB_STACK.bss   anon$$obj.o
 
 
 
  Load Region LR_ROM1 (Base: 0x00005750, Size: 0x00000098, Max: 0x000000a0, ABSOLUTE)
 
    Execution Region USR (Exec base: 0x00005750, Load base: 0x00005750, Size: 0x00000098, Max: 0x000000a0, ABSOLUTE)
 
    Exec Addr    Load Addr    Size         Type   Attr      Idx    E Section Name        Object
 
    0x00005750   0x00005750   0x00000048   Data   RO            9    .ZBOOT_SECTION      startup_mk800x.o
    0x00005798   0x00005798   0x00000050   Data   RO           10    .ZBUILD_SECTION     startup_mk800x.o
 
 
==============================================================================
 
Image component sizes
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Object Name
 
       304         40         29         24          7       2660   adc_example.o
       182         20         44          0        100       6759   board.o
       108         24          0          0          4      34946   libc.o
      1616         60        148         36          0      10956   mk_adc.o
       786        148        110          0          0       6311   mk_calib.o
      1018         60          0          0          0       6267   mk_clock.o
       872         20         71         72          0       8204   mk_dma.o
       640         20         73         32          0       6824   mk_dual_timer.o
        88          4          0        124          0      22588   mk_flash.o
       128          4          0         84          0       8576   mk_gpio.o
       288         20          0          0          0       3800   mk_io.o
       592         52         98          0         24      13704   mk_misc.o
       392         44        159          0          0       4185   mk_reset.o
      1140         56         28         24          0       9744   mk_rtc.o
       148         24         90         20          0       5655   mk_sleep_timer.o
      6674        582        721         72       2072      16625   mk_trace.o
      3568        110        223        144          0      16021   mk_uart.o
       288         24         12         16          0       6617   mk_wdt.o
        46          0          0          0          0       1205   pin_config.o
        48          8        344          0          0       3051   startup_mk800x.o
        16          8          0          4          0        717   system_mk800x.o
 
    ----------------------------------------------------------------------
     18956       1328       2184        652      16548     195415   Object Totals
         0          0         32          0      14336          0   (incl. Generated)
        14          0          2          0          5          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Member Name
 
        58          0          0          0          0          0   __dczerorl.o
         0          0          0          0          0          0   entry.o
         0          0          0          0          0          0   entry10a.o
         0          0          0          0          0          0   entry11a.o
         8          4          0          0          0          0   entry4.o
         4          0          0          0          0          0   entry5.o
         0          0          0          0          0          0   entry7b.o
         0          0          0          0          0          0   entry8b.o
         8          4          0          0          0          0   entry9a.o
        30          0          0          0          0          0   handlers.o
        40          0          0          0          0         72   idiv.o
        36          8          0          0          0         68   init.o
         0          0          0          0          0          0   iusefp.o
        36          0          0          0          0         60   memcpya.o
        36          0          0          0          0        100   memseta.o
        44          0          0          0          0         72   uidiv.o
        56          0          0          0          0         68   d2f.o
        28          0          0          0          0         60   fcmpge.o
       130          0          0          0          0        144   fepilogue.o
        50          0          0          0          0         60   ffixi.o
        22          0          0          0          0         68   fflti.o
       122          0          0          0          0         72   fmul.o
 
    ----------------------------------------------------------------------
       712         16          0          0          0        844   Library Totals
         4          0          0          0          0          0   (incl. Padding)
 
    ----------------------------------------------------------------------
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   Library Name
 
       300         16          0          0          0        372   mc_p.l
       408          0          0          0          0        472   mf_p.l
 
    ----------------------------------------------------------------------
       712         16          0          0          0        844   Library Totals
 
    ----------------------------------------------------------------------
 
==============================================================================
 
 
      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   
 
     19668       1344       2184        652      16548     195907   Grand Totals
     19668       1344       2184        164      16548     195907   ELF Image Totals (compressed)
     19668       1344       2184        164          0          0   ROM Totals
 
==============================================================================
 
    Total RO  Size (Code + RO Data)                21852 (  21.34kB)
    Total RW  Size (RW Data + ZI Data)             17200 (  16.80kB)
    Total ROM Size (Code + RO Data + RW Data)      22016 (  21.50kB)
 
==============================================================================