startup_tm4c123.lst
101 KB
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
ARM Macro Assembler Page 1
1 00000000 ;/******************************************************
********************//**
2 00000000 ; * @file startup_TM4C123.s
3 00000000 ; * @brief CMSIS Cortex-M4 Core Device Startup File f
or
4 00000000 ; * TI Tiva TM4C123 Blizzard Class Device
5 00000000 ; * @version V1.00
6 00000000 ; * @date 15. May 2013
7 00000000 ; *
8 00000000 ; * @note
9 00000000 ; * Copyright (C) 2011 ARM Limited. All rights reserved.
10 00000000 ; *
11 00000000 ; * @par
12 00000000 ; * ARM Limited (ARM) is supplying this software for use
with Cortex-M
13 00000000 ; * processor based microcontrollers. This file can be
freely distributed
14 00000000 ; * within development tools that are supporting such AR
M based processors.
15 00000000 ; *
16 00000000 ; * @par
17 00000000 ; * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, W
HETHER EXPRESS, IMPLIED
18 00000000 ; * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED
WARRANTIES OF
19 00000000 ; * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
APPLY TO THIS SOFTWARE.
20 00000000 ; * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR S
PECIAL, INCIDENTAL, OR
21 00000000 ; * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
22 00000000 ; *
23 00000000 ; ******************************************************
************************/
24 00000000 ;/*
25 00000000 ;//-------- <<< Use Configuration Wizard in Context Menu
>>> ------------------
26 00000000 ;*/
27 00000000 ; Edited to conform with ISR names as described in
28 00000000 ; "Embedded Systems: Introduction to ARM Cortex M Micr
ocontrollers",
29 00000000 ; ISBN: 978-1469998749, Jonathan Valvano, copyright (c
) 2016
30 00000000 ; "Embedded Systems: Real Time Interfacing to ARM Cort
ex M Microcontrollers",
31 00000000 ; ISBN: 978-1463590154, Jonathan Valvano, copyright (c
) 2016
32 00000000 ; "Embedded Systems: Real-Time Operating Systems for A
RM Cortex M Microcontrollers",
33 00000000 ; ISBN: 978-1466468863, Jonathan Valvano, copyright (c
) 2016
34 00000000
35 00000000 ; <h> Stack Configuration
36 00000000 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
37 00000000 ; </h>
38 00000000
39 00000000 00000200
Stack_Size
EQU 0x00000200
ARM Macro Assembler Page 2
40 00000000
41 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
=3
42 00000000 Stack_Mem
SPACE Stack_Size
43 00000200 __initial_sp
44 00000200
45 00000200
46 00000200 ; <h> Heap Configuration
47 00000200 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
48 00000200 ; </h>
49 00000200
50 00000200 00000000
Heap_Size
EQU 0x00000000
51 00000200
52 00000200 AREA HEAP, NOINIT, READWRITE, ALIGN=
3
53 00000000 __heap_base
54 00000000 Heap_Mem
SPACE Heap_Size
55 00000000 __heap_limit
56 00000000
57 00000000
58 00000000 PRESERVE8
59 00000000 THUMB
60 00000000
61 00000000
62 00000000 ; Vector Table Mapped to Address 0 at Reset
63 00000000
64 00000000 AREA RESET, DATA, READONLY
65 00000000 EXPORT __Vectors
66 00000000 EXPORT __Vectors_End
67 00000000 EXPORT __Vectors_Size
68 00000000
69 00000000 00000000
__Vectors
DCD __initial_sp ; Top of Stack
70 00000004 00000000 DCD Reset_Handler ; Reset Handler
71 00000008 00000000 DCD NMI_Handler ; NMI Handler
72 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
Handler
73 00000010 00000000 DCD MemManage_Handler
; MPU Fault Handler
74 00000014 00000000 DCD BusFault_Handler
; Bus Fault Handler
75 00000018 00000000 DCD UsageFault_Handler ; Usage Faul
t Handler
76 0000001C 00000000 DCD 0 ; Reserved
77 00000020 00000000 DCD 0 ; Reserved
78 00000024 00000000 DCD 0 ; Reserved
79 00000028 00000000 DCD 0 ; Reserved
80 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
81 00000030 00000000 DCD DebugMon_Handler ; Debug Monito
r Handler
82 00000034 00000000 DCD 0 ; Reserved
83 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
ARM Macro Assembler Page 3
84 0000003C 00000000 DCD SysTick_Handler
; SysTick Handler
85 00000040
86 00000040 ; External Interrupts
87 00000040
88 00000040 00000000 DCD GPIOPortA_Handler
; 0: GPIO Port A
89 00000044 00000000 DCD GPIOPortB_Handler
; 1: GPIO Port B
90 00000048 00000000 DCD GPIOPortC_Handler
; 2: GPIO Port C
91 0000004C 00000000 DCD GPIOPortD_Handler
; 3: GPIO Port D
92 00000050 00000000 DCD GPIOPortE_Handler
; 4: GPIO Port E
93 00000054 00000000 DCD UART0_Handler ; 5: UART0 Rx a
nd Tx
94 00000058 00000000 DCD UART1_Handler ; 6: UART1 Rx a
nd Tx
95 0000005C 00000000 DCD SSI0_Handler ; 7: SSI0 Rx and
Tx
96 00000060 00000000 DCD I2C0_Handler ; 8: I2C0 Master
and Slave
97 00000064 00000000 DCD PMW0_FAULT_Handler
; 9: PWM Fault
98 00000068 00000000 DCD PWM0Generator0_Handler ; 10: P
WM Generator 0
99 0000006C 00000000 DCD PWM0Generator1_Handler ; 11: P
WM Generator 1
100 00000070 00000000 DCD PWM0Generator2_Handler ; 12: P
WM Generator 2
101 00000074 00000000 DCD Quadrature0_Handler ; 13: Quad
rature Encoder 0
102 00000078 00000000 DCD ADC0Seq0_Handler ; 14: ADC Seq
uence 0
103 0000007C 00000000 DCD ADC0Seq1_Handler ; 15: ADC Seq
uence 1
104 00000080 00000000 DCD ADC0Seq2_Handler ; 16: ADC Seq
uence 2
105 00000084 00000000 DCD ADC0Seq3_Handler ; 17: ADC Seq
uence 3
106 00000088 00000000 DCD WDT_Handler ; 18: Watchdog tim
er
107 0000008C 00000000 DCD TIMER0A_Handler ; 19: Timer 0
subtimer A
108 00000090 00000000 DCD TIMER0B_Handler ; 20: Timer 0
subtimer B
109 00000094 00000000 DCD TIMER1A_Handler ; 21: Timer 1
subtimer A
110 00000098 00000000 DCD TIMER1B_Handler ; 22: Timer 1
subtimer B
111 0000009C 00000000 DCD TIMER2A_Handler ; 23: Timer 2
subtimer A
112 000000A0 00000000 DCD TIMER2B_Handler ; 24: Timer 2
subtimer B
113 000000A4 00000000 DCD COMP0_Handler ; 25: Analog Com
parator 0
114 000000A8 00000000 DCD COMP1_Handler ; 26: Analog Com
ARM Macro Assembler Page 4
parator 1
115 000000AC 00000000 DCD COMP2_Handler ; 27: Analog Com
parator 2
116 000000B0 00000000 DCD SYSCTL_Handler ; 28: System Co
ntrol (PLL, OSC, BO
)
117 000000B4 00000000 DCD FlashCtl_Handler ; 29: FLASH C
ontrol
118 000000B8 00000000 DCD GPIOPortF_Handler
; 30: GPIO Port F
119 000000BC 00000000 DCD GPIOPortG_Handler
; 31: GPIO Port G
120 000000C0 00000000 DCD GPIOPortH_Handler
; 32: GPIO Port H
121 000000C4 00000000 DCD UART2_Handler ; 33: UART2 Rx a
nd Tx
122 000000C8 00000000 DCD SSI1_Handler ; 34: SSI1 Rx and
Tx
123 000000CC 00000000 DCD TIMER3A_Handler ; 35: Timer 3
subtimer A
124 000000D0 00000000 DCD TIMER3B_Handler ; 36: Timer 3
subtimer B
125 000000D4 00000000 DCD I2C1_Handler ; 37: I2C1 Master
and Slave
126 000000D8 00000000 DCD Quadrature1_Handler ; 38: Quad
rature Encoder 1
127 000000DC 00000000 DCD CAN0_Handler ; 39: CAN0
128 000000E0 00000000 DCD CAN1_Handler ; 40: CAN1
129 000000E4 00000000 DCD CAN2_Handler ; 41: CAN2
130 000000E8 00000000 DCD 0 ; 42: Reserved
131 000000EC 00000000 DCD Hibernate_Handler
; 43: Hibernate
132 000000F0 00000000 DCD USB0_Handler ; 44: USB0
133 000000F4 00000000 DCD PWM0Generator3_Handler ; 45: P
WM Generator 3
134 000000F8 00000000 DCD UDMA_Handler ; 46: uDMA Softwa
re Transfer
135 000000FC 00000000 DCD UDMAERR_Handler
; 47: uDMA Error
136 00000100 00000000 DCD ADC1Seq0_Handler ; 48: ADC1 Se
quence 0
137 00000104 00000000 DCD ADC1Seq1_Handler ; 49: ADC1 Se
quence 1
138 00000108 00000000 DCD ADC1Seq2_Handler ; 50: ADC1 Se
quence 2
139 0000010C 00000000 DCD ADC1Seq3_Handler ; 51: ADC1 Se
quence 3
140 00000110 00000000 DCD 0 ; 52: Reserved
141 00000114 00000000 DCD 0 ; 53: Reserved
142 00000118 00000000 DCD GPIOPortJ_Handler
; 54: GPIO Port J
143 0000011C 00000000 DCD GPIOPortK_Handler
; 55: GPIO Port K
144 00000120 00000000 DCD GPIOPortL_Handler
; 56: GPIO Port L
145 00000124 00000000 DCD SSI2_Handler ; 57: SSI2 Rx and
Tx
146 00000128 00000000 DCD SSI3_Handler ; 58: SSI3 Rx and
Tx
ARM Macro Assembler Page 5
147 0000012C 00000000 DCD UART3_Handler ; 59: UART3 Rx a
nd Tx
148 00000130 00000000 DCD UART4_Handler ; 60: UART4 Rx a
nd Tx
149 00000134 00000000 DCD UART5_Handler ; 61: UART5 Rx a
nd Tx
150 00000138 00000000 DCD UART6_Handler ; 62: UART6 Rx a
nd Tx
151 0000013C 00000000 DCD UART7_Handler ; 63: UART7 Rx a
nd Tx
152 00000140 00000000 DCD 0 ; 64: Reserved
153 00000144 00000000 DCD 0 ; 65: Reserved
154 00000148 00000000 DCD 0 ; 66: Reserved
155 0000014C 00000000 DCD 0 ; 67: Reserved
156 00000150 00000000 DCD I2C2_Handler ; 68: I2C2 Master
and Slave
157 00000154 00000000 DCD I2C3_Handler ; 69: I2C3 Master
and Slave
158 00000158 00000000 DCD TIMER4A_Handler ; 70: Timer 4
subtimer A
159 0000015C 00000000 DCD TIMER4B_Handler ; 71: Timer 4
subtimer B
160 00000160 00000000 DCD 0 ; 72: Reserved
161 00000164 00000000 DCD 0 ; 73: Reserved
162 00000168 00000000 DCD 0 ; 74: Reserved
163 0000016C 00000000 DCD 0 ; 75: Reserved
164 00000170 00000000 DCD 0 ; 76: Reserved
165 00000174 00000000 DCD 0 ; 77: Reserved
166 00000178 00000000 DCD 0 ; 78: Reserved
167 0000017C 00000000 DCD 0 ; 79: Reserved
168 00000180 00000000 DCD 0 ; 80: Reserved
169 00000184 00000000 DCD 0 ; 81: Reserved
170 00000188 00000000 DCD 0 ; 82: Reserved
171 0000018C 00000000 DCD 0 ; 83: Reserved
172 00000190 00000000 DCD 0 ; 84: Reserved
173 00000194 00000000 DCD 0 ; 85: Reserved
174 00000198 00000000 DCD 0 ; 86: Reserved
175 0000019C 00000000 DCD 0 ; 87: Reserved
176 000001A0 00000000 DCD 0 ; 88: Reserved
177 000001A4 00000000 DCD 0 ; 89: Reserved
178 000001A8 00000000 DCD 0 ; 90: Reserved
179 000001AC 00000000 DCD 0 ; 91: Reserved
180 000001B0 00000000 DCD TIMER5A_Handler ; 92: Timer 5
subtimer A
181 000001B4 00000000 DCD TIMER5B_Handler ; 93: Timer 5
subtimer B
182 000001B8 00000000 DCD WideTimer0A_Handler ; 94: Wide
Timer 0 subtimer A
183 000001BC 00000000 DCD WideTimer0B_Handler ; 95: Wide
Timer 0 subtimer B
184 000001C0 00000000 DCD WideTimer1A_Handler ; 96: Wide
Timer 1 subtimer A
185 000001C4 00000000 DCD WideTimer1B_Handler ; 97: Wide
Timer 1 subtimer B
186 000001C8 00000000 DCD WideTimer2A_Handler ; 98: Wide
ARM Macro Assembler Page 6
Timer 2 subtimer A
187 000001CC 00000000 DCD WideTimer2B_Handler ; 99: Wide
Timer 2 subtimer B
188 000001D0 00000000 DCD WideTimer3A_Handler ; 100: Wide
Timer 3 subtimer A
189 000001D4 00000000 DCD WideTimer3B_Handler ; 101: Wide
Timer 3 subtimer B
190 000001D8 00000000 DCD WideTimer4A_Handler ; 102: Wide
Timer 4 subtimer A
191 000001DC 00000000 DCD WideTimer4B_Handler ; 103: Wide
Timer 4 subtimer B
192 000001E0 00000000 DCD WideTimer5A_Handler ; 104: Wide
Timer 5 subtimer A
193 000001E4 00000000 DCD WideTimer5B_Handler ; 105: Wide
Timer 5 subtimer B
194 000001E8 00000000 DCD FPU_Handler ; 106: FPU
195 000001EC 00000000 DCD 0 ; 107: Reserved
196 000001F0 00000000 DCD 0 ; 108: Reserved
197 000001F4 00000000 DCD I2C4_Handler ; 109: I2C4 Master
and Slave
198 000001F8 00000000 DCD I2C5_Handler ; 110: I2C5 Master
and Slave
199 000001FC 00000000 DCD GPIOPortM_Handler
; 111: GPIO Port M
200 00000200 00000000 DCD GPIOPortN_Handler
; 112: GPIO Port N
201 00000204 00000000 DCD QEI2_Handler ; 113: Quadrature
Encoder 2
202 00000208 00000000 DCD 0 ; 114: Reserved
203 0000020C 00000000 DCD 0 ; 115: Reserved
204 00000210 00000000 DCD GPIOPortP0_Handler ; 116: GPIO
Port P (Summary or
P0)
205 00000214 00000000 DCD GPIOPortP1_Handler
; 117: GPIO Port P1
206 00000218 00000000 DCD GPIOPortP2_Handler
; 118: GPIO Port P2
207 0000021C 00000000 DCD GPIOPortP3_Handler
; 119: GPIO Port P3
208 00000220 00000000 DCD GPIOPortP4_Handler
; 120: GPIO Port P4
209 00000224 00000000 DCD GPIOPortP5_Handler
; 121: GPIO Port P5
210 00000228 00000000 DCD GPIOPortP6_Handler
; 122: GPIO Port P6
ARM Macro Assembler Page 7
211 0000022C 00000000 DCD GPIOPortP7_Handler
; 123: GPIO Port P7
212 00000230 00000000 DCD GPIOPortQ0_Handler ; 124: GPIO
Port Q (Summary or
Q0)
213 00000234 00000000 DCD GPIOPortQ1_Handler
; 125: GPIO Port Q1
214 00000238 00000000 DCD GPIOPortQ2_Handler
; 126: GPIO Port Q2
215 0000023C 00000000 DCD GPIOPortQ3_Handler
; 127: GPIO Port Q3
216 00000240 00000000 DCD GPIOPortQ4_Handler
; 128: GPIO Port Q4
217 00000244 00000000 DCD GPIOPortQ5_Handler
; 129: GPIO Port Q5
218 00000248 00000000 DCD GPIOPortQ6_Handler
; 130: GPIO Port Q6
219 0000024C 00000000 DCD GPIOPortQ7_Handler
; 131: GPIO Port Q7
220 00000250 00000000 DCD GPIOPortR_Handler
; 132: GPIO Port R
221 00000254 00000000 DCD GPIOPortS_Handler
; 133: GPIO Port S
222 00000258 00000000 DCD PWM1Generator0_Handler ; 134: P
WM 1 Generator 0
223 0000025C 00000000 DCD PWM1Generator1_Handler ; 135: P
WM 1 Generator 1
224 00000260 00000000 DCD PWM1Generator2_Handler ; 136: P
WM 1 Generator 2
225 00000264 00000000 DCD PWM1Generator3_Handler ; 137: P
WM 1 Generator 3
226 00000268 00000000 DCD PWM1Fault_Handler
; 138: PWM 1 Fault
227 0000026C
228 0000026C __Vectors_End
229 0000026C
230 0000026C 0000026C
__Vectors_Size
EQU __Vectors_End - __Vectors
231 0000026C
232 0000026C AREA |.text|, CODE, READONLY
233 00000000
234 00000000
235 00000000 ; Reset Handler
236 00000000
237 00000000 Reset_Handler
PROC
238 00000000 EXPORT Reset_Handler [WEAK
]
239 00000000 ; IMPORT SystemInit
240 00000000 IMPORT __main
ARM Macro Assembler Page 8
241 00000000 ; LDR R0, =SystemInit
242 00000000 ; BLX R0
243 00000000 483B LDR R0, =__main
244 00000002 4700 BX R0
245 00000004 ENDP
246 00000004
247 00000004
248 00000004 ; Dummy Exception Handlers (infinite loops which can be
modified)
249 00000004
250 00000004 NMI_Handler
PROC
251 00000004 EXPORT NMI_Handler [WEAK
]
252 00000004 E7FE B .
253 00000006 ENDP
255 00000006 HardFault_Handler
PROC
256 00000006 EXPORT HardFault_Handler [WEAK
]
257 00000006 E7FE B .
258 00000008 ENDP
260 00000008 MemManage_Handler
PROC
261 00000008 EXPORT MemManage_Handler [WEAK
]
262 00000008 E7FE B .
263 0000000A ENDP
265 0000000A BusFault_Handler
PROC
266 0000000A EXPORT BusFault_Handler [WEAK
]
267 0000000A E7FE B .
268 0000000C ENDP
270 0000000C UsageFault_Handler
PROC
271 0000000C EXPORT UsageFault_Handler [WEAK
]
272 0000000C E7FE B .
273 0000000E ENDP
274 0000000E SVC_Handler
PROC
275 0000000E EXPORT SVC_Handler [WEAK
]
276 0000000E E7FE B .
277 00000010 ENDP
279 00000010 DebugMon_Handler
PROC
280 00000010 EXPORT DebugMon_Handler [WEAK
]
281 00000010 E7FE B .
282 00000012 ENDP
284 00000012 PendSV_Handler
PROC
285 00000012 EXPORT PendSV_Handler [WEAK
]
286 00000012 E7FE B .
287 00000014 ENDP
289 00000014 SysTick_Handler
ARM Macro Assembler Page 9
PROC
290 00000014 EXPORT SysTick_Handler [WEAK
]
291 00000014 E7FE B .
292 00000016 ENDP
293 00000016
295 00000016 GPIOPortA_Handler
PROC
296 00000016 EXPORT GPIOPortA_Handler [WEAK]
297 00000016 E7FE B .
298 00000018 ENDP
299 00000018
301 00000018 GPIOPortB_Handler
PROC
302 00000018 EXPORT GPIOPortB_Handler [WEAK]
303 00000018 E7FE B .
304 0000001A ENDP
305 0000001A
307 0000001A GPIOPortC_Handler
PROC
308 0000001A EXPORT GPIOPortC_Handler [WEAK]
309 0000001A E7FE B .
310 0000001C ENDP
311 0000001C
313 0000001C GPIOPortD_Handler
PROC
314 0000001C EXPORT GPIOPortD_Handler [WEAK]
315 0000001C E7FE B .
316 0000001E ENDP
317 0000001E
319 0000001E GPIOPortE_Handler
PROC
320 0000001E EXPORT GPIOPortE_Handler [WEAK]
321 0000001E E7FE B .
322 00000020 ENDP
323 00000020
325 00000020 UART0_Handler
PROC
326 00000020 EXPORT UART0_Handler [WEAK]
327 00000020 E7FE B .
328 00000022 ENDP
329 00000022
331 00000022 UART1_Handler
PROC
332 00000022 EXPORT UART1_Handler [WEAK]
333 00000022 E7FE B .
334 00000024 ENDP
335 00000024
337 00000024 SSI0_Handler
PROC
338 00000024 EXPORT SSI0_Handler [WEAK]
339 00000024 E7FE B .
340 00000026 ENDP
341 00000026
343 00000026 I2C0_Handler
PROC
344 00000026 EXPORT I2C0_Handler [WEAK]
345 00000026 E7FE B .
346 00000028 ENDP
ARM Macro Assembler Page 10
347 00000028
349 00000028 PMW0_FAULT_Handler
PROC
350 00000028 EXPORT PMW0_FAULT_Handler [WEAK]
351 00000028 E7FE B .
352 0000002A ENDP
353 0000002A
355 0000002A PWM0Generator0_Handler
PROC
356 0000002A EXPORT PWM0Generator0_Handler [WEAK]
357 0000002A E7FE B .
358 0000002C ENDP
359 0000002C
361 0000002C PWM0Generator1_Handler
PROC
362 0000002C EXPORT PWM0Generator1_Handler [WEAK]
363 0000002C E7FE B .
364 0000002E ENDP
365 0000002E
367 0000002E PWM0Generator2_Handler
PROC
368 0000002E EXPORT PWM0Generator2_Handler [WEAK]
369 0000002E E7FE B .
370 00000030 ENDP
371 00000030
373 00000030 Quadrature0_Handler
PROC
374 00000030 EXPORT Quadrature0_Handler [WEAK]
375 00000030 E7FE B .
376 00000032 ENDP
377 00000032
379 00000032 ADC0Seq0_Handler
PROC
380 00000032 EXPORT ADC0Seq0_Handler [WEAK]
381 00000032 E7FE B .
382 00000034 ENDP
383 00000034
385 00000034 ADC0Seq1_Handler
PROC
386 00000034 EXPORT ADC0Seq1_Handler [WEAK]
387 00000034 E7FE B .
388 00000036 ENDP
389 00000036
391 00000036 ADC0Seq2_Handler
PROC
392 00000036 EXPORT ADC0Seq2_Handler [WEAK]
393 00000036 E7FE B .
394 00000038 ENDP
395 00000038
397 00000038 ADC0Seq3_Handler
PROC
398 00000038 EXPORT ADC0Seq3_Handler [WEAK]
399 00000038 E7FE B .
400 0000003A ENDP
401 0000003A
403 0000003A WDT_Handler
PROC
404 0000003A EXPORT WDT_Handler [WEAK]
405 0000003A E7FE B .
ARM Macro Assembler Page 11
406 0000003C ENDP
407 0000003C
409 0000003C TIMER0A_Handler
PROC
410 0000003C EXPORT TIMER0A_Handler [WEAK]
411 0000003C E7FE B .
412 0000003E ENDP
413 0000003E
415 0000003E TIMER0B_Handler
PROC
416 0000003E EXPORT TIMER0B_Handler [WEAK]
417 0000003E E7FE B .
418 00000040 ENDP
419 00000040
421 00000040 TIMER1A_Handler
PROC
422 00000040 EXPORT TIMER1A_Handler [WEAK]
423 00000040 E7FE B .
424 00000042 ENDP
425 00000042
427 00000042 TIMER1B_Handler
PROC
428 00000042 EXPORT TIMER1B_Handler [WEAK]
429 00000042 E7FE B .
430 00000044 ENDP
431 00000044
433 00000044 TIMER2A_Handler
PROC
434 00000044 EXPORT TIMER2A_Handler [WEAK]
435 00000044 E7FE B .
436 00000046 ENDP
437 00000046
439 00000046 TIMER2B_Handler
PROC
440 00000046 EXPORT TIMER2B_Handler [WEAK]
441 00000046 E7FE B .
442 00000048 ENDP
443 00000048
445 00000048 COMP0_Handler
PROC
446 00000048 EXPORT COMP0_Handler [WEAK]
447 00000048 E7FE B .
448 0000004A ENDP
449 0000004A
451 0000004A COMP1_Handler
PROC
452 0000004A EXPORT COMP1_Handler [WEAK]
453 0000004A E7FE B .
454 0000004C ENDP
455 0000004C
457 0000004C COMP2_Handler
PROC
458 0000004C EXPORT COMP2_Handler [WEAK]
459 0000004C E7FE B .
460 0000004E ENDP
461 0000004E
463 0000004E SYSCTL_Handler
PROC
464 0000004E EXPORT SYSCTL_Handler [WEAK]
ARM Macro Assembler Page 12
465 0000004E E7FE B .
466 00000050 ENDP
467 00000050
469 00000050 FlashCtl_Handler
PROC
470 00000050 EXPORT FlashCtl_Handler [WEAK]
471 00000050 E7FE B .
472 00000052 ENDP
473 00000052
475 00000052 GPIOPortF_Handler
PROC
476 00000052 EXPORT GPIOPortF_Handler [WEAK]
477 00000052 E7FE B .
478 00000054 ENDP
479 00000054
481 00000054 GPIOPortG_Handler
PROC
482 00000054 EXPORT GPIOPortG_Handler [WEAK]
483 00000054 E7FE B .
484 00000056 ENDP
485 00000056
487 00000056 GPIOPortH_Handler
PROC
488 00000056 EXPORT GPIOPortH_Handler [WEAK]
489 00000056 E7FE B .
490 00000058 ENDP
491 00000058
493 00000058 UART2_Handler
PROC
494 00000058 EXPORT UART2_Handler [WEAK]
495 00000058 E7FE B .
496 0000005A ENDP
497 0000005A
499 0000005A SSI1_Handler
PROC
500 0000005A EXPORT SSI1_Handler [WEAK]
501 0000005A E7FE B .
502 0000005C ENDP
503 0000005C
505 0000005C TIMER3A_Handler
PROC
506 0000005C EXPORT TIMER3A_Handler [WEAK]
507 0000005C E7FE B .
508 0000005E ENDP
509 0000005E
511 0000005E TIMER3B_Handler
PROC
512 0000005E EXPORT TIMER3B_Handler [WEAK]
513 0000005E E7FE B .
514 00000060 ENDP
515 00000060
517 00000060 I2C1_Handler
PROC
518 00000060 EXPORT I2C1_Handler [WEAK]
519 00000060 E7FE B .
520 00000062 ENDP
521 00000062
523 00000062 Quadrature1_Handler
PROC
ARM Macro Assembler Page 13
524 00000062 EXPORT Quadrature1_Handler [WEAK]
525 00000062 E7FE B .
526 00000064 ENDP
527 00000064
529 00000064 CAN0_Handler
PROC
530 00000064 EXPORT CAN0_Handler [WEAK]
531 00000064 E7FE B .
532 00000066 ENDP
533 00000066
535 00000066 CAN1_Handler
PROC
536 00000066 EXPORT CAN1_Handler [WEAK]
537 00000066 E7FE B .
538 00000068 ENDP
539 00000068
541 00000068 CAN2_Handler
PROC
542 00000068 EXPORT CAN2_Handler [WEAK]
543 00000068 E7FE B .
544 0000006A ENDP
545 0000006A
547 0000006A Hibernate_Handler
PROC
548 0000006A EXPORT Hibernate_Handler [WEAK]
549 0000006A E7FE B .
550 0000006C ENDP
551 0000006C
553 0000006C USB0_Handler
PROC
554 0000006C EXPORT USB0_Handler [WEAK]
555 0000006C E7FE B .
556 0000006E ENDP
557 0000006E
559 0000006E PWM0Generator3_Handler
PROC
560 0000006E EXPORT PWM0Generator3_Handler [WEAK]
561 0000006E E7FE B .
562 00000070 ENDP
563 00000070
565 00000070 UDMA_Handler
PROC
566 00000070 EXPORT UDMA_Handler [WEAK]
567 00000070 E7FE B .
568 00000072 ENDP
569 00000072
571 00000072 UDMAERR_Handler
PROC
572 00000072 EXPORT UDMAERR_Handler [WEAK]
573 00000072 E7FE B .
574 00000074 ENDP
575 00000074
577 00000074 ADC1Seq0_Handler
PROC
578 00000074 EXPORT ADC1Seq0_Handler [WEAK]
579 00000074 E7FE B .
580 00000076 ENDP
581 00000076
583 00000076 ADC1Seq1_Handler
ARM Macro Assembler Page 14
PROC
584 00000076 EXPORT ADC1Seq1_Handler [WEAK]
585 00000076 E7FE B .
586 00000078 ENDP
587 00000078
589 00000078 ADC1Seq2_Handler
PROC
590 00000078 EXPORT ADC1Seq2_Handler [WEAK]
591 00000078 E7FE B .
592 0000007A ENDP
593 0000007A
595 0000007A ADC1Seq3_Handler
PROC
596 0000007A EXPORT ADC1Seq3_Handler [WEAK]
597 0000007A E7FE B .
598 0000007C ENDP
599 0000007C
601 0000007C GPIOPortJ_Handler
PROC
602 0000007C EXPORT GPIOPortJ_Handler [WEAK]
603 0000007C E7FE B .
604 0000007E ENDP
605 0000007E
607 0000007E GPIOPortK_Handler
PROC
608 0000007E EXPORT GPIOPortK_Handler [WEAK]
609 0000007E E7FE B .
610 00000080 ENDP
611 00000080
613 00000080 GPIOPortL_Handler
PROC
614 00000080 EXPORT GPIOPortL_Handler [WEAK]
615 00000080 E7FE B .
616 00000082 ENDP
617 00000082
619 00000082 SSI2_Handler
PROC
620 00000082 EXPORT SSI2_Handler [WEAK]
621 00000082 E7FE B .
622 00000084 ENDP
623 00000084
625 00000084 SSI3_Handler
PROC
626 00000084 EXPORT SSI3_Handler [WEAK]
627 00000084 E7FE B .
628 00000086 ENDP
629 00000086
631 00000086 UART3_Handler
PROC
632 00000086 EXPORT UART3_Handler [WEAK]
633 00000086 E7FE B .
634 00000088 ENDP
635 00000088
637 00000088 UART4_Handler
PROC
638 00000088 EXPORT UART4_Handler [WEAK]
639 00000088 E7FE B .
640 0000008A ENDP
641 0000008A
ARM Macro Assembler Page 15
643 0000008A UART5_Handler
PROC
644 0000008A EXPORT UART5_Handler [WEAK]
645 0000008A E7FE B .
646 0000008C ENDP
647 0000008C
649 0000008C UART6_Handler
PROC
650 0000008C EXPORT UART6_Handler [WEAK]
651 0000008C E7FE B .
652 0000008E ENDP
653 0000008E
655 0000008E UART7_Handler
PROC
656 0000008E EXPORT UART7_Handler [WEAK]
657 0000008E E7FE B .
658 00000090 ENDP
659 00000090
661 00000090 I2C2_Handler
PROC
662 00000090 EXPORT I2C2_Handler [WEAK]
663 00000090 E7FE B .
664 00000092 ENDP
665 00000092
667 00000092 I2C3_Handler
PROC
668 00000092 EXPORT I2C3_Handler [WEAK]
669 00000092 E7FE B .
670 00000094 ENDP
671 00000094
673 00000094 TIMER4A_Handler
PROC
674 00000094 EXPORT TIMER4A_Handler [WEAK]
675 00000094 E7FE B .
676 00000096 ENDP
677 00000096
679 00000096 TIMER4B_Handler
PROC
680 00000096 EXPORT TIMER4B_Handler [WEAK]
681 00000096 E7FE B .
682 00000098 ENDP
683 00000098
685 00000098 TIMER5A_Handler
PROC
686 00000098 EXPORT TIMER5A_Handler [WEAK]
687 00000098 E7FE B .
688 0000009A ENDP
689 0000009A
691 0000009A TIMER5B_Handler
PROC
692 0000009A EXPORT TIMER5B_Handler [WEAK]
693 0000009A E7FE B .
694 0000009C ENDP
695 0000009C
697 0000009C WideTimer0A_Handler
PROC
698 0000009C EXPORT WideTimer0A_Handler [WEAK]
699 0000009C E7FE B .
700 0000009E ENDP
ARM Macro Assembler Page 16
701 0000009E
703 0000009E WideTimer0B_Handler
PROC
704 0000009E EXPORT WideTimer0B_Handler [WEAK]
705 0000009E E7FE B .
706 000000A0 ENDP
707 000000A0
709 000000A0 WideTimer1A_Handler
PROC
710 000000A0 EXPORT WideTimer1A_Handler [WEAK]
711 000000A0 E7FE B .
712 000000A2 ENDP
713 000000A2
715 000000A2 WideTimer1B_Handler
PROC
716 000000A2 EXPORT WideTimer1B_Handler [WEAK]
717 000000A2 E7FE B .
718 000000A4 ENDP
719 000000A4
721 000000A4 WideTimer2A_Handler
PROC
722 000000A4 EXPORT WideTimer2A_Handler [WEAK]
723 000000A4 E7FE B .
724 000000A6 ENDP
725 000000A6
727 000000A6 WideTimer2B_Handler
PROC
728 000000A6 EXPORT WideTimer2B_Handler [WEAK]
729 000000A6 E7FE B .
730 000000A8 ENDP
731 000000A8
733 000000A8 WideTimer3A_Handler
PROC
734 000000A8 EXPORT WideTimer3A_Handler [WEAK]
735 000000A8 E7FE B .
736 000000AA ENDP
737 000000AA
739 000000AA WideTimer3B_Handler
PROC
740 000000AA EXPORT WideTimer3B_Handler [WEAK]
741 000000AA E7FE B .
742 000000AC ENDP
743 000000AC
745 000000AC WideTimer4A_Handler
PROC
746 000000AC EXPORT WideTimer4A_Handler [WEAK]
747 000000AC E7FE B .
748 000000AE ENDP
749 000000AE
751 000000AE WideTimer4B_Handler
PROC
752 000000AE EXPORT WideTimer4B_Handler [WEAK]
753 000000AE E7FE B .
754 000000B0 ENDP
755 000000B0
757 000000B0 WideTimer5A_Handler
PROC
758 000000B0 EXPORT WideTimer5A_Handler [WEAK]
759 000000B0 E7FE B .
ARM Macro Assembler Page 17
760 000000B2 ENDP
761 000000B2
763 000000B2 WideTimer5B_Handler
PROC
764 000000B2 EXPORT WideTimer5B_Handler [WEAK]
765 000000B2 E7FE B .
766 000000B4 ENDP
767 000000B4
769 000000B4 FPU_Handler
PROC
770 000000B4 EXPORT FPU_Handler [WEAK]
771 000000B4 E7FE B .
772 000000B6 ENDP
773 000000B6
775 000000B6 I2C4_Handler
PROC
776 000000B6 EXPORT I2C4_Handler [WEAK]
777 000000B6 E7FE B .
778 000000B8 ENDP
779 000000B8
781 000000B8 I2C5_Handler
PROC
782 000000B8 EXPORT I2C5_Handler [WEAK]
783 000000B8 E7FE B .
784 000000BA ENDP
785 000000BA
787 000000BA GPIOPortM_Handler
PROC
788 000000BA EXPORT GPIOPortM_Handler [WEAK]
789 000000BA E7FE B .
790 000000BC ENDP
791 000000BC
793 000000BC GPIOPortN_Handler
PROC
794 000000BC EXPORT GPIOPortN_Handler [WEAK]
795 000000BC E7FE B .
796 000000BE ENDP
797 000000BE
799 000000BE QEI2_Handler
PROC
800 000000BE EXPORT QEI2_Handler [WEAK]
801 000000BE E7FE B .
802 000000C0 ENDP
803 000000C0
805 000000C0 GPIOPortP0_Handler
PROC
806 000000C0 EXPORT GPIOPortP0_Handler [WEAK]
807 000000C0 E7FE B .
808 000000C2 ENDP
809 000000C2
811 000000C2 GPIOPortP1_Handler
PROC
812 000000C2 EXPORT GPIOPortP1_Handler [WEAK]
813 000000C2 E7FE B .
814 000000C4 ENDP
815 000000C4
817 000000C4 GPIOPortP2_Handler
PROC
818 000000C4 EXPORT GPIOPortP2_Handler [WEAK]
ARM Macro Assembler Page 18
819 000000C4 E7FE B .
820 000000C6 ENDP
821 000000C6
823 000000C6 GPIOPortP3_Handler
PROC
824 000000C6 EXPORT GPIOPortP3_Handler [WEAK]
825 000000C6 E7FE B .
826 000000C8 ENDP
827 000000C8
829 000000C8 GPIOPortP4_Handler
PROC
830 000000C8 EXPORT GPIOPortP4_Handler [WEAK]
831 000000C8 E7FE B .
832 000000CA ENDP
833 000000CA
835 000000CA GPIOPortP5_Handler
PROC
836 000000CA EXPORT GPIOPortP5_Handler [WEAK]
837 000000CA E7FE B .
838 000000CC ENDP
839 000000CC
841 000000CC GPIOPortP6_Handler
PROC
842 000000CC EXPORT GPIOPortP6_Handler [WEAK]
843 000000CC E7FE B .
844 000000CE ENDP
845 000000CE
847 000000CE GPIOPortP7_Handler
PROC
848 000000CE EXPORT GPIOPortP7_Handler [WEAK]
849 000000CE E7FE B .
850 000000D0 ENDP
851 000000D0
853 000000D0 GPIOPortQ0_Handler
PROC
854 000000D0 EXPORT GPIOPortQ0_Handler [WEAK]
855 000000D0 E7FE B .
856 000000D2 ENDP
857 000000D2
859 000000D2 GPIOPortQ1_Handler
PROC
860 000000D2 EXPORT GPIOPortQ1_Handler [WEAK]
861 000000D2 E7FE B .
862 000000D4 ENDP
863 000000D4
865 000000D4 GPIOPortQ2_Handler
PROC
866 000000D4 EXPORT GPIOPortQ2_Handler [WEAK]
867 000000D4 E7FE B .
868 000000D6 ENDP
869 000000D6
871 000000D6 GPIOPortQ3_Handler
PROC
872 000000D6 EXPORT GPIOPortQ3_Handler [WEAK]
873 000000D6 E7FE B .
874 000000D8 ENDP
875 000000D8
877 000000D8 GPIOPortQ4_Handler
PROC
ARM Macro Assembler Page 19
878 000000D8 EXPORT GPIOPortQ4_Handler [WEAK]
879 000000D8 E7FE B .
880 000000DA ENDP
881 000000DA
883 000000DA GPIOPortQ5_Handler
PROC
884 000000DA EXPORT GPIOPortQ5_Handler [WEAK]
885 000000DA E7FE B .
886 000000DC ENDP
887 000000DC
889 000000DC GPIOPortQ6_Handler
PROC
890 000000DC EXPORT GPIOPortQ6_Handler [WEAK]
891 000000DC E7FE B .
892 000000DE ENDP
893 000000DE
895 000000DE GPIOPortQ7_Handler
PROC
896 000000DE EXPORT GPIOPortQ7_Handler [WEAK]
897 000000DE E7FE B .
898 000000E0 ENDP
899 000000E0
901 000000E0 GPIOPortR_Handler
PROC
902 000000E0 EXPORT GPIOPortR_Handler [WEAK]
903 000000E0 E7FE B .
904 000000E2 ENDP
905 000000E2
907 000000E2 GPIOPortS_Handler
PROC
908 000000E2 EXPORT GPIOPortS_Handler [WEAK]
909 000000E2 E7FE B .
910 000000E4 ENDP
911 000000E4
913 000000E4 PWM1Generator0_Handler
PROC
914 000000E4 EXPORT PWM1Generator0_Handler [WEAK]
915 000000E4 E7FE B .
916 000000E6 ENDP
917 000000E6
919 000000E6 PWM1Generator1_Handler
PROC
920 000000E6 EXPORT PWM1Generator1_Handler [WEAK]
921 000000E6 E7FE B .
922 000000E8 ENDP
923 000000E8
925 000000E8 PWM1Generator2_Handler
PROC
926 000000E8 EXPORT PWM1Generator2_Handler [WEAK]
927 000000E8 E7FE B .
928 000000EA ENDP
929 000000EA
931 000000EA PWM1Generator3_Handler
PROC
932 000000EA EXPORT PWM1Generator3_Handler [WEAK]
933 000000EA E7FE B .
934 000000EC ENDP
935 000000EC
937 000000EC PWM1Fault_Handler
ARM Macro Assembler Page 20
PROC
938 000000EC EXPORT PWM1Fault_Handler [WEAK]
939 000000EC E7FE B .
940 000000EE ENDP
941 000000EE
942 000000EE 00 00 ALIGN
943 000000F0
944 000000F0 ;*******************************************************
***********************
945 000000F0 ;
946 000000F0 ; Make sure the end of this section is aligned.
947 000000F0 ;
948 000000F0 ;*******************************************************
***********************
949 000000F0 ALIGN
950 000000F0
951 000000F0 ;*******************************************************
***********************
952 000000F0 ;
953 000000F0 ; Some code in the normal code section for initializing
the heap and stack.
954 000000F0 ;
955 000000F0 ;*******************************************************
***********************
956 000000F0 00000000 AREA |.text|, CODE, READONLY
957 000000F4
958 000000F4 ;*******************************************************
***********************
959 000000F4 ;
960 000000F4 ; Useful functions.
961 000000F4 ;
962 000000F4 ;*******************************************************
***********************
963 000000F4 EXPORT DisableInterrupts
964 000000F4 EXPORT EnableInterrupts
965 000000F4 EXPORT StartCritical
966 000000F4 EXPORT EndCritical
967 000000F4 EXPORT WaitForInterrupt
968 000000F4
969 000000F4 ;*********** DisableInterrupts ***************
970 000000F4 ; disable interrupts
971 000000F4 ; inputs: none
972 000000F4 ; outputs: none
973 000000F4 DisableInterrupts
974 000000F4 B672 CPSID I
975 000000F6 4770 BX LR
976 000000F8
977 000000F8 ;*********** EnableInterrupts ***************
978 000000F8 ; enable interrupts
979 000000F8 ; inputs: none
980 000000F8 ; outputs: none
981 000000F8 EnableInterrupts
982 000000F8 B662 CPSIE I
983 000000FA 4770 BX LR
984 000000FC
985 000000FC ;*********** StartCritical ************************
986 000000FC ; make a copy of previous I bit, disable interrupts
987 000000FC ; inputs: none
988 000000FC ; outputs: previous I bit
ARM Macro Assembler Page 21
989 000000FC StartCritical
990 000000FC F3EF 8010 MRS R0, PRIMASK ; save old status
991 00000100 B672 CPSID I ; mask all (except
faults)
992 00000102 4770 BX LR
993 00000104
994 00000104 ;*********** EndCritical ************************
995 00000104 ; using the copy of previous I bit, restore I bit to pre
vious value
996 00000104 ; inputs: previous I bit
997 00000104 ; outputs: none
998 00000104 EndCritical
999 00000104 F380 8810 MSR PRIMASK, R0
1000 00000108 4770 BX LR
1001 0000010A
1002 0000010A ;*********** WaitForInterrupt ************************
1003 0000010A ; go to low power mode while waiting for the next interr
upt
1004 0000010A ; inputs: none
1005 0000010A ; outputs: none
1006 0000010A WaitForInterrupt
1007 0000010A BF30 WFI
1008 0000010C 4770 BX LR
1009 0000010E ; User Initial Stack & Heap
1010 0000010E
1011 0000010E IF :DEF:__MICROLIB
1018 0000010E
1019 0000010E IMPORT __use_two_region_memory
1020 0000010E EXPORT __user_initial_stackheap
1021 0000010E __user_initial_stackheap
1022 0000010E
1023 0000010E 4802 LDR R0, = Heap_Mem
1024 00000110 4902 LDR R1, =(Stack_Mem + Stack_Size)
1025 00000112 4A01 LDR R2, = (Heap_Mem + Heap_Size)
1026 00000114 4B02 LDR R3, = Stack_Mem
1027 00000116 4770 BX LR
1028 00000118
1029 00000118 ALIGN
1030 00000118
1031 00000118 ENDIF
1032 00000118
1033 00000118
1034 00000118 END
00000000
00000200
00000000
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M4 --apcs=interw
ork --depend=.\objects\startup_tm4c123.d -o.\objects\startup_tm4c123.o -I.\RTE\
_Target -IC:\Users\Tref\AppData\Local\Arm\Packs\ARM\CMSIS\5.6.0\CMSIS\Core\Incl
ude -IC:\Users\Tref\AppData\Local\Arm\Packs\Keil\TM4C_DFP\1.1.0\Device\Include\
TM4C123 --predefine="__EVAL SETA 1" --predefine="__UVISION_VERSION SETA 529" --
predefine="_RTE_ SETA 1" --predefine="TM4C123GH6PM SETA 1" --list=.\listings\st
artup_tm4c123.lst RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
STACK 00000000
Symbol: STACK
Definitions
At line 41 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
None
Comment: STACK unused
Stack_Mem 00000000
Symbol: Stack_Mem
Definitions
At line 42 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 1024 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 1026 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
__initial_sp 00000200
Symbol: __initial_sp
Definitions
At line 43 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 69 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: __initial_sp used once
3 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
HEAP 00000000
Symbol: HEAP
Definitions
At line 52 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
None
Comment: HEAP unused
Heap_Mem 00000000
Symbol: Heap_Mem
Definitions
At line 54 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 1023 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 1025 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
__heap_base 00000000
Symbol: __heap_base
Definitions
At line 53 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
None
Comment: __heap_base unused
__heap_limit 00000000
Symbol: __heap_limit
Definitions
At line 55 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
None
Comment: __heap_limit unused
4 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
RESET 00000000
Symbol: RESET
Definitions
At line 64 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
None
Comment: RESET unused
__Vectors 00000000
Symbol: __Vectors
Definitions
At line 69 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 65 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 230 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
__Vectors_End 0000026C
Symbol: __Vectors_End
Definitions
At line 228 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 66 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 230 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
3 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
.text 00000000
Symbol: .text
Definitions
At line 232 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
None
Comment: .text unused
ADC0Seq0_Handler 00000032
Symbol: ADC0Seq0_Handler
Definitions
At line 379 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 102 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 380 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ADC0Seq1_Handler 00000034
Symbol: ADC0Seq1_Handler
Definitions
At line 385 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 103 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 386 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ADC0Seq2_Handler 00000036
Symbol: ADC0Seq2_Handler
Definitions
At line 391 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 104 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 392 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ADC0Seq3_Handler 00000038
Symbol: ADC0Seq3_Handler
Definitions
At line 397 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 105 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 398 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ADC1Seq0_Handler 00000074
Symbol: ADC1Seq0_Handler
Definitions
At line 577 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 136 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 578 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ADC1Seq1_Handler 00000076
Symbol: ADC1Seq1_Handler
Definitions
At line 583 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
ARM Macro Assembler Page 2 Alphabetic symbol ordering
Relocatable symbols
At line 137 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 584 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ADC1Seq2_Handler 00000078
Symbol: ADC1Seq2_Handler
Definitions
At line 589 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 138 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 590 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ADC1Seq3_Handler 0000007A
Symbol: ADC1Seq3_Handler
Definitions
At line 595 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 139 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 596 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
BusFault_Handler 0000000A
Symbol: BusFault_Handler
Definitions
At line 265 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 74 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 266 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
CAN0_Handler 00000064
Symbol: CAN0_Handler
Definitions
At line 529 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 127 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 530 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
CAN1_Handler 00000066
Symbol: CAN1_Handler
Definitions
At line 535 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 128 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 536 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
CAN2_Handler 00000068
Symbol: CAN2_Handler
Definitions
At line 541 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 129 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 542 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
COMP0_Handler 00000048
ARM Macro Assembler Page 3 Alphabetic symbol ordering
Relocatable symbols
Symbol: COMP0_Handler
Definitions
At line 445 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 113 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 446 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
COMP1_Handler 0000004A
Symbol: COMP1_Handler
Definitions
At line 451 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 114 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 452 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
COMP2_Handler 0000004C
Symbol: COMP2_Handler
Definitions
At line 457 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 115 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 458 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
DebugMon_Handler 00000010
Symbol: DebugMon_Handler
Definitions
At line 279 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 81 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 280 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
DisableInterrupts 000000F4
Symbol: DisableInterrupts
Definitions
At line 973 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 963 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: DisableInterrupts used once
EnableInterrupts 000000F8
Symbol: EnableInterrupts
Definitions
At line 981 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 964 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: EnableInterrupts used once
EndCritical 00000104
Symbol: EndCritical
Definitions
At line 998 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 966 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: EndCritical used once
FPU_Handler 000000B4
ARM Macro Assembler Page 4 Alphabetic symbol ordering
Relocatable symbols
Symbol: FPU_Handler
Definitions
At line 769 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 194 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 770 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
FlashCtl_Handler 00000050
Symbol: FlashCtl_Handler
Definitions
At line 469 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 117 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 470 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortA_Handler 00000016
Symbol: GPIOPortA_Handler
Definitions
At line 295 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 88 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 296 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortB_Handler 00000018
Symbol: GPIOPortB_Handler
Definitions
At line 301 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 89 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 302 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortC_Handler 0000001A
Symbol: GPIOPortC_Handler
Definitions
At line 307 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 90 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 308 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortD_Handler 0000001C
Symbol: GPIOPortD_Handler
Definitions
At line 313 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 91 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 314 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortE_Handler 0000001E
Symbol: GPIOPortE_Handler
Definitions
At line 319 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
ARM Macro Assembler Page 5 Alphabetic symbol ordering
Relocatable symbols
At line 92 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 320 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortF_Handler 00000052
Symbol: GPIOPortF_Handler
Definitions
At line 475 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 118 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 476 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortG_Handler 00000054
Symbol: GPIOPortG_Handler
Definitions
At line 481 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 119 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 482 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortH_Handler 00000056
Symbol: GPIOPortH_Handler
Definitions
At line 487 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 120 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 488 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortJ_Handler 0000007C
Symbol: GPIOPortJ_Handler
Definitions
At line 601 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 142 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 602 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortK_Handler 0000007E
Symbol: GPIOPortK_Handler
Definitions
At line 607 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 143 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 608 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortL_Handler 00000080
Symbol: GPIOPortL_Handler
Definitions
At line 613 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 144 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 614 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortM_Handler 000000BA
ARM Macro Assembler Page 6 Alphabetic symbol ordering
Relocatable symbols
Symbol: GPIOPortM_Handler
Definitions
At line 787 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 199 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 788 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortN_Handler 000000BC
Symbol: GPIOPortN_Handler
Definitions
At line 793 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 200 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 794 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP0_Handler 000000C0
Symbol: GPIOPortP0_Handler
Definitions
At line 805 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 204 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 806 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP1_Handler 000000C2
Symbol: GPIOPortP1_Handler
Definitions
At line 811 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 205 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 812 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP2_Handler 000000C4
Symbol: GPIOPortP2_Handler
Definitions
At line 817 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 206 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 818 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP3_Handler 000000C6
Symbol: GPIOPortP3_Handler
Definitions
At line 823 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 207 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 824 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP4_Handler 000000C8
Symbol: GPIOPortP4_Handler
Definitions
At line 829 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 208 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ARM Macro Assembler Page 7 Alphabetic symbol ordering
Relocatable symbols
At line 830 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP5_Handler 000000CA
Symbol: GPIOPortP5_Handler
Definitions
At line 835 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 209 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 836 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP6_Handler 000000CC
Symbol: GPIOPortP6_Handler
Definitions
At line 841 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 210 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 842 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortP7_Handler 000000CE
Symbol: GPIOPortP7_Handler
Definitions
At line 847 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 211 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 848 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ0_Handler 000000D0
Symbol: GPIOPortQ0_Handler
Definitions
At line 853 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 212 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 854 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ1_Handler 000000D2
Symbol: GPIOPortQ1_Handler
Definitions
At line 859 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 213 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 860 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ2_Handler 000000D4
Symbol: GPIOPortQ2_Handler
Definitions
At line 865 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 214 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 866 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ3_Handler 000000D6
Symbol: GPIOPortQ3_Handler
ARM Macro Assembler Page 8 Alphabetic symbol ordering
Relocatable symbols
Definitions
At line 871 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 215 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 872 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ4_Handler 000000D8
Symbol: GPIOPortQ4_Handler
Definitions
At line 877 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 216 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 878 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ5_Handler 000000DA
Symbol: GPIOPortQ5_Handler
Definitions
At line 883 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 217 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 884 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ6_Handler 000000DC
Symbol: GPIOPortQ6_Handler
Definitions
At line 889 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 218 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 890 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortQ7_Handler 000000DE
Symbol: GPIOPortQ7_Handler
Definitions
At line 895 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 219 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 896 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortR_Handler 000000E0
Symbol: GPIOPortR_Handler
Definitions
At line 901 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 220 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 902 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
GPIOPortS_Handler 000000E2
Symbol: GPIOPortS_Handler
Definitions
At line 907 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 221 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 908 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ARM Macro Assembler Page 9 Alphabetic symbol ordering
Relocatable symbols
HardFault_Handler 00000006
Symbol: HardFault_Handler
Definitions
At line 255 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 72 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 256 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Hibernate_Handler 0000006A
Symbol: Hibernate_Handler
Definitions
At line 547 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 131 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 548 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
I2C0_Handler 00000026
Symbol: I2C0_Handler
Definitions
At line 343 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 96 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 344 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
I2C1_Handler 00000060
Symbol: I2C1_Handler
Definitions
At line 517 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 125 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 518 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
I2C2_Handler 00000090
Symbol: I2C2_Handler
Definitions
At line 661 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 156 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 662 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
I2C3_Handler 00000092
Symbol: I2C3_Handler
Definitions
At line 667 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 157 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 668 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
I2C4_Handler 000000B6
Symbol: I2C4_Handler
Definitions
ARM Macro Assembler Page 10 Alphabetic symbol ordering
Relocatable symbols
At line 775 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 197 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 776 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
I2C5_Handler 000000B8
Symbol: I2C5_Handler
Definitions
At line 781 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 198 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 782 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
MemManage_Handler 00000008
Symbol: MemManage_Handler
Definitions
At line 260 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 73 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 261 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
NMI_Handler 00000004
Symbol: NMI_Handler
Definitions
At line 250 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 71 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 251 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PMW0_FAULT_Handler 00000028
Symbol: PMW0_FAULT_Handler
Definitions
At line 349 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 97 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 350 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM0Generator0_Handler 0000002A
Symbol: PWM0Generator0_Handler
Definitions
At line 355 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 98 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 356 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM0Generator1_Handler 0000002C
Symbol: PWM0Generator1_Handler
Definitions
At line 361 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 99 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 362 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ARM Macro Assembler Page 11 Alphabetic symbol ordering
Relocatable symbols
PWM0Generator2_Handler 0000002E
Symbol: PWM0Generator2_Handler
Definitions
At line 367 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 100 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 368 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM0Generator3_Handler 0000006E
Symbol: PWM0Generator3_Handler
Definitions
At line 559 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 133 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 560 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM1Fault_Handler 000000EC
Symbol: PWM1Fault_Handler
Definitions
At line 937 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 226 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 938 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM1Generator0_Handler 000000E4
Symbol: PWM1Generator0_Handler
Definitions
At line 913 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 222 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 914 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM1Generator1_Handler 000000E6
Symbol: PWM1Generator1_Handler
Definitions
At line 919 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 223 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 920 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM1Generator2_Handler 000000E8
Symbol: PWM1Generator2_Handler
Definitions
At line 925 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 224 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 926 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PWM1Generator3_Handler 000000EA
Symbol: PWM1Generator3_Handler
Definitions
At line 931 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ARM Macro Assembler Page 12 Alphabetic symbol ordering
Relocatable symbols
Uses
At line 225 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 932 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
PendSV_Handler 00000012
Symbol: PendSV_Handler
Definitions
At line 284 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 83 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 285 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
QEI2_Handler 000000BE
Symbol: QEI2_Handler
Definitions
At line 799 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 201 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 800 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Quadrature0_Handler 00000030
Symbol: Quadrature0_Handler
Definitions
At line 373 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 101 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 374 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Quadrature1_Handler 00000062
Symbol: Quadrature1_Handler
Definitions
At line 523 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 126 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 524 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Reset_Handler 00000000
Symbol: Reset_Handler
Definitions
At line 237 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 70 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 238 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
SSI0_Handler 00000024
Symbol: SSI0_Handler
Definitions
At line 337 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 95 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 338 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
SSI1_Handler 0000005A
ARM Macro Assembler Page 13 Alphabetic symbol ordering
Relocatable symbols
Symbol: SSI1_Handler
Definitions
At line 499 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 122 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 500 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
SSI2_Handler 00000082
Symbol: SSI2_Handler
Definitions
At line 619 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 145 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 620 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
SSI3_Handler 00000084
Symbol: SSI3_Handler
Definitions
At line 625 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 146 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 626 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
SVC_Handler 0000000E
Symbol: SVC_Handler
Definitions
At line 274 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 80 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 275 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
SYSCTL_Handler 0000004E
Symbol: SYSCTL_Handler
Definitions
At line 463 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 116 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 464 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
StartCritical 000000FC
Symbol: StartCritical
Definitions
At line 989 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 965 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: StartCritical used once
SysTick_Handler 00000014
Symbol: SysTick_Handler
Definitions
At line 289 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 84 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ARM Macro Assembler Page 14 Alphabetic symbol ordering
Relocatable symbols
At line 290 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER0A_Handler 0000003C
Symbol: TIMER0A_Handler
Definitions
At line 409 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 107 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 410 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER0B_Handler 0000003E
Symbol: TIMER0B_Handler
Definitions
At line 415 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 108 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 416 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER1A_Handler 00000040
Symbol: TIMER1A_Handler
Definitions
At line 421 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 109 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 422 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER1B_Handler 00000042
Symbol: TIMER1B_Handler
Definitions
At line 427 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 110 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 428 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER2A_Handler 00000044
Symbol: TIMER2A_Handler
Definitions
At line 433 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 111 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 434 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER2B_Handler 00000046
Symbol: TIMER2B_Handler
Definitions
At line 439 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 112 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 440 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER3A_Handler 0000005C
Symbol: TIMER3A_Handler
ARM Macro Assembler Page 15 Alphabetic symbol ordering
Relocatable symbols
Definitions
At line 505 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 123 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 506 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER3B_Handler 0000005E
Symbol: TIMER3B_Handler
Definitions
At line 511 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 124 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 512 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER4A_Handler 00000094
Symbol: TIMER4A_Handler
Definitions
At line 673 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 158 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 674 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER4B_Handler 00000096
Symbol: TIMER4B_Handler
Definitions
At line 679 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 159 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 680 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER5A_Handler 00000098
Symbol: TIMER5A_Handler
Definitions
At line 685 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 180 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 686 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
TIMER5B_Handler 0000009A
Symbol: TIMER5B_Handler
Definitions
At line 691 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 181 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 692 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UART0_Handler 00000020
Symbol: UART0_Handler
Definitions
At line 325 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 93 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 326 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
ARM Macro Assembler Page 16 Alphabetic symbol ordering
Relocatable symbols
UART1_Handler 00000022
Symbol: UART1_Handler
Definitions
At line 331 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 94 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 332 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UART2_Handler 00000058
Symbol: UART2_Handler
Definitions
At line 493 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 121 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 494 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UART3_Handler 00000086
Symbol: UART3_Handler
Definitions
At line 631 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 147 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 632 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UART4_Handler 00000088
Symbol: UART4_Handler
Definitions
At line 637 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 148 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 638 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UART5_Handler 0000008A
Symbol: UART5_Handler
Definitions
At line 643 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 149 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 644 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UART6_Handler 0000008C
Symbol: UART6_Handler
Definitions
At line 649 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 150 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 650 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UART7_Handler 0000008E
Symbol: UART7_Handler
Definitions
ARM Macro Assembler Page 17 Alphabetic symbol ordering
Relocatable symbols
At line 655 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 151 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 656 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UDMAERR_Handler 00000072
Symbol: UDMAERR_Handler
Definitions
At line 571 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 135 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 572 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UDMA_Handler 00000070
Symbol: UDMA_Handler
Definitions
At line 565 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 134 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 566 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
USB0_Handler 0000006C
Symbol: USB0_Handler
Definitions
At line 553 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 132 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 554 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
UsageFault_Handler 0000000C
Symbol: UsageFault_Handler
Definitions
At line 270 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 75 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 271 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WDT_Handler 0000003A
Symbol: WDT_Handler
Definitions
At line 403 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 106 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 404 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WaitForInterrupt 0000010A
Symbol: WaitForInterrupt
Definitions
At line 1006 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 967 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: WaitForInterrupt used once
WideTimer0A_Handler 0000009C
ARM Macro Assembler Page 18 Alphabetic symbol ordering
Relocatable symbols
Symbol: WideTimer0A_Handler
Definitions
At line 697 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 182 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 698 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer0B_Handler 0000009E
Symbol: WideTimer0B_Handler
Definitions
At line 703 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 183 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 704 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer1A_Handler 000000A0
Symbol: WideTimer1A_Handler
Definitions
At line 709 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 184 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 710 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer1B_Handler 000000A2
Symbol: WideTimer1B_Handler
Definitions
At line 715 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 185 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 716 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer2A_Handler 000000A4
Symbol: WideTimer2A_Handler
Definitions
At line 721 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 186 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 722 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer2B_Handler 000000A6
Symbol: WideTimer2B_Handler
Definitions
At line 727 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 187 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 728 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer3A_Handler 000000A8
Symbol: WideTimer3A_Handler
Definitions
At line 733 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
ARM Macro Assembler Page 19 Alphabetic symbol ordering
Relocatable symbols
At line 188 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 734 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer3B_Handler 000000AA
Symbol: WideTimer3B_Handler
Definitions
At line 739 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 189 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 740 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer4A_Handler 000000AC
Symbol: WideTimer4A_Handler
Definitions
At line 745 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 190 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 746 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer4B_Handler 000000AE
Symbol: WideTimer4B_Handler
Definitions
At line 751 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 191 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 752 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer5A_Handler 000000B0
Symbol: WideTimer5A_Handler
Definitions
At line 757 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 192 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 758 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
WideTimer5B_Handler 000000B2
Symbol: WideTimer5B_Handler
Definitions
At line 763 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 193 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 764 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
__user_initial_stackheap 0000010E
Symbol: __user_initial_stackheap
Definitions
At line 1021 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 1020 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: __user_initial_stackheap used once
125 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Absolute symbols
Heap_Size 00000000
Symbol: Heap_Size
Definitions
At line 50 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 54 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 1025 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Stack_Size 00000200
Symbol: Stack_Size
Definitions
At line 39 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 42 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
At line 1024 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
__Vectors_Size 0000026C
Symbol: __Vectors_Size
Definitions
At line 230 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 67 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: __Vectors_Size used once
3 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
External symbols
__main 00000000
Symbol: __main
Definitions
At line 240 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
At line 243 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Comment: __main used once
__use_two_region_memory 00000000
Symbol: __use_two_region_memory
Definitions
At line 1019 in file RTE\Device\TM4C123GH6PM\startup_TM4C123.s
Uses
None
Comment: __use_two_region_memory unused
2 symbols
480 symbols in table