startup_stm32f10x_hd.lst 61 KB

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