startup_stm32f722xx.s 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. ;/******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
  2. ;* File Name : startup_stm32f722xx.s
  3. ;* Author : MCD Application Team
  4. ;* Description : STM32F722xx devices vector table for EWARM toolchain.
  5. ;* This module performs:
  6. ;* - Set the initial SP
  7. ;* - Set the initial PC == _iar_program_start,
  8. ;* - Set the vector table entries with the exceptions ISR
  9. ;* address.
  10. ;* - Branches to main in the C library (which eventually
  11. ;* calls main()).
  12. ;* After Reset the Cortex-M7 processor is in Thread mode,
  13. ;* priority is Privileged, and the Stack is set to Main.
  14. ;********************************************************************************
  15. ;*
  16. ;* Redistribution and use in source and binary forms, with or without modification,
  17. ;* are permitted provided that the following conditions are met:
  18. ;* 1. Redistributions of source code must retain the above copyright notice,
  19. ;* this list of conditions and the following disclaimer.
  20. ;* 2. Redistributions in binary form must reproduce the above copyright notice,
  21. ;* this list of conditions and the following disclaimer in the documentation
  22. ;* and/or other materials provided with the distribution.
  23. ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
  24. ;* may be used to endorse or promote products derived from this software
  25. ;* without specific prior written permission.
  26. ;*
  27. ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  28. ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29. ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  30. ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  31. ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32. ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  33. ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  34. ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  35. ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  36. ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  37. ;*
  38. ;*******************************************************************************
  39. ;
  40. ;
  41. ; The modules in this file are included in the libraries, and may be replaced
  42. ; by any user-defined modules that define the PUBLIC symbol _program_start or
  43. ; a user defined start symbol.
  44. ; To override the cstartup defined in the library, simply add your modified
  45. ; version to the workbench project.
  46. ;
  47. ; The vector table is normally located at address 0.
  48. ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
  49. ; The name "__vector_table" has special meaning for C-SPY:
  50. ; it is where the SP start value is found, and the NVIC vector
  51. ; table register (VTOR) is initialized to this address if != 0.
  52. ;
  53. ; Cortex-M version
  54. ;
  55. MODULE ?cstartup
  56. ;; Forward declaration of sections.
  57. SECTION CSTACK:DATA:NOROOT(3)
  58. SECTION .intvec:CODE:NOROOT(2)
  59. EXTERN __iar_program_start
  60. EXTERN SystemInit
  61. PUBLIC __vector_table
  62. DATA
  63. __vector_table
  64. DCD sfe(CSTACK)
  65. DCD Reset_Handler ; Reset Handler
  66. DCD NMI_Handler ; NMI Handler
  67. DCD HardFault_Handler ; Hard Fault Handler
  68. DCD MemManage_Handler ; MPU Fault Handler
  69. DCD BusFault_Handler ; Bus Fault Handler
  70. DCD UsageFault_Handler ; Usage Fault Handler
  71. DCD 0 ; Reserved
  72. DCD 0 ; Reserved
  73. DCD 0 ; Reserved
  74. DCD 0 ; Reserved
  75. DCD SVC_Handler ; SVCall Handler
  76. DCD DebugMon_Handler ; Debug Monitor Handler
  77. DCD 0 ; Reserved
  78. DCD PendSV_Handler ; PendSV Handler
  79. DCD SysTick_Handler ; SysTick Handler
  80. ; External Interrupts
  81. DCD WWDG_IRQHandler ; Window WatchDog
  82. DCD PVD_IRQHandler ; PVD through EXTI Line detection
  83. DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
  84. DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
  85. DCD FLASH_IRQHandler ; FLASH
  86. DCD RCC_IRQHandler ; RCC
  87. DCD EXTI0_IRQHandler ; EXTI Line0
  88. DCD EXTI1_IRQHandler ; EXTI Line1
  89. DCD EXTI2_IRQHandler ; EXTI Line2
  90. DCD EXTI3_IRQHandler ; EXTI Line3
  91. DCD EXTI4_IRQHandler ; EXTI Line4
  92. DCD DMA1_Stream0_IRQHandler ; DMA1 Stream 0
  93. DCD DMA1_Stream1_IRQHandler ; DMA1 Stream 1
  94. DCD DMA1_Stream2_IRQHandler ; DMA1 Stream 2
  95. DCD DMA1_Stream3_IRQHandler ; DMA1 Stream 3
  96. DCD DMA1_Stream4_IRQHandler ; DMA1 Stream 4
  97. DCD DMA1_Stream5_IRQHandler ; DMA1 Stream 5
  98. DCD DMA1_Stream6_IRQHandler ; DMA1 Stream 6
  99. DCD ADC_IRQHandler ; ADC1, ADC2 and ADC3s
  100. DCD CAN1_TX_IRQHandler ; CAN1 TX
  101. DCD CAN1_RX0_IRQHandler ; CAN1 RX0
  102. DCD CAN1_RX1_IRQHandler ; CAN1 RX1
  103. DCD CAN1_SCE_IRQHandler ; CAN1 SCE
  104. DCD EXTI9_5_IRQHandler ; External Line[9:5]s
  105. DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9
  106. DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10
  107. DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11
  108. DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
  109. DCD TIM2_IRQHandler ; TIM2
  110. DCD TIM3_IRQHandler ; TIM3
  111. DCD TIM4_IRQHandler ; TIM4
  112. DCD I2C1_EV_IRQHandler ; I2C1 Event
  113. DCD I2C1_ER_IRQHandler ; I2C1 Error
  114. DCD I2C2_EV_IRQHandler ; I2C2 Event
  115. DCD I2C2_ER_IRQHandler ; I2C2 Error
  116. DCD SPI1_IRQHandler ; SPI1
  117. DCD SPI2_IRQHandler ; SPI2
  118. DCD USART1_IRQHandler ; USART1
  119. DCD USART2_IRQHandler ; USART2
  120. DCD USART3_IRQHandler ; USART3
  121. DCD EXTI15_10_IRQHandler ; External Line[15:10]s
  122. DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
  123. DCD OTG_FS_WKUP_IRQHandler ; USB OTG FS Wakeup through EXTI line
  124. DCD TIM8_BRK_TIM12_IRQHandler ; TIM8 Break and TIM12
  125. DCD TIM8_UP_TIM13_IRQHandler ; TIM8 Update and TIM13
  126. DCD TIM8_TRG_COM_TIM14_IRQHandler ; TIM8 Trigger and Commutation and TIM14
  127. DCD TIM8_CC_IRQHandler ; TIM8 Capture Compare
  128. DCD DMA1_Stream7_IRQHandler ; DMA1 Stream7
  129. DCD FMC_IRQHandler ; FMC
  130. DCD SDMMC1_IRQHandler ; SDMMC1
  131. DCD TIM5_IRQHandler ; TIM5
  132. DCD SPI3_IRQHandler ; SPI3
  133. DCD UART4_IRQHandler ; UART4
  134. DCD UART5_IRQHandler ; UART5
  135. DCD TIM6_DAC_IRQHandler ; TIM6 and DAC1&2 underrun errors
  136. DCD TIM7_IRQHandler ; TIM7
  137. DCD DMA2_Stream0_IRQHandler ; DMA2 Stream 0
  138. DCD DMA2_Stream1_IRQHandler ; DMA2 Stream 1
  139. DCD DMA2_Stream2_IRQHandler ; DMA2 Stream 2
  140. DCD DMA2_Stream3_IRQHandler ; DMA2 Stream 3
  141. DCD DMA2_Stream4_IRQHandler ; DMA2 Stream 4
  142. DCD 0 ; Reserved
  143. DCD 0 ; Reserved
  144. DCD 0 ; Reserved
  145. DCD 0 ; Reserved
  146. DCD 0 ; Reserved
  147. DCD 0 ; Reserved
  148. DCD OTG_FS_IRQHandler ; USB OTG FS
  149. DCD DMA2_Stream5_IRQHandler ; DMA2 Stream 5
  150. DCD DMA2_Stream6_IRQHandler ; DMA2 Stream 6
  151. DCD DMA2_Stream7_IRQHandler ; DMA2 Stream 7
  152. DCD USART6_IRQHandler ; USART6
  153. DCD I2C3_EV_IRQHandler ; I2C3 event
  154. DCD I2C3_ER_IRQHandler ; I2C3 error
  155. DCD OTG_HS_EP1_OUT_IRQHandler ; USB OTG HS End Point 1 Out
  156. DCD OTG_HS_EP1_IN_IRQHandler ; USB OTG HS End Point 1 In
  157. DCD OTG_HS_WKUP_IRQHandler ; USB OTG HS Wakeup through EXTI
  158. DCD OTG_HS_IRQHandler ; USB OTG HS
  159. DCD 0 ; Reserved
  160. DCD 0 ; Reserved
  161. DCD RNG_IRQHandler ; RNG
  162. DCD FPU_IRQHandler ; FPU
  163. DCD UART7_IRQHandler ; UART7
  164. DCD UART8_IRQHandler ; UART8
  165. DCD SPI4_IRQHandler ; SPI4
  166. DCD SPI5_IRQHandler ; SPI5
  167. DCD 0 ; Reserved
  168. DCD SAI1_IRQHandler ; SAI1
  169. DCD 0 ; Reserved
  170. DCD 0 ; Reserved
  171. DCD 0 ; Reserved
  172. DCD SAI2_IRQHandler ; SAI2
  173. DCD QUADSPI_IRQHandler ; QUADSPI
  174. DCD LPTIM1_IRQHandler ; LPTIM1
  175. DCD 0 ; Reserved
  176. DCD 0 ; Reserved
  177. DCD 0 ; Reserved
  178. DCD 0 ; Reserved
  179. DCD 0 ; Reserved
  180. DCD 0 ; Reserved
  181. DCD 0 ; Reserved
  182. DCD 0 ; Reserved
  183. DCD 0 ; Reserved
  184. DCD SDMMC2_IRQHandler ; SDMMC2
  185. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  186. ;;
  187. ;; Default interrupt handlers.
  188. ;;
  189. THUMB
  190. PUBWEAK Reset_Handler
  191. SECTION .text:CODE:NOROOT:REORDER(2)
  192. Reset_Handler
  193. LDR R0, =SystemInit
  194. BLX R0
  195. LDR R0, =__iar_program_start
  196. BX R0
  197. PUBWEAK NMI_Handler
  198. SECTION .text:CODE:NOROOT:REORDER(1)
  199. NMI_Handler
  200. B NMI_Handler
  201. PUBWEAK HardFault_Handler
  202. SECTION .text:CODE:NOROOT:REORDER(1)
  203. HardFault_Handler
  204. B HardFault_Handler
  205. PUBWEAK MemManage_Handler
  206. SECTION .text:CODE:NOROOT:REORDER(1)
  207. MemManage_Handler
  208. B MemManage_Handler
  209. PUBWEAK BusFault_Handler
  210. SECTION .text:CODE:NOROOT:REORDER(1)
  211. BusFault_Handler
  212. B BusFault_Handler
  213. PUBWEAK UsageFault_Handler
  214. SECTION .text:CODE:NOROOT:REORDER(1)
  215. UsageFault_Handler
  216. B UsageFault_Handler
  217. PUBWEAK SVC_Handler
  218. SECTION .text:CODE:NOROOT:REORDER(1)
  219. SVC_Handler
  220. B SVC_Handler
  221. PUBWEAK DebugMon_Handler
  222. SECTION .text:CODE:NOROOT:REORDER(1)
  223. DebugMon_Handler
  224. B DebugMon_Handler
  225. PUBWEAK PendSV_Handler
  226. SECTION .text:CODE:NOROOT:REORDER(1)
  227. PendSV_Handler
  228. B PendSV_Handler
  229. PUBWEAK SysTick_Handler
  230. SECTION .text:CODE:NOROOT:REORDER(1)
  231. SysTick_Handler
  232. B SysTick_Handler
  233. PUBWEAK WWDG_IRQHandler
  234. SECTION .text:CODE:NOROOT:REORDER(1)
  235. WWDG_IRQHandler
  236. B WWDG_IRQHandler
  237. PUBWEAK PVD_IRQHandler
  238. SECTION .text:CODE:NOROOT:REORDER(1)
  239. PVD_IRQHandler
  240. B PVD_IRQHandler
  241. PUBWEAK TAMP_STAMP_IRQHandler
  242. SECTION .text:CODE:NOROOT:REORDER(1)
  243. TAMP_STAMP_IRQHandler
  244. B TAMP_STAMP_IRQHandler
  245. PUBWEAK RTC_WKUP_IRQHandler
  246. SECTION .text:CODE:NOROOT:REORDER(1)
  247. RTC_WKUP_IRQHandler
  248. B RTC_WKUP_IRQHandler
  249. PUBWEAK FLASH_IRQHandler
  250. SECTION .text:CODE:NOROOT:REORDER(1)
  251. FLASH_IRQHandler
  252. B FLASH_IRQHandler
  253. PUBWEAK RCC_IRQHandler
  254. SECTION .text:CODE:NOROOT:REORDER(1)
  255. RCC_IRQHandler
  256. B RCC_IRQHandler
  257. PUBWEAK EXTI0_IRQHandler
  258. SECTION .text:CODE:NOROOT:REORDER(1)
  259. EXTI0_IRQHandler
  260. B EXTI0_IRQHandler
  261. PUBWEAK EXTI1_IRQHandler
  262. SECTION .text:CODE:NOROOT:REORDER(1)
  263. EXTI1_IRQHandler
  264. B EXTI1_IRQHandler
  265. PUBWEAK EXTI2_IRQHandler
  266. SECTION .text:CODE:NOROOT:REORDER(1)
  267. EXTI2_IRQHandler
  268. B EXTI2_IRQHandler
  269. PUBWEAK EXTI3_IRQHandler
  270. SECTION .text:CODE:NOROOT:REORDER(1)
  271. EXTI3_IRQHandler
  272. B EXTI3_IRQHandler
  273. PUBWEAK EXTI4_IRQHandler
  274. SECTION .text:CODE:NOROOT:REORDER(1)
  275. EXTI4_IRQHandler
  276. B EXTI4_IRQHandler
  277. PUBWEAK DMA1_Stream0_IRQHandler
  278. SECTION .text:CODE:NOROOT:REORDER(1)
  279. DMA1_Stream0_IRQHandler
  280. B DMA1_Stream0_IRQHandler
  281. PUBWEAK DMA1_Stream1_IRQHandler
  282. SECTION .text:CODE:NOROOT:REORDER(1)
  283. DMA1_Stream1_IRQHandler
  284. B DMA1_Stream1_IRQHandler
  285. PUBWEAK DMA1_Stream2_IRQHandler
  286. SECTION .text:CODE:NOROOT:REORDER(1)
  287. DMA1_Stream2_IRQHandler
  288. B DMA1_Stream2_IRQHandler
  289. PUBWEAK DMA1_Stream3_IRQHandler
  290. SECTION .text:CODE:NOROOT:REORDER(1)
  291. DMA1_Stream3_IRQHandler
  292. B DMA1_Stream3_IRQHandler
  293. PUBWEAK DMA1_Stream4_IRQHandler
  294. SECTION .text:CODE:NOROOT:REORDER(1)
  295. DMA1_Stream4_IRQHandler
  296. B DMA1_Stream4_IRQHandler
  297. PUBWEAK DMA1_Stream5_IRQHandler
  298. SECTION .text:CODE:NOROOT:REORDER(1)
  299. DMA1_Stream5_IRQHandler
  300. B DMA1_Stream5_IRQHandler
  301. PUBWEAK DMA1_Stream6_IRQHandler
  302. SECTION .text:CODE:NOROOT:REORDER(1)
  303. DMA1_Stream6_IRQHandler
  304. B DMA1_Stream6_IRQHandler
  305. PUBWEAK ADC_IRQHandler
  306. SECTION .text:CODE:NOROOT:REORDER(1)
  307. ADC_IRQHandler
  308. B ADC_IRQHandler
  309. PUBWEAK CAN1_TX_IRQHandler
  310. SECTION .text:CODE:NOROOT:REORDER(1)
  311. CAN1_TX_IRQHandler
  312. B CAN1_TX_IRQHandler
  313. PUBWEAK CAN1_RX0_IRQHandler
  314. SECTION .text:CODE:NOROOT:REORDER(1)
  315. CAN1_RX0_IRQHandler
  316. B CAN1_RX0_IRQHandler
  317. PUBWEAK CAN1_RX1_IRQHandler
  318. SECTION .text:CODE:NOROOT:REORDER(1)
  319. CAN1_RX1_IRQHandler
  320. B CAN1_RX1_IRQHandler
  321. PUBWEAK CAN1_SCE_IRQHandler
  322. SECTION .text:CODE:NOROOT:REORDER(1)
  323. CAN1_SCE_IRQHandler
  324. B CAN1_SCE_IRQHandler
  325. PUBWEAK EXTI9_5_IRQHandler
  326. SECTION .text:CODE:NOROOT:REORDER(1)
  327. EXTI9_5_IRQHandler
  328. B EXTI9_5_IRQHandler
  329. PUBWEAK TIM1_BRK_TIM9_IRQHandler
  330. SECTION .text:CODE:NOROOT:REORDER(1)
  331. TIM1_BRK_TIM9_IRQHandler
  332. B TIM1_BRK_TIM9_IRQHandler
  333. PUBWEAK TIM1_UP_TIM10_IRQHandler
  334. SECTION .text:CODE:NOROOT:REORDER(1)
  335. TIM1_UP_TIM10_IRQHandler
  336. B TIM1_UP_TIM10_IRQHandler
  337. PUBWEAK TIM1_TRG_COM_TIM11_IRQHandler
  338. SECTION .text:CODE:NOROOT:REORDER(1)
  339. TIM1_TRG_COM_TIM11_IRQHandler
  340. B TIM1_TRG_COM_TIM11_IRQHandler
  341. PUBWEAK TIM1_CC_IRQHandler
  342. SECTION .text:CODE:NOROOT:REORDER(1)
  343. TIM1_CC_IRQHandler
  344. B TIM1_CC_IRQHandler
  345. PUBWEAK TIM2_IRQHandler
  346. SECTION .text:CODE:NOROOT:REORDER(1)
  347. TIM2_IRQHandler
  348. B TIM2_IRQHandler
  349. PUBWEAK TIM3_IRQHandler
  350. SECTION .text:CODE:NOROOT:REORDER(1)
  351. TIM3_IRQHandler
  352. B TIM3_IRQHandler
  353. PUBWEAK TIM4_IRQHandler
  354. SECTION .text:CODE:NOROOT:REORDER(1)
  355. TIM4_IRQHandler
  356. B TIM4_IRQHandler
  357. PUBWEAK I2C1_EV_IRQHandler
  358. SECTION .text:CODE:NOROOT:REORDER(1)
  359. I2C1_EV_IRQHandler
  360. B I2C1_EV_IRQHandler
  361. PUBWEAK I2C1_ER_IRQHandler
  362. SECTION .text:CODE:NOROOT:REORDER(1)
  363. I2C1_ER_IRQHandler
  364. B I2C1_ER_IRQHandler
  365. PUBWEAK I2C2_EV_IRQHandler
  366. SECTION .text:CODE:NOROOT:REORDER(1)
  367. I2C2_EV_IRQHandler
  368. B I2C2_EV_IRQHandler
  369. PUBWEAK I2C2_ER_IRQHandler
  370. SECTION .text:CODE:NOROOT:REORDER(1)
  371. I2C2_ER_IRQHandler
  372. B I2C2_ER_IRQHandler
  373. PUBWEAK SPI1_IRQHandler
  374. SECTION .text:CODE:NOROOT:REORDER(1)
  375. SPI1_IRQHandler
  376. B SPI1_IRQHandler
  377. PUBWEAK SPI2_IRQHandler
  378. SECTION .text:CODE:NOROOT:REORDER(1)
  379. SPI2_IRQHandler
  380. B SPI2_IRQHandler
  381. PUBWEAK USART1_IRQHandler
  382. SECTION .text:CODE:NOROOT:REORDER(1)
  383. USART1_IRQHandler
  384. B USART1_IRQHandler
  385. PUBWEAK USART2_IRQHandler
  386. SECTION .text:CODE:NOROOT:REORDER(1)
  387. USART2_IRQHandler
  388. B USART2_IRQHandler
  389. PUBWEAK USART3_IRQHandler
  390. SECTION .text:CODE:NOROOT:REORDER(1)
  391. USART3_IRQHandler
  392. B USART3_IRQHandler
  393. PUBWEAK EXTI15_10_IRQHandler
  394. SECTION .text:CODE:NOROOT:REORDER(1)
  395. EXTI15_10_IRQHandler
  396. B EXTI15_10_IRQHandler
  397. PUBWEAK RTC_Alarm_IRQHandler
  398. SECTION .text:CODE:NOROOT:REORDER(1)
  399. RTC_Alarm_IRQHandler
  400. B RTC_Alarm_IRQHandler
  401. PUBWEAK OTG_FS_WKUP_IRQHandler
  402. SECTION .text:CODE:NOROOT:REORDER(1)
  403. OTG_FS_WKUP_IRQHandler
  404. B OTG_FS_WKUP_IRQHandler
  405. PUBWEAK TIM8_BRK_TIM12_IRQHandler
  406. SECTION .text:CODE:NOROOT:REORDER(1)
  407. TIM8_BRK_TIM12_IRQHandler
  408. B TIM8_BRK_TIM12_IRQHandler
  409. PUBWEAK TIM8_UP_TIM13_IRQHandler
  410. SECTION .text:CODE:NOROOT:REORDER(1)
  411. TIM8_UP_TIM13_IRQHandler
  412. B TIM8_UP_TIM13_IRQHandler
  413. PUBWEAK TIM8_TRG_COM_TIM14_IRQHandler
  414. SECTION .text:CODE:NOROOT:REORDER(1)
  415. TIM8_TRG_COM_TIM14_IRQHandler
  416. B TIM8_TRG_COM_TIM14_IRQHandler
  417. PUBWEAK TIM8_CC_IRQHandler
  418. SECTION .text:CODE:NOROOT:REORDER(1)
  419. TIM8_CC_IRQHandler
  420. B TIM8_CC_IRQHandler
  421. PUBWEAK DMA1_Stream7_IRQHandler
  422. SECTION .text:CODE:NOROOT:REORDER(1)
  423. DMA1_Stream7_IRQHandler
  424. B DMA1_Stream7_IRQHandler
  425. PUBWEAK FMC_IRQHandler
  426. SECTION .text:CODE:NOROOT:REORDER(1)
  427. FMC_IRQHandler
  428. B FMC_IRQHandler
  429. PUBWEAK SDMMC1_IRQHandler
  430. SECTION .text:CODE:NOROOT:REORDER(1)
  431. SDMMC1_IRQHandler
  432. B SDMMC1_IRQHandler
  433. PUBWEAK TIM5_IRQHandler
  434. SECTION .text:CODE:NOROOT:REORDER(1)
  435. TIM5_IRQHandler
  436. B TIM5_IRQHandler
  437. PUBWEAK SPI3_IRQHandler
  438. SECTION .text:CODE:NOROOT:REORDER(1)
  439. SPI3_IRQHandler
  440. B SPI3_IRQHandler
  441. PUBWEAK UART4_IRQHandler
  442. SECTION .text:CODE:NOROOT:REORDER(1)
  443. UART4_IRQHandler
  444. B UART4_IRQHandler
  445. PUBWEAK UART5_IRQHandler
  446. SECTION .text:CODE:NOROOT:REORDER(1)
  447. UART5_IRQHandler
  448. B UART5_IRQHandler
  449. PUBWEAK TIM6_DAC_IRQHandler
  450. SECTION .text:CODE:NOROOT:REORDER(1)
  451. TIM6_DAC_IRQHandler
  452. B TIM6_DAC_IRQHandler
  453. PUBWEAK TIM7_IRQHandler
  454. SECTION .text:CODE:NOROOT:REORDER(1)
  455. TIM7_IRQHandler
  456. B TIM7_IRQHandler
  457. PUBWEAK DMA2_Stream0_IRQHandler
  458. SECTION .text:CODE:NOROOT:REORDER(1)
  459. DMA2_Stream0_IRQHandler
  460. B DMA2_Stream0_IRQHandler
  461. PUBWEAK DMA2_Stream1_IRQHandler
  462. SECTION .text:CODE:NOROOT:REORDER(1)
  463. DMA2_Stream1_IRQHandler
  464. B DMA2_Stream1_IRQHandler
  465. PUBWEAK DMA2_Stream2_IRQHandler
  466. SECTION .text:CODE:NOROOT:REORDER(1)
  467. DMA2_Stream2_IRQHandler
  468. B DMA2_Stream2_IRQHandler
  469. PUBWEAK DMA2_Stream3_IRQHandler
  470. SECTION .text:CODE:NOROOT:REORDER(1)
  471. DMA2_Stream3_IRQHandler
  472. B DMA2_Stream3_IRQHandler
  473. PUBWEAK DMA2_Stream4_IRQHandler
  474. SECTION .text:CODE:NOROOT:REORDER(1)
  475. DMA2_Stream4_IRQHandler
  476. B DMA2_Stream4_IRQHandler
  477. PUBWEAK OTG_FS_IRQHandler
  478. SECTION .text:CODE:NOROOT:REORDER(1)
  479. OTG_FS_IRQHandler
  480. B OTG_FS_IRQHandler
  481. PUBWEAK DMA2_Stream5_IRQHandler
  482. SECTION .text:CODE:NOROOT:REORDER(1)
  483. DMA2_Stream5_IRQHandler
  484. B DMA2_Stream5_IRQHandler
  485. PUBWEAK DMA2_Stream6_IRQHandler
  486. SECTION .text:CODE:NOROOT:REORDER(1)
  487. DMA2_Stream6_IRQHandler
  488. B DMA2_Stream6_IRQHandler
  489. PUBWEAK DMA2_Stream7_IRQHandler
  490. SECTION .text:CODE:NOROOT:REORDER(1)
  491. DMA2_Stream7_IRQHandler
  492. B DMA2_Stream7_IRQHandler
  493. PUBWEAK USART6_IRQHandler
  494. SECTION .text:CODE:NOROOT:REORDER(1)
  495. USART6_IRQHandler
  496. B USART6_IRQHandler
  497. PUBWEAK I2C3_EV_IRQHandler
  498. SECTION .text:CODE:NOROOT:REORDER(1)
  499. I2C3_EV_IRQHandler
  500. B I2C3_EV_IRQHandler
  501. PUBWEAK I2C3_ER_IRQHandler
  502. SECTION .text:CODE:NOROOT:REORDER(1)
  503. I2C3_ER_IRQHandler
  504. B I2C3_ER_IRQHandler
  505. PUBWEAK OTG_HS_EP1_OUT_IRQHandler
  506. SECTION .text:CODE:NOROOT:REORDER(1)
  507. OTG_HS_EP1_OUT_IRQHandler
  508. B OTG_HS_EP1_OUT_IRQHandler
  509. PUBWEAK OTG_HS_EP1_IN_IRQHandler
  510. SECTION .text:CODE:NOROOT:REORDER(1)
  511. OTG_HS_EP1_IN_IRQHandler
  512. B OTG_HS_EP1_IN_IRQHandler
  513. PUBWEAK OTG_HS_WKUP_IRQHandler
  514. SECTION .text:CODE:NOROOT:REORDER(1)
  515. OTG_HS_WKUP_IRQHandler
  516. B OTG_HS_WKUP_IRQHandler
  517. PUBWEAK OTG_HS_IRQHandler
  518. SECTION .text:CODE:NOROOT:REORDER(1)
  519. OTG_HS_IRQHandler
  520. B OTG_HS_IRQHandler
  521. PUBWEAK RNG_IRQHandler
  522. SECTION .text:CODE:NOROOT:REORDER(1)
  523. RNG_IRQHandler
  524. B RNG_IRQHandler
  525. PUBWEAK FPU_IRQHandler
  526. SECTION .text:CODE:NOROOT:REORDER(1)
  527. FPU_IRQHandler
  528. B FPU_IRQHandler
  529. PUBWEAK UART7_IRQHandler
  530. SECTION .text:CODE:NOROOT:REORDER(1)
  531. UART7_IRQHandler
  532. B UART7_IRQHandler
  533. PUBWEAK UART8_IRQHandler
  534. SECTION .text:CODE:NOROOT:REORDER(1)
  535. UART8_IRQHandler
  536. B UART8_IRQHandler
  537. PUBWEAK SPI4_IRQHandler
  538. SECTION .text:CODE:NOROOT:REORDER(1)
  539. SPI4_IRQHandler
  540. B SPI4_IRQHandler
  541. PUBWEAK SPI5_IRQHandler
  542. SECTION .text:CODE:NOROOT:REORDER(1)
  543. SPI5_IRQHandler
  544. B SPI5_IRQHandler
  545. PUBWEAK SAI1_IRQHandler
  546. SECTION .text:CODE:NOROOT:REORDER(1)
  547. SAI1_IRQHandler
  548. B SAI1_IRQHandler
  549. PUBWEAK SAI2_IRQHandler
  550. SECTION .text:CODE:NOROOT:REORDER(1)
  551. SAI2_IRQHandler
  552. B SAI2_IRQHandler
  553. PUBWEAK QUADSPI_IRQHandler
  554. SECTION .text:CODE:NOROOT:REORDER(1)
  555. QUADSPI_IRQHandler
  556. B QUADSPI_IRQHandler
  557. PUBWEAK LPTIM1_IRQHandler
  558. SECTION .text:CODE:NOROOT:REORDER(1)
  559. LPTIM1_IRQHandler
  560. B LPTIM1_IRQHandler
  561. PUBWEAK SDMMC2_IRQHandler
  562. SECTION .text:CODE:NOROOT:REORDER(1)
  563. SDMMC2_IRQHandler
  564. B SDMMC2_IRQHandler
  565. END
  566. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/