startup_stm32f407xx.lst 68 KB

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