startup_stm32f10x_cl.lst 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710
  1. ARM Macro Assembler Page 1
  2. 1 00000000 ;******************** (C) COPYRIGHT 2010 STMicroelectron
  3. ics ********************
  4. 2 00000000 ;* File Name : startup_stm32f10x_cl.s
  5. 3 00000000 ;* Author : MCD Application Team
  6. 4 00000000 ;* Version : V3.4.0
  7. 5 00000000 ;* Date : 10/15/2010
  8. 6 00000000 ;* Description : STM32F10x Connectivity line devi
  9. ces vector table for MDK-ARM
  10. 7 00000000 ;* toolchain.
  11. 8 00000000 ;* This module performs:
  12. 9 00000000 ;* - Set the initial SP
  13. 10 00000000 ;* - Set the initial PC == Reset_Ha
  14. ndler
  15. 11 00000000 ;* - Set the vector table entries w
  16. ith the exceptions ISR address
  17. 12 00000000 ;* - Configure the clock system
  18. 13 00000000 ;* - Branches to __main in the C li
  19. brary (which eventually
  20. 14 00000000 ;* calls main()).
  21. 15 00000000 ;* After Reset the CortexM3 process
  22. or is in Thread mode,
  23. 16 00000000 ;* priority is Privileged, and the
  24. Stack is set to Main.
  25. 17 00000000 ;* <<< Use Configuration Wizard in Context Menu >>>
  26. 18 00000000 ;*******************************************************
  27. ************************
  28. 19 00000000 ; THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS A
  29. T PROVIDING CUSTOMERS
  30. 20 00000000 ; WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN OR
  31. DER FOR THEM TO SAVE TIME.
  32. 21 00000000 ; AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIAB
  33. LE FOR ANY DIRECT,
  34. 22 00000000 ; INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY
  35. CLAIMS ARISING FROM THE
  36. 23 00000000 ; CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOM
  37. ERS OF THE CODING
  38. 24 00000000 ; INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR
  39. PRODUCTS.
  40. 25 00000000 ;*******************************************************
  41. ************************
  42. 26 00000000
  43. 27 00000000 ; Amount of memory (in bytes) allocated for Stack
  44. 28 00000000 ; Tailor this value to your application needs
  45. 29 00000000 ; <h> Stack Configuration
  46. 30 00000000 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
  47. 31 00000000 ; </h>
  48. 32 00000000
  49. 33 00000000 00000400
  50. Stack_Size
  51. EQU 0x00000400
  52. 34 00000000
  53. 35 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
  54. =3
  55. 36 00000000 Stack_Mem
  56. SPACE Stack_Size
  57. 37 00000400 __initial_sp
  58. 38 00000400
  59. 39 00000400
  60. 40 00000400 ; <h> Heap Configuration
  61. ARM Macro Assembler Page 2
  62. 41 00000400 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
  63. 42 00000400 ; </h>
  64. 43 00000400
  65. 44 00000400 00000200
  66. Heap_Size
  67. EQU 0x00000200
  68. 45 00000400
  69. 46 00000400 AREA HEAP, NOINIT, READWRITE, ALIGN=
  70. 3
  71. 47 00000000 __heap_base
  72. 48 00000000 Heap_Mem
  73. SPACE Heap_Size
  74. 49 00000200 __heap_limit
  75. 50 00000200
  76. 51 00000200 PRESERVE8
  77. 52 00000200 THUMB
  78. 53 00000200
  79. 54 00000200
  80. 55 00000200 ; Vector Table Mapped to Address 0 at Reset
  81. 56 00000200 AREA RESET, DATA, READONLY
  82. 57 00000000 EXPORT __Vectors
  83. 58 00000000 EXPORT __Vectors_End
  84. 59 00000000 EXPORT __Vectors_Size
  85. 60 00000000
  86. 61 00000000 00000000
  87. __Vectors
  88. DCD __initial_sp ; Top of Stack
  89. 62 00000004 00000000 DCD Reset_Handler ; Reset Handler
  90. 63 00000008 00000000 DCD NMI_Handler ; NMI Handler
  91. 64 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
  92. Handler
  93. 65 00000010 00000000 DCD MemManage_Handler
  94. ; MPU Fault Handler
  95. 66 00000014 00000000 DCD BusFault_Handler
  96. ; Bus Fault Handler
  97. 67 00000018 00000000 DCD UsageFault_Handler ; Usage Faul
  98. t Handler
  99. 68 0000001C 00000000 DCD 0 ; Reserved
  100. 69 00000020 00000000 DCD 0 ; Reserved
  101. 70 00000024 00000000 DCD 0 ; Reserved
  102. 71 00000028 00000000 DCD 0 ; Reserved
  103. 72 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
  104. 73 00000030 00000000 DCD DebugMon_Handler ; Debug Monito
  105. r Handler
  106. 74 00000034 00000000 DCD 0 ; Reserved
  107. 75 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
  108. 76 0000003C 00000000 DCD SysTick_Handler
  109. ; SysTick Handler
  110. 77 00000040
  111. 78 00000040 ; External Interrupts
  112. 79 00000040 00000000 DCD WWDG_IRQHandler
  113. ; Window Watchdog
  114. 80 00000044 00000000 DCD PVD_IRQHandler ; PVD through EX
  115. TI Line detect
  116. 81 00000048 00000000 DCD TAMPER_IRQHandler ; Tamper
  117. 82 0000004C 00000000 DCD RTC_IRQHandler ; RTC
  118. ARM Macro Assembler Page 3
  119. 83 00000050 00000000 DCD FLASH_IRQHandler ; Flash
  120. 84 00000054 00000000 DCD RCC_IRQHandler ; RCC
  121. 85 00000058 00000000 DCD EXTI0_IRQHandler ; EXTI Line 0
  122. 86 0000005C 00000000 DCD EXTI1_IRQHandler ; EXTI Line 1
  123. 87 00000060 00000000 DCD EXTI2_IRQHandler ; EXTI Line 2
  124. 88 00000064 00000000 DCD EXTI3_IRQHandler ; EXTI Line 3
  125. 89 00000068 00000000 DCD EXTI4_IRQHandler ; EXTI Line 4
  126. 90 0000006C 00000000 DCD DMA1_Channel1_IRQHandler
  127. ; DMA1 Channel 1
  128. 91 00000070 00000000 DCD DMA1_Channel2_IRQHandler
  129. ; DMA1 Channel 2
  130. 92 00000074 00000000 DCD DMA1_Channel3_IRQHandler
  131. ; DMA1 Channel 3
  132. 93 00000078 00000000 DCD DMA1_Channel4_IRQHandler
  133. ; DMA1 Channel 4
  134. 94 0000007C 00000000 DCD DMA1_Channel5_IRQHandler
  135. ; DMA1 Channel 5
  136. 95 00000080 00000000 DCD DMA1_Channel6_IRQHandler
  137. ; DMA1 Channel 6
  138. 96 00000084 00000000 DCD DMA1_Channel7_IRQHandler
  139. ; DMA1 Channel 7
  140. 97 00000088 00000000 DCD ADC1_2_IRQHandler
  141. ; ADC1 and ADC2
  142. 98 0000008C 00000000 DCD CAN1_TX_IRQHandler ; CAN1 TX
  143. 99 00000090 00000000 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
  144. 100 00000094 00000000 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
  145. 101 00000098 00000000 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
  146. 102 0000009C 00000000 DCD EXTI9_5_IRQHandler
  147. ; EXTI Line 9..5
  148. 103 000000A0 00000000 DCD TIM1_BRK_IRQHandler
  149. ; TIM1 Break
  150. 104 000000A4 00000000 DCD TIM1_UP_IRQHandler
  151. ; TIM1 Update
  152. 105 000000A8 00000000 DCD TIM1_TRG_COM_IRQHandler ; TIM1
  153. Trigger and Commuta
  154. tion
  155. 106 000000AC 00000000 DCD TIM1_CC_IRQHandler ; TIM1 Captu
  156. re Compare
  157. 107 000000B0 00000000 DCD TIM2_IRQHandler ; TIM2
  158. 108 000000B4 00000000 DCD TIM3_IRQHandler ; TIM3
  159. 109 000000B8 00000000 DCD TIM4_IRQHandler ; TIM4
  160. 110 000000BC 00000000 DCD I2C1_EV_IRQHandler ; I2C1 Event
  161. 111 000000C0 00000000 DCD I2C1_ER_IRQHandler ; I2C1 Error
  162. 112 000000C4 00000000 DCD I2C2_EV_IRQHandler ; I2C2 Event
  163. 113 000000C8 00000000 DCD I2C2_ER_IRQHandler ; I2C1 Error
  164. 114 000000CC 00000000 DCD SPI1_IRQHandler ; SPI1
  165. 115 000000D0 00000000 DCD SPI2_IRQHandler ; SPI2
  166. 116 000000D4 00000000 DCD USART1_IRQHandler ; USART1
  167. 117 000000D8 00000000 DCD USART2_IRQHandler ; USART2
  168. 118 000000DC 00000000 DCD USART3_IRQHandler ; USART3
  169. 119 000000E0 00000000 DCD EXTI15_10_IRQHandler
  170. ; EXTI Line 15..10
  171. 120 000000E4 00000000 DCD RTCAlarm_IRQHandler ; RTC alarm
  172. through EXTI line
  173. 121 000000E8 00000000 DCD OTG_FS_WKUP_IRQHandler ; USB OT
  174. ARM Macro Assembler Page 4
  175. G FS Wakeup through
  176. EXTI line
  177. 122 000000EC 00000000 DCD 0 ; Reserved
  178. 123 000000F0 00000000 DCD 0 ; Reserved
  179. 124 000000F4 00000000 DCD 0 ; Reserved
  180. 125 000000F8 00000000 DCD 0 ; Reserved
  181. 126 000000FC 00000000 DCD 0 ; Reserved
  182. 127 00000100 00000000 DCD 0 ; Reserved
  183. 128 00000104 00000000 DCD 0 ; Reserved
  184. 129 00000108 00000000 DCD TIM5_IRQHandler ; TIM5
  185. 130 0000010C 00000000 DCD SPI3_IRQHandler ; SPI3
  186. 131 00000110 00000000 DCD UART4_IRQHandler ; UART4
  187. 132 00000114 00000000 DCD UART5_IRQHandler ; UART5
  188. 133 00000118 00000000 DCD TIM6_IRQHandler ; TIM6
  189. 134 0000011C 00000000 DCD TIM7_IRQHandler ; TIM7
  190. 135 00000120 00000000 DCD DMA2_Channel1_IRQHandler
  191. ; DMA2 Channel1
  192. 136 00000124 00000000 DCD DMA2_Channel2_IRQHandler
  193. ; DMA2 Channel2
  194. 137 00000128 00000000 DCD DMA2_Channel3_IRQHandler
  195. ; DMA2 Channel3
  196. 138 0000012C 00000000 DCD DMA2_Channel4_IRQHandler
  197. ; DMA2 Channel4
  198. 139 00000130 00000000 DCD DMA2_Channel5_IRQHandler
  199. ; DMA2 Channel5
  200. 140 00000134 00000000 DCD ETH_IRQHandler ; Ethernet
  201. 141 00000138 00000000 DCD ETH_WKUP_IRQHandler ; Ethernet
  202. Wakeup through EXTI
  203. line
  204. 142 0000013C 00000000 DCD CAN2_TX_IRQHandler ; CAN2 TX
  205. 143 00000140 00000000 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
  206. 144 00000144 00000000 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
  207. 145 00000148 00000000 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
  208. 146 0000014C 00000000 DCD OTG_FS_IRQHandler ; USB OTG FS
  209. 147 00000150 __Vectors_End
  210. 148 00000150
  211. 149 00000150 00000150
  212. __Vectors_Size
  213. EQU __Vectors_End - __Vectors
  214. 150 00000150
  215. 151 00000150 AREA |.text|, CODE, READONLY
  216. 152 00000000
  217. 153 00000000 ; Reset handler
  218. 154 00000000 Reset_Handler
  219. PROC
  220. 155 00000000 EXPORT Reset_Handler [WEAK
  221. ]
  222. 156 00000000 IMPORT SystemInit
  223. 157 00000000 IMPORT __main
  224. 158 00000000 4806 LDR R0, =SystemInit
  225. 159 00000002 4780 BLX R0
  226. 160 00000004 4806 LDR R0, =__main
  227. 161 00000006 4700 BX R0
  228. 162 00000008 ENDP
  229. 163 00000008
  230. 164 00000008 ; Dummy Exception Handlers (infinite loops which can be
  231. modified)
  232. 165 00000008
  233. 166 00000008 NMI_Handler
  234. ARM Macro Assembler Page 5
  235. PROC
  236. 167 00000008 EXPORT NMI_Handler [WEA
  237. K]
  238. 168 00000008 E7FE B .
  239. 169 0000000A ENDP
  240. 171 0000000A HardFault_Handler
  241. PROC
  242. 172 0000000A EXPORT HardFault_Handler [WEA
  243. K]
  244. 173 0000000A E7FE B .
  245. 174 0000000C ENDP
  246. 176 0000000C MemManage_Handler
  247. PROC
  248. 177 0000000C EXPORT MemManage_Handler [WEA
  249. K]
  250. 178 0000000C E7FE B .
  251. 179 0000000E ENDP
  252. 181 0000000E BusFault_Handler
  253. PROC
  254. 182 0000000E EXPORT BusFault_Handler [WEA
  255. K]
  256. 183 0000000E E7FE B .
  257. 184 00000010 ENDP
  258. 186 00000010 UsageFault_Handler
  259. PROC
  260. 187 00000010 EXPORT UsageFault_Handler [WEA
  261. K]
  262. 188 00000010 E7FE B .
  263. 189 00000012 ENDP
  264. 190 00000012 SVC_Handler
  265. PROC
  266. 191 00000012 EXPORT SVC_Handler [WEA
  267. K]
  268. 192 00000012 E7FE B .
  269. 193 00000014 ENDP
  270. 195 00000014 DebugMon_Handler
  271. PROC
  272. 196 00000014 EXPORT DebugMon_Handler [WEA
  273. K]
  274. 197 00000014 E7FE B .
  275. 198 00000016 ENDP
  276. 199 00000016 PendSV_Handler
  277. PROC
  278. 200 00000016 EXPORT PendSV_Handler [WEA
  279. K]
  280. 201 00000016 E7FE B .
  281. 202 00000018 ENDP
  282. 203 00000018 SysTick_Handler
  283. PROC
  284. 204 00000018 EXPORT SysTick_Handler [WEA
  285. K]
  286. 205 00000018 E7FE B .
  287. 206 0000001A ENDP
  288. 207 0000001A
  289. 208 0000001A Default_Handler
  290. PROC
  291. 209 0000001A
  292. 210 0000001A EXPORT WWDG_IRQHandler [WEA
  293. K]
  294. ARM Macro Assembler Page 6
  295. 211 0000001A EXPORT PVD_IRQHandler [WEA
  296. K]
  297. 212 0000001A EXPORT TAMPER_IRQHandler [WEA
  298. K]
  299. 213 0000001A EXPORT RTC_IRQHandler [WEA
  300. K]
  301. 214 0000001A EXPORT FLASH_IRQHandler [WEA
  302. K]
  303. 215 0000001A EXPORT RCC_IRQHandler [WEA
  304. K]
  305. 216 0000001A EXPORT EXTI0_IRQHandler [WEA
  306. K]
  307. 217 0000001A EXPORT EXTI1_IRQHandler [WEA
  308. K]
  309. 218 0000001A EXPORT EXTI2_IRQHandler [WEA
  310. K]
  311. 219 0000001A EXPORT EXTI3_IRQHandler [WEA
  312. K]
  313. 220 0000001A EXPORT EXTI4_IRQHandler [WEA
  314. K]
  315. 221 0000001A EXPORT DMA1_Channel1_IRQHandler [WEA
  316. K]
  317. 222 0000001A EXPORT DMA1_Channel2_IRQHandler [WEA
  318. K]
  319. 223 0000001A EXPORT DMA1_Channel3_IRQHandler [WEA
  320. K]
  321. 224 0000001A EXPORT DMA1_Channel4_IRQHandler [WEA
  322. K]
  323. 225 0000001A EXPORT DMA1_Channel5_IRQHandler [WEA
  324. K]
  325. 226 0000001A EXPORT DMA1_Channel6_IRQHandler [WEA
  326. K]
  327. 227 0000001A EXPORT DMA1_Channel7_IRQHandler [WEA
  328. K]
  329. 228 0000001A EXPORT ADC1_2_IRQHandler [WEA
  330. K]
  331. 229 0000001A EXPORT CAN1_TX_IRQHandler [WEA
  332. K]
  333. 230 0000001A EXPORT CAN1_RX0_IRQHandler [WEA
  334. K]
  335. 231 0000001A EXPORT CAN1_RX1_IRQHandler [WEA
  336. K]
  337. 232 0000001A EXPORT CAN1_SCE_IRQHandler [WEA
  338. K]
  339. 233 0000001A EXPORT EXTI9_5_IRQHandler [WEA
  340. K]
  341. 234 0000001A EXPORT TIM1_BRK_IRQHandler [WEA
  342. K]
  343. 235 0000001A EXPORT TIM1_UP_IRQHandler [WEA
  344. K]
  345. 236 0000001A EXPORT TIM1_TRG_COM_IRQHandler [WEA
  346. K]
  347. 237 0000001A EXPORT TIM1_CC_IRQHandler [WEA
  348. K]
  349. 238 0000001A EXPORT TIM2_IRQHandler [WEA
  350. K]
  351. 239 0000001A EXPORT TIM3_IRQHandler [WEA
  352. K]
  353. 240 0000001A EXPORT TIM4_IRQHandler [WEA
  354. ARM Macro Assembler Page 7
  355. K]
  356. 241 0000001A EXPORT I2C1_EV_IRQHandler [WEA
  357. K]
  358. 242 0000001A EXPORT I2C1_ER_IRQHandler [WEA
  359. K]
  360. 243 0000001A EXPORT I2C2_EV_IRQHandler [WEA
  361. K]
  362. 244 0000001A EXPORT I2C2_ER_IRQHandler [WEA
  363. K]
  364. 245 0000001A EXPORT SPI1_IRQHandler [WEA
  365. K]
  366. 246 0000001A EXPORT SPI2_IRQHandler [WEA
  367. K]
  368. 247 0000001A EXPORT USART1_IRQHandler [WEA
  369. K]
  370. 248 0000001A EXPORT USART2_IRQHandler [WEA
  371. K]
  372. 249 0000001A EXPORT USART3_IRQHandler [WEA
  373. K]
  374. 250 0000001A EXPORT EXTI15_10_IRQHandler [WEA
  375. K]
  376. 251 0000001A EXPORT RTCAlarm_IRQHandler [WEA
  377. K]
  378. 252 0000001A EXPORT OTG_FS_WKUP_IRQHandler [WEA
  379. K]
  380. 253 0000001A EXPORT TIM5_IRQHandler [WEA
  381. K]
  382. 254 0000001A EXPORT SPI3_IRQHandler [WEA
  383. K]
  384. 255 0000001A EXPORT UART4_IRQHandler [WEA
  385. K]
  386. 256 0000001A EXPORT UART5_IRQHandler [WEA
  387. K]
  388. 257 0000001A EXPORT TIM6_IRQHandler [WEA
  389. K]
  390. 258 0000001A EXPORT TIM7_IRQHandler [WEA
  391. K]
  392. 259 0000001A EXPORT DMA2_Channel1_IRQHandler [WEA
  393. K]
  394. 260 0000001A EXPORT DMA2_Channel2_IRQHandler [WEA
  395. K]
  396. 261 0000001A EXPORT DMA2_Channel3_IRQHandler [WEA
  397. K]
  398. 262 0000001A EXPORT DMA2_Channel4_IRQHandler [WEA
  399. K]
  400. 263 0000001A EXPORT DMA2_Channel5_IRQHandler [WEA
  401. K]
  402. 264 0000001A EXPORT ETH_IRQHandler [WEA
  403. K]
  404. 265 0000001A EXPORT ETH_WKUP_IRQHandler [WEA
  405. K]
  406. 266 0000001A EXPORT CAN2_TX_IRQHandler [WEA
  407. K]
  408. 267 0000001A EXPORT CAN2_RX0_IRQHandler [WEA
  409. K]
  410. 268 0000001A EXPORT CAN2_RX1_IRQHandler [WEA
  411. K]
  412. 269 0000001A EXPORT CAN2_SCE_IRQHandler [WEA
  413. K]
  414. ARM Macro Assembler Page 8
  415. 270 0000001A EXPORT OTG_FS_IRQHandler [WEA
  416. K]
  417. 271 0000001A
  418. 272 0000001A WWDG_IRQHandler
  419. 273 0000001A PVD_IRQHandler
  420. 274 0000001A TAMPER_IRQHandler
  421. 275 0000001A RTC_IRQHandler
  422. 276 0000001A FLASH_IRQHandler
  423. 277 0000001A RCC_IRQHandler
  424. 278 0000001A EXTI0_IRQHandler
  425. 279 0000001A EXTI1_IRQHandler
  426. 280 0000001A EXTI2_IRQHandler
  427. 281 0000001A EXTI3_IRQHandler
  428. 282 0000001A EXTI4_IRQHandler
  429. 283 0000001A DMA1_Channel1_IRQHandler
  430. 284 0000001A DMA1_Channel2_IRQHandler
  431. 285 0000001A DMA1_Channel3_IRQHandler
  432. 286 0000001A DMA1_Channel4_IRQHandler
  433. 287 0000001A DMA1_Channel5_IRQHandler
  434. 288 0000001A DMA1_Channel6_IRQHandler
  435. 289 0000001A DMA1_Channel7_IRQHandler
  436. 290 0000001A ADC1_2_IRQHandler
  437. 291 0000001A CAN1_TX_IRQHandler
  438. 292 0000001A CAN1_RX0_IRQHandler
  439. 293 0000001A CAN1_RX1_IRQHandler
  440. 294 0000001A CAN1_SCE_IRQHandler
  441. 295 0000001A EXTI9_5_IRQHandler
  442. 296 0000001A TIM1_BRK_IRQHandler
  443. 297 0000001A TIM1_UP_IRQHandler
  444. 298 0000001A TIM1_TRG_COM_IRQHandler
  445. 299 0000001A TIM1_CC_IRQHandler
  446. 300 0000001A TIM2_IRQHandler
  447. 301 0000001A TIM3_IRQHandler
  448. 302 0000001A TIM4_IRQHandler
  449. 303 0000001A I2C1_EV_IRQHandler
  450. 304 0000001A I2C1_ER_IRQHandler
  451. 305 0000001A I2C2_EV_IRQHandler
  452. 306 0000001A I2C2_ER_IRQHandler
  453. 307 0000001A SPI1_IRQHandler
  454. 308 0000001A SPI2_IRQHandler
  455. 309 0000001A USART1_IRQHandler
  456. 310 0000001A USART2_IRQHandler
  457. 311 0000001A USART3_IRQHandler
  458. 312 0000001A EXTI15_10_IRQHandler
  459. 313 0000001A RTCAlarm_IRQHandler
  460. 314 0000001A OTG_FS_WKUP_IRQHandler
  461. 315 0000001A TIM5_IRQHandler
  462. 316 0000001A SPI3_IRQHandler
  463. 317 0000001A UART4_IRQHandler
  464. 318 0000001A UART5_IRQHandler
  465. 319 0000001A TIM6_IRQHandler
  466. 320 0000001A TIM7_IRQHandler
  467. 321 0000001A DMA2_Channel1_IRQHandler
  468. 322 0000001A DMA2_Channel2_IRQHandler
  469. 323 0000001A DMA2_Channel3_IRQHandler
  470. 324 0000001A DMA2_Channel4_IRQHandler
  471. 325 0000001A DMA2_Channel5_IRQHandler
  472. 326 0000001A ETH_IRQHandler
  473. 327 0000001A ETH_WKUP_IRQHandler
  474. ARM Macro Assembler Page 9
  475. 328 0000001A CAN2_TX_IRQHandler
  476. 329 0000001A CAN2_RX0_IRQHandler
  477. 330 0000001A CAN2_RX1_IRQHandler
  478. 331 0000001A CAN2_SCE_IRQHandler
  479. 332 0000001A OTG_FS_IRQHandler
  480. 333 0000001A
  481. 334 0000001A E7FE B .
  482. 335 0000001C
  483. 336 0000001C ENDP
  484. 337 0000001C
  485. 338 0000001C ALIGN
  486. 339 0000001C
  487. 340 0000001C ;*******************************************************
  488. ************************
  489. 341 0000001C ; User Stack and Heap initialization
  490. 342 0000001C ;*******************************************************
  491. ************************
  492. 343 0000001C IF :DEF:__MICROLIB
  493. 344 0000001C
  494. 345 0000001C EXPORT __initial_sp
  495. 346 0000001C EXPORT __heap_base
  496. 347 0000001C EXPORT __heap_limit
  497. 348 0000001C
  498. 349 0000001C ELSE
  499. 364 ENDIF
  500. 365 0000001C
  501. 366 0000001C END
  502. 00000000
  503. 00000000
  504. Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M3 --apcs=interw
  505. ork --depend=.\obj\output\startup_stm32f10x_cl.d -o.\obj\output\startup_stm32f1
  506. 0x_cl.o -ID:\Keil_v5\ARM\RV31\INC -ID:\Keil_v5\ARM\CMSIS\Include -ID:\Keil_v5\A
  507. RM\Inc\ST\STM32F10x --predefine="__RTX SETA 1" --predefine="__MICROLIB SETA 1"
  508. --predefine="__UVISION_VERSION SETA 517" --list=.\list\startup_stm32f10x_cl.lst
  509. ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10
  510. x_cl.s
  511. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  512. Relocatable symbols
  513. STACK 00000000
  514. Symbol: STACK
  515. Definitions
  516. At line 35 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  517. tup\arm\startup_stm32f10x_cl.s
  518. Uses
  519. None
  520. Comment: STACK unused
  521. Stack_Mem 00000000
  522. Symbol: Stack_Mem
  523. Definitions
  524. At line 36 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  525. tup\arm\startup_stm32f10x_cl.s
  526. Uses
  527. None
  528. Comment: Stack_Mem unused
  529. __initial_sp 00000400
  530. Symbol: __initial_sp
  531. Definitions
  532. At line 37 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  533. tup\arm\startup_stm32f10x_cl.s
  534. Uses
  535. At line 61 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  536. tup\arm\startup_stm32f10x_cl.s
  537. At line 345 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  538. rtup\arm\startup_stm32f10x_cl.s
  539. 3 symbols
  540. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  541. Relocatable symbols
  542. HEAP 00000000
  543. Symbol: HEAP
  544. Definitions
  545. At line 46 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  546. tup\arm\startup_stm32f10x_cl.s
  547. Uses
  548. None
  549. Comment: HEAP unused
  550. Heap_Mem 00000000
  551. Symbol: Heap_Mem
  552. Definitions
  553. At line 48 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  554. tup\arm\startup_stm32f10x_cl.s
  555. Uses
  556. None
  557. Comment: Heap_Mem unused
  558. __heap_base 00000000
  559. Symbol: __heap_base
  560. Definitions
  561. At line 47 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  562. tup\arm\startup_stm32f10x_cl.s
  563. Uses
  564. At line 346 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  565. rtup\arm\startup_stm32f10x_cl.s
  566. Comment: __heap_base used once
  567. __heap_limit 00000200
  568. Symbol: __heap_limit
  569. Definitions
  570. At line 49 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  571. tup\arm\startup_stm32f10x_cl.s
  572. Uses
  573. At line 347 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  574. rtup\arm\startup_stm32f10x_cl.s
  575. Comment: __heap_limit used once
  576. 4 symbols
  577. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  578. Relocatable symbols
  579. RESET 00000000
  580. Symbol: RESET
  581. Definitions
  582. At line 56 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  583. tup\arm\startup_stm32f10x_cl.s
  584. Uses
  585. None
  586. Comment: RESET unused
  587. __Vectors 00000000
  588. Symbol: __Vectors
  589. Definitions
  590. At line 61 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  591. tup\arm\startup_stm32f10x_cl.s
  592. Uses
  593. At line 57 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  594. tup\arm\startup_stm32f10x_cl.s
  595. At line 149 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  596. rtup\arm\startup_stm32f10x_cl.s
  597. __Vectors_End 00000150
  598. Symbol: __Vectors_End
  599. Definitions
  600. At line 147 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  601. rtup\arm\startup_stm32f10x_cl.s
  602. Uses
  603. At line 58 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  604. tup\arm\startup_stm32f10x_cl.s
  605. At line 149 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  606. rtup\arm\startup_stm32f10x_cl.s
  607. 3 symbols
  608. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  609. Relocatable symbols
  610. .text 00000000
  611. Symbol: .text
  612. Definitions
  613. At line 151 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  614. rtup\arm\startup_stm32f10x_cl.s
  615. Uses
  616. None
  617. Comment: .text unused
  618. ADC1_2_IRQHandler 0000001A
  619. Symbol: ADC1_2_IRQHandler
  620. Definitions
  621. At line 290 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  622. rtup\arm\startup_stm32f10x_cl.s
  623. Uses
  624. At line 97 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  625. tup\arm\startup_stm32f10x_cl.s
  626. At line 228 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  627. rtup\arm\startup_stm32f10x_cl.s
  628. BusFault_Handler 0000000E
  629. Symbol: BusFault_Handler
  630. Definitions
  631. At line 181 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  632. rtup\arm\startup_stm32f10x_cl.s
  633. Uses
  634. At line 66 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  635. tup\arm\startup_stm32f10x_cl.s
  636. At line 182 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  637. rtup\arm\startup_stm32f10x_cl.s
  638. CAN1_RX0_IRQHandler 0000001A
  639. Symbol: CAN1_RX0_IRQHandler
  640. Definitions
  641. At line 292 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  642. rtup\arm\startup_stm32f10x_cl.s
  643. Uses
  644. At line 99 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  645. tup\arm\startup_stm32f10x_cl.s
  646. At line 230 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  647. rtup\arm\startup_stm32f10x_cl.s
  648. CAN1_RX1_IRQHandler 0000001A
  649. Symbol: CAN1_RX1_IRQHandler
  650. Definitions
  651. At line 293 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  652. rtup\arm\startup_stm32f10x_cl.s
  653. Uses
  654. At line 100 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  655. rtup\arm\startup_stm32f10x_cl.s
  656. At line 231 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  657. rtup\arm\startup_stm32f10x_cl.s
  658. CAN1_SCE_IRQHandler 0000001A
  659. ARM Macro Assembler Page 2 Alphabetic symbol ordering
  660. Relocatable symbols
  661. Symbol: CAN1_SCE_IRQHandler
  662. Definitions
  663. At line 294 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  664. rtup\arm\startup_stm32f10x_cl.s
  665. Uses
  666. At line 101 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  667. rtup\arm\startup_stm32f10x_cl.s
  668. At line 232 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  669. rtup\arm\startup_stm32f10x_cl.s
  670. CAN1_TX_IRQHandler 0000001A
  671. Symbol: CAN1_TX_IRQHandler
  672. Definitions
  673. At line 291 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  674. rtup\arm\startup_stm32f10x_cl.s
  675. Uses
  676. At line 98 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  677. tup\arm\startup_stm32f10x_cl.s
  678. At line 229 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  679. rtup\arm\startup_stm32f10x_cl.s
  680. CAN2_RX0_IRQHandler 0000001A
  681. Symbol: CAN2_RX0_IRQHandler
  682. Definitions
  683. At line 329 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  684. rtup\arm\startup_stm32f10x_cl.s
  685. Uses
  686. At line 143 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  687. rtup\arm\startup_stm32f10x_cl.s
  688. At line 267 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  689. rtup\arm\startup_stm32f10x_cl.s
  690. CAN2_RX1_IRQHandler 0000001A
  691. Symbol: CAN2_RX1_IRQHandler
  692. Definitions
  693. At line 330 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  694. rtup\arm\startup_stm32f10x_cl.s
  695. Uses
  696. At line 144 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  697. rtup\arm\startup_stm32f10x_cl.s
  698. At line 268 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  699. rtup\arm\startup_stm32f10x_cl.s
  700. CAN2_SCE_IRQHandler 0000001A
  701. Symbol: CAN2_SCE_IRQHandler
  702. Definitions
  703. At line 331 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  704. rtup\arm\startup_stm32f10x_cl.s
  705. Uses
  706. At line 145 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  707. rtup\arm\startup_stm32f10x_cl.s
  708. At line 269 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  709. rtup\arm\startup_stm32f10x_cl.s
  710. CAN2_TX_IRQHandler 0000001A
  711. ARM Macro Assembler Page 3 Alphabetic symbol ordering
  712. Relocatable symbols
  713. Symbol: CAN2_TX_IRQHandler
  714. Definitions
  715. At line 328 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  716. rtup\arm\startup_stm32f10x_cl.s
  717. Uses
  718. At line 142 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  719. rtup\arm\startup_stm32f10x_cl.s
  720. At line 266 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  721. rtup\arm\startup_stm32f10x_cl.s
  722. DMA1_Channel1_IRQHandler 0000001A
  723. Symbol: DMA1_Channel1_IRQHandler
  724. Definitions
  725. At line 283 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  726. rtup\arm\startup_stm32f10x_cl.s
  727. Uses
  728. At line 90 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  729. tup\arm\startup_stm32f10x_cl.s
  730. At line 221 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  731. rtup\arm\startup_stm32f10x_cl.s
  732. DMA1_Channel2_IRQHandler 0000001A
  733. Symbol: DMA1_Channel2_IRQHandler
  734. Definitions
  735. At line 284 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  736. rtup\arm\startup_stm32f10x_cl.s
  737. Uses
  738. At line 91 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  739. tup\arm\startup_stm32f10x_cl.s
  740. At line 222 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  741. rtup\arm\startup_stm32f10x_cl.s
  742. DMA1_Channel3_IRQHandler 0000001A
  743. Symbol: DMA1_Channel3_IRQHandler
  744. Definitions
  745. At line 285 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  746. rtup\arm\startup_stm32f10x_cl.s
  747. Uses
  748. At line 92 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  749. tup\arm\startup_stm32f10x_cl.s
  750. At line 223 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  751. rtup\arm\startup_stm32f10x_cl.s
  752. DMA1_Channel4_IRQHandler 0000001A
  753. Symbol: DMA1_Channel4_IRQHandler
  754. Definitions
  755. At line 286 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  756. rtup\arm\startup_stm32f10x_cl.s
  757. Uses
  758. At line 93 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  759. tup\arm\startup_stm32f10x_cl.s
  760. At line 224 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  761. rtup\arm\startup_stm32f10x_cl.s
  762. ARM Macro Assembler Page 4 Alphabetic symbol ordering
  763. Relocatable symbols
  764. DMA1_Channel5_IRQHandler 0000001A
  765. Symbol: DMA1_Channel5_IRQHandler
  766. Definitions
  767. At line 287 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  768. rtup\arm\startup_stm32f10x_cl.s
  769. Uses
  770. At line 94 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  771. tup\arm\startup_stm32f10x_cl.s
  772. At line 225 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  773. rtup\arm\startup_stm32f10x_cl.s
  774. DMA1_Channel6_IRQHandler 0000001A
  775. Symbol: DMA1_Channel6_IRQHandler
  776. Definitions
  777. At line 288 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  778. rtup\arm\startup_stm32f10x_cl.s
  779. Uses
  780. At line 95 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  781. tup\arm\startup_stm32f10x_cl.s
  782. At line 226 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  783. rtup\arm\startup_stm32f10x_cl.s
  784. DMA1_Channel7_IRQHandler 0000001A
  785. Symbol: DMA1_Channel7_IRQHandler
  786. Definitions
  787. At line 289 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  788. rtup\arm\startup_stm32f10x_cl.s
  789. Uses
  790. At line 96 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  791. tup\arm\startup_stm32f10x_cl.s
  792. At line 227 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  793. rtup\arm\startup_stm32f10x_cl.s
  794. DMA2_Channel1_IRQHandler 0000001A
  795. Symbol: DMA2_Channel1_IRQHandler
  796. Definitions
  797. At line 321 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  798. rtup\arm\startup_stm32f10x_cl.s
  799. Uses
  800. At line 135 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  801. rtup\arm\startup_stm32f10x_cl.s
  802. At line 259 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  803. rtup\arm\startup_stm32f10x_cl.s
  804. DMA2_Channel2_IRQHandler 0000001A
  805. Symbol: DMA2_Channel2_IRQHandler
  806. Definitions
  807. At line 322 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  808. rtup\arm\startup_stm32f10x_cl.s
  809. Uses
  810. At line 136 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  811. rtup\arm\startup_stm32f10x_cl.s
  812. At line 260 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  813. rtup\arm\startup_stm32f10x_cl.s
  814. ARM Macro Assembler Page 5 Alphabetic symbol ordering
  815. Relocatable symbols
  816. DMA2_Channel3_IRQHandler 0000001A
  817. Symbol: DMA2_Channel3_IRQHandler
  818. Definitions
  819. At line 323 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  820. rtup\arm\startup_stm32f10x_cl.s
  821. Uses
  822. At line 137 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  823. rtup\arm\startup_stm32f10x_cl.s
  824. At line 261 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  825. rtup\arm\startup_stm32f10x_cl.s
  826. DMA2_Channel4_IRQHandler 0000001A
  827. Symbol: DMA2_Channel4_IRQHandler
  828. Definitions
  829. At line 324 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  830. rtup\arm\startup_stm32f10x_cl.s
  831. Uses
  832. At line 138 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  833. rtup\arm\startup_stm32f10x_cl.s
  834. At line 262 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  835. rtup\arm\startup_stm32f10x_cl.s
  836. DMA2_Channel5_IRQHandler 0000001A
  837. Symbol: DMA2_Channel5_IRQHandler
  838. Definitions
  839. At line 325 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  840. rtup\arm\startup_stm32f10x_cl.s
  841. Uses
  842. At line 139 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  843. rtup\arm\startup_stm32f10x_cl.s
  844. At line 263 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  845. rtup\arm\startup_stm32f10x_cl.s
  846. DebugMon_Handler 00000014
  847. Symbol: DebugMon_Handler
  848. Definitions
  849. At line 195 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  850. rtup\arm\startup_stm32f10x_cl.s
  851. Uses
  852. At line 73 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  853. tup\arm\startup_stm32f10x_cl.s
  854. At line 196 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  855. rtup\arm\startup_stm32f10x_cl.s
  856. Default_Handler 0000001A
  857. Symbol: Default_Handler
  858. Definitions
  859. At line 208 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  860. rtup\arm\startup_stm32f10x_cl.s
  861. Uses
  862. None
  863. Comment: Default_Handler unused
  864. ETH_IRQHandler 0000001A
  865. ARM Macro Assembler Page 6 Alphabetic symbol ordering
  866. Relocatable symbols
  867. Symbol: ETH_IRQHandler
  868. Definitions
  869. At line 326 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  870. rtup\arm\startup_stm32f10x_cl.s
  871. Uses
  872. At line 140 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  873. rtup\arm\startup_stm32f10x_cl.s
  874. At line 264 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  875. rtup\arm\startup_stm32f10x_cl.s
  876. ETH_WKUP_IRQHandler 0000001A
  877. Symbol: ETH_WKUP_IRQHandler
  878. Definitions
  879. At line 327 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  880. rtup\arm\startup_stm32f10x_cl.s
  881. Uses
  882. At line 141 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  883. rtup\arm\startup_stm32f10x_cl.s
  884. At line 265 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  885. rtup\arm\startup_stm32f10x_cl.s
  886. EXTI0_IRQHandler 0000001A
  887. Symbol: EXTI0_IRQHandler
  888. Definitions
  889. At line 278 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  890. rtup\arm\startup_stm32f10x_cl.s
  891. Uses
  892. At line 85 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  893. tup\arm\startup_stm32f10x_cl.s
  894. At line 216 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  895. rtup\arm\startup_stm32f10x_cl.s
  896. EXTI15_10_IRQHandler 0000001A
  897. Symbol: EXTI15_10_IRQHandler
  898. Definitions
  899. At line 312 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  900. rtup\arm\startup_stm32f10x_cl.s
  901. Uses
  902. At line 119 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  903. rtup\arm\startup_stm32f10x_cl.s
  904. At line 250 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  905. rtup\arm\startup_stm32f10x_cl.s
  906. EXTI1_IRQHandler 0000001A
  907. Symbol: EXTI1_IRQHandler
  908. Definitions
  909. At line 279 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  910. rtup\arm\startup_stm32f10x_cl.s
  911. Uses
  912. At line 86 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  913. tup\arm\startup_stm32f10x_cl.s
  914. At line 217 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  915. rtup\arm\startup_stm32f10x_cl.s
  916. ARM Macro Assembler Page 7 Alphabetic symbol ordering
  917. Relocatable symbols
  918. EXTI2_IRQHandler 0000001A
  919. Symbol: EXTI2_IRQHandler
  920. Definitions
  921. At line 280 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  922. rtup\arm\startup_stm32f10x_cl.s
  923. Uses
  924. At line 87 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  925. tup\arm\startup_stm32f10x_cl.s
  926. At line 218 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  927. rtup\arm\startup_stm32f10x_cl.s
  928. EXTI3_IRQHandler 0000001A
  929. Symbol: EXTI3_IRQHandler
  930. Definitions
  931. At line 281 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  932. rtup\arm\startup_stm32f10x_cl.s
  933. Uses
  934. At line 88 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  935. tup\arm\startup_stm32f10x_cl.s
  936. At line 219 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  937. rtup\arm\startup_stm32f10x_cl.s
  938. EXTI4_IRQHandler 0000001A
  939. Symbol: EXTI4_IRQHandler
  940. Definitions
  941. At line 282 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  942. rtup\arm\startup_stm32f10x_cl.s
  943. Uses
  944. At line 89 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  945. tup\arm\startup_stm32f10x_cl.s
  946. At line 220 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  947. rtup\arm\startup_stm32f10x_cl.s
  948. EXTI9_5_IRQHandler 0000001A
  949. Symbol: EXTI9_5_IRQHandler
  950. Definitions
  951. At line 295 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  952. rtup\arm\startup_stm32f10x_cl.s
  953. Uses
  954. At line 102 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  955. rtup\arm\startup_stm32f10x_cl.s
  956. At line 233 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  957. rtup\arm\startup_stm32f10x_cl.s
  958. FLASH_IRQHandler 0000001A
  959. Symbol: FLASH_IRQHandler
  960. Definitions
  961. At line 276 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  962. rtup\arm\startup_stm32f10x_cl.s
  963. Uses
  964. At line 83 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  965. tup\arm\startup_stm32f10x_cl.s
  966. At line 214 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  967. rtup\arm\startup_stm32f10x_cl.s
  968. ARM Macro Assembler Page 8 Alphabetic symbol ordering
  969. Relocatable symbols
  970. HardFault_Handler 0000000A
  971. Symbol: HardFault_Handler
  972. Definitions
  973. At line 171 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  974. rtup\arm\startup_stm32f10x_cl.s
  975. Uses
  976. At line 64 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  977. tup\arm\startup_stm32f10x_cl.s
  978. At line 172 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  979. rtup\arm\startup_stm32f10x_cl.s
  980. I2C1_ER_IRQHandler 0000001A
  981. Symbol: I2C1_ER_IRQHandler
  982. Definitions
  983. At line 304 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  984. rtup\arm\startup_stm32f10x_cl.s
  985. Uses
  986. At line 111 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  987. rtup\arm\startup_stm32f10x_cl.s
  988. At line 242 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  989. rtup\arm\startup_stm32f10x_cl.s
  990. I2C1_EV_IRQHandler 0000001A
  991. Symbol: I2C1_EV_IRQHandler
  992. Definitions
  993. At line 303 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  994. rtup\arm\startup_stm32f10x_cl.s
  995. Uses
  996. At line 110 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  997. rtup\arm\startup_stm32f10x_cl.s
  998. At line 241 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  999. rtup\arm\startup_stm32f10x_cl.s
  1000. I2C2_ER_IRQHandler 0000001A
  1001. Symbol: I2C2_ER_IRQHandler
  1002. Definitions
  1003. At line 306 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1004. rtup\arm\startup_stm32f10x_cl.s
  1005. Uses
  1006. At line 113 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1007. rtup\arm\startup_stm32f10x_cl.s
  1008. At line 244 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1009. rtup\arm\startup_stm32f10x_cl.s
  1010. I2C2_EV_IRQHandler 0000001A
  1011. Symbol: I2C2_EV_IRQHandler
  1012. Definitions
  1013. At line 305 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1014. rtup\arm\startup_stm32f10x_cl.s
  1015. Uses
  1016. At line 112 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1017. rtup\arm\startup_stm32f10x_cl.s
  1018. At line 243 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1019. ARM Macro Assembler Page 9 Alphabetic symbol ordering
  1020. Relocatable symbols
  1021. rtup\arm\startup_stm32f10x_cl.s
  1022. MemManage_Handler 0000000C
  1023. Symbol: MemManage_Handler
  1024. Definitions
  1025. At line 176 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1026. rtup\arm\startup_stm32f10x_cl.s
  1027. Uses
  1028. At line 65 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1029. tup\arm\startup_stm32f10x_cl.s
  1030. At line 177 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1031. rtup\arm\startup_stm32f10x_cl.s
  1032. NMI_Handler 00000008
  1033. Symbol: NMI_Handler
  1034. Definitions
  1035. At line 166 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1036. rtup\arm\startup_stm32f10x_cl.s
  1037. Uses
  1038. At line 63 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1039. tup\arm\startup_stm32f10x_cl.s
  1040. At line 167 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1041. rtup\arm\startup_stm32f10x_cl.s
  1042. OTG_FS_IRQHandler 0000001A
  1043. Symbol: OTG_FS_IRQHandler
  1044. Definitions
  1045. At line 332 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1046. rtup\arm\startup_stm32f10x_cl.s
  1047. Uses
  1048. At line 146 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1049. rtup\arm\startup_stm32f10x_cl.s
  1050. At line 270 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1051. rtup\arm\startup_stm32f10x_cl.s
  1052. OTG_FS_WKUP_IRQHandler 0000001A
  1053. Symbol: OTG_FS_WKUP_IRQHandler
  1054. Definitions
  1055. At line 314 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1056. rtup\arm\startup_stm32f10x_cl.s
  1057. Uses
  1058. At line 121 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1059. rtup\arm\startup_stm32f10x_cl.s
  1060. At line 252 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1061. rtup\arm\startup_stm32f10x_cl.s
  1062. PVD_IRQHandler 0000001A
  1063. Symbol: PVD_IRQHandler
  1064. Definitions
  1065. At line 273 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1066. rtup\arm\startup_stm32f10x_cl.s
  1067. Uses
  1068. At line 80 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1069. tup\arm\startup_stm32f10x_cl.s
  1070. ARM Macro Assembler Page 10 Alphabetic symbol ordering
  1071. Relocatable symbols
  1072. At line 211 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1073. rtup\arm\startup_stm32f10x_cl.s
  1074. PendSV_Handler 00000016
  1075. Symbol: PendSV_Handler
  1076. Definitions
  1077. At line 199 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1078. rtup\arm\startup_stm32f10x_cl.s
  1079. Uses
  1080. At line 75 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1081. tup\arm\startup_stm32f10x_cl.s
  1082. At line 200 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1083. rtup\arm\startup_stm32f10x_cl.s
  1084. RCC_IRQHandler 0000001A
  1085. Symbol: RCC_IRQHandler
  1086. Definitions
  1087. At line 277 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1088. rtup\arm\startup_stm32f10x_cl.s
  1089. Uses
  1090. At line 84 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1091. tup\arm\startup_stm32f10x_cl.s
  1092. At line 215 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1093. rtup\arm\startup_stm32f10x_cl.s
  1094. RTCAlarm_IRQHandler 0000001A
  1095. Symbol: RTCAlarm_IRQHandler
  1096. Definitions
  1097. At line 313 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1098. rtup\arm\startup_stm32f10x_cl.s
  1099. Uses
  1100. At line 120 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1101. rtup\arm\startup_stm32f10x_cl.s
  1102. At line 251 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1103. rtup\arm\startup_stm32f10x_cl.s
  1104. RTC_IRQHandler 0000001A
  1105. Symbol: RTC_IRQHandler
  1106. Definitions
  1107. At line 275 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1108. rtup\arm\startup_stm32f10x_cl.s
  1109. Uses
  1110. At line 82 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1111. tup\arm\startup_stm32f10x_cl.s
  1112. At line 213 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1113. rtup\arm\startup_stm32f10x_cl.s
  1114. Reset_Handler 00000000
  1115. Symbol: Reset_Handler
  1116. Definitions
  1117. At line 154 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1118. rtup\arm\startup_stm32f10x_cl.s
  1119. Uses
  1120. At line 62 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1121. ARM Macro Assembler Page 11 Alphabetic symbol ordering
  1122. Relocatable symbols
  1123. tup\arm\startup_stm32f10x_cl.s
  1124. At line 155 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1125. rtup\arm\startup_stm32f10x_cl.s
  1126. SPI1_IRQHandler 0000001A
  1127. Symbol: SPI1_IRQHandler
  1128. Definitions
  1129. At line 307 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1130. rtup\arm\startup_stm32f10x_cl.s
  1131. Uses
  1132. At line 114 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1133. rtup\arm\startup_stm32f10x_cl.s
  1134. At line 245 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1135. rtup\arm\startup_stm32f10x_cl.s
  1136. SPI2_IRQHandler 0000001A
  1137. Symbol: SPI2_IRQHandler
  1138. Definitions
  1139. At line 308 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1140. rtup\arm\startup_stm32f10x_cl.s
  1141. Uses
  1142. At line 115 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1143. rtup\arm\startup_stm32f10x_cl.s
  1144. At line 246 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1145. rtup\arm\startup_stm32f10x_cl.s
  1146. SPI3_IRQHandler 0000001A
  1147. Symbol: SPI3_IRQHandler
  1148. Definitions
  1149. At line 316 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1150. rtup\arm\startup_stm32f10x_cl.s
  1151. Uses
  1152. At line 130 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1153. rtup\arm\startup_stm32f10x_cl.s
  1154. At line 254 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1155. rtup\arm\startup_stm32f10x_cl.s
  1156. SVC_Handler 00000012
  1157. Symbol: SVC_Handler
  1158. Definitions
  1159. At line 190 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1160. rtup\arm\startup_stm32f10x_cl.s
  1161. Uses
  1162. At line 72 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1163. tup\arm\startup_stm32f10x_cl.s
  1164. At line 191 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1165. rtup\arm\startup_stm32f10x_cl.s
  1166. SysTick_Handler 00000018
  1167. Symbol: SysTick_Handler
  1168. Definitions
  1169. At line 203 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1170. rtup\arm\startup_stm32f10x_cl.s
  1171. Uses
  1172. ARM Macro Assembler Page 12 Alphabetic symbol ordering
  1173. Relocatable symbols
  1174. At line 76 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1175. tup\arm\startup_stm32f10x_cl.s
  1176. At line 204 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1177. rtup\arm\startup_stm32f10x_cl.s
  1178. TAMPER_IRQHandler 0000001A
  1179. Symbol: TAMPER_IRQHandler
  1180. Definitions
  1181. At line 274 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1182. rtup\arm\startup_stm32f10x_cl.s
  1183. Uses
  1184. At line 81 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1185. tup\arm\startup_stm32f10x_cl.s
  1186. At line 212 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1187. rtup\arm\startup_stm32f10x_cl.s
  1188. TIM1_BRK_IRQHandler 0000001A
  1189. Symbol: TIM1_BRK_IRQHandler
  1190. Definitions
  1191. At line 296 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1192. rtup\arm\startup_stm32f10x_cl.s
  1193. Uses
  1194. At line 103 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1195. rtup\arm\startup_stm32f10x_cl.s
  1196. At line 234 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1197. rtup\arm\startup_stm32f10x_cl.s
  1198. TIM1_CC_IRQHandler 0000001A
  1199. Symbol: TIM1_CC_IRQHandler
  1200. Definitions
  1201. At line 299 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1202. rtup\arm\startup_stm32f10x_cl.s
  1203. Uses
  1204. At line 106 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1205. rtup\arm\startup_stm32f10x_cl.s
  1206. At line 237 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1207. rtup\arm\startup_stm32f10x_cl.s
  1208. TIM1_TRG_COM_IRQHandler 0000001A
  1209. Symbol: TIM1_TRG_COM_IRQHandler
  1210. Definitions
  1211. At line 298 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1212. rtup\arm\startup_stm32f10x_cl.s
  1213. Uses
  1214. At line 105 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1215. rtup\arm\startup_stm32f10x_cl.s
  1216. At line 236 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1217. rtup\arm\startup_stm32f10x_cl.s
  1218. TIM1_UP_IRQHandler 0000001A
  1219. Symbol: TIM1_UP_IRQHandler
  1220. Definitions
  1221. At line 297 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1222. rtup\arm\startup_stm32f10x_cl.s
  1223. ARM Macro Assembler Page 13 Alphabetic symbol ordering
  1224. Relocatable symbols
  1225. Uses
  1226. At line 104 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1227. rtup\arm\startup_stm32f10x_cl.s
  1228. At line 235 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1229. rtup\arm\startup_stm32f10x_cl.s
  1230. TIM2_IRQHandler 0000001A
  1231. Symbol: TIM2_IRQHandler
  1232. Definitions
  1233. At line 300 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1234. rtup\arm\startup_stm32f10x_cl.s
  1235. Uses
  1236. At line 107 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1237. rtup\arm\startup_stm32f10x_cl.s
  1238. At line 238 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1239. rtup\arm\startup_stm32f10x_cl.s
  1240. TIM3_IRQHandler 0000001A
  1241. Symbol: TIM3_IRQHandler
  1242. Definitions
  1243. At line 301 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1244. rtup\arm\startup_stm32f10x_cl.s
  1245. Uses
  1246. At line 108 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1247. rtup\arm\startup_stm32f10x_cl.s
  1248. At line 239 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1249. rtup\arm\startup_stm32f10x_cl.s
  1250. TIM4_IRQHandler 0000001A
  1251. Symbol: TIM4_IRQHandler
  1252. Definitions
  1253. At line 302 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1254. rtup\arm\startup_stm32f10x_cl.s
  1255. Uses
  1256. At line 109 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1257. rtup\arm\startup_stm32f10x_cl.s
  1258. At line 240 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1259. rtup\arm\startup_stm32f10x_cl.s
  1260. TIM5_IRQHandler 0000001A
  1261. Symbol: TIM5_IRQHandler
  1262. Definitions
  1263. At line 315 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1264. rtup\arm\startup_stm32f10x_cl.s
  1265. Uses
  1266. At line 129 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1267. rtup\arm\startup_stm32f10x_cl.s
  1268. At line 253 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1269. rtup\arm\startup_stm32f10x_cl.s
  1270. TIM6_IRQHandler 0000001A
  1271. Symbol: TIM6_IRQHandler
  1272. Definitions
  1273. At line 319 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1274. ARM Macro Assembler Page 14 Alphabetic symbol ordering
  1275. Relocatable symbols
  1276. rtup\arm\startup_stm32f10x_cl.s
  1277. Uses
  1278. At line 133 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1279. rtup\arm\startup_stm32f10x_cl.s
  1280. At line 257 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1281. rtup\arm\startup_stm32f10x_cl.s
  1282. TIM7_IRQHandler 0000001A
  1283. Symbol: TIM7_IRQHandler
  1284. Definitions
  1285. At line 320 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1286. rtup\arm\startup_stm32f10x_cl.s
  1287. Uses
  1288. At line 134 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1289. rtup\arm\startup_stm32f10x_cl.s
  1290. At line 258 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1291. rtup\arm\startup_stm32f10x_cl.s
  1292. UART4_IRQHandler 0000001A
  1293. Symbol: UART4_IRQHandler
  1294. Definitions
  1295. At line 317 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1296. rtup\arm\startup_stm32f10x_cl.s
  1297. Uses
  1298. At line 131 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1299. rtup\arm\startup_stm32f10x_cl.s
  1300. At line 255 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1301. rtup\arm\startup_stm32f10x_cl.s
  1302. UART5_IRQHandler 0000001A
  1303. Symbol: UART5_IRQHandler
  1304. Definitions
  1305. At line 318 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1306. rtup\arm\startup_stm32f10x_cl.s
  1307. Uses
  1308. At line 132 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1309. rtup\arm\startup_stm32f10x_cl.s
  1310. At line 256 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1311. rtup\arm\startup_stm32f10x_cl.s
  1312. USART1_IRQHandler 0000001A
  1313. Symbol: USART1_IRQHandler
  1314. Definitions
  1315. At line 309 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1316. rtup\arm\startup_stm32f10x_cl.s
  1317. Uses
  1318. At line 116 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1319. rtup\arm\startup_stm32f10x_cl.s
  1320. At line 247 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1321. rtup\arm\startup_stm32f10x_cl.s
  1322. USART2_IRQHandler 0000001A
  1323. Symbol: USART2_IRQHandler
  1324. Definitions
  1325. ARM Macro Assembler Page 15 Alphabetic symbol ordering
  1326. Relocatable symbols
  1327. At line 310 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1328. rtup\arm\startup_stm32f10x_cl.s
  1329. Uses
  1330. At line 117 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1331. rtup\arm\startup_stm32f10x_cl.s
  1332. At line 248 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1333. rtup\arm\startup_stm32f10x_cl.s
  1334. USART3_IRQHandler 0000001A
  1335. Symbol: USART3_IRQHandler
  1336. Definitions
  1337. At line 311 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1338. rtup\arm\startup_stm32f10x_cl.s
  1339. Uses
  1340. At line 118 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1341. rtup\arm\startup_stm32f10x_cl.s
  1342. At line 249 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1343. rtup\arm\startup_stm32f10x_cl.s
  1344. UsageFault_Handler 00000010
  1345. Symbol: UsageFault_Handler
  1346. Definitions
  1347. At line 186 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1348. rtup\arm\startup_stm32f10x_cl.s
  1349. Uses
  1350. At line 67 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1351. tup\arm\startup_stm32f10x_cl.s
  1352. At line 187 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1353. rtup\arm\startup_stm32f10x_cl.s
  1354. WWDG_IRQHandler 0000001A
  1355. Symbol: WWDG_IRQHandler
  1356. Definitions
  1357. At line 272 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1358. rtup\arm\startup_stm32f10x_cl.s
  1359. Uses
  1360. At line 79 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1361. tup\arm\startup_stm32f10x_cl.s
  1362. At line 210 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1363. rtup\arm\startup_stm32f10x_cl.s
  1364. 73 symbols
  1365. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  1366. Absolute symbols
  1367. Heap_Size 00000200
  1368. Symbol: Heap_Size
  1369. Definitions
  1370. At line 44 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1371. tup\arm\startup_stm32f10x_cl.s
  1372. Uses
  1373. At line 48 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1374. tup\arm\startup_stm32f10x_cl.s
  1375. Comment: Heap_Size used once
  1376. Stack_Size 00000400
  1377. Symbol: Stack_Size
  1378. Definitions
  1379. At line 33 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1380. tup\arm\startup_stm32f10x_cl.s
  1381. Uses
  1382. At line 36 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1383. tup\arm\startup_stm32f10x_cl.s
  1384. Comment: Stack_Size used once
  1385. __Vectors_Size 00000150
  1386. Symbol: __Vectors_Size
  1387. Definitions
  1388. At line 149 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1389. rtup\arm\startup_stm32f10x_cl.s
  1390. Uses
  1391. At line 59 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\star
  1392. tup\arm\startup_stm32f10x_cl.s
  1393. Comment: __Vectors_Size used once
  1394. 3 symbols
  1395. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  1396. External symbols
  1397. SystemInit 00000000
  1398. Symbol: SystemInit
  1399. Definitions
  1400. At line 156 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1401. rtup\arm\startup_stm32f10x_cl.s
  1402. Uses
  1403. At line 158 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1404. rtup\arm\startup_stm32f10x_cl.s
  1405. Comment: SystemInit used once
  1406. __main 00000000
  1407. Symbol: __main
  1408. Definitions
  1409. At line 157 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1410. rtup\arm\startup_stm32f10x_cl.s
  1411. Uses
  1412. At line 160 in file ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\sta
  1413. rtup\arm\startup_stm32f10x_cl.s
  1414. Comment: __main used once
  1415. 2 symbols
  1416. 423 symbols in table