You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

674 lines
23 KiB

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