Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2 | mjames | 1 | ;******************** (C) COPYRIGHT 2017 STMicroelectronics ******************** |
| 2 | ;* File Name : startup_stm32f100xe.s |
||
| 3 | ;* Author : MCD Application Team |
||
| 4 | ;* Description : STM32F100xE Value Line Devices vector table |
||
| 5 | ;* for EWARM toolchain. |
||
| 6 | ;* This module performs: |
||
| 7 | ;* - Set the initial SP |
||
| 8 | ;* - Set the initial PC == __iar_program_start, |
||
| 9 | ;* - Set the vector table entries with the exceptions ISR |
||
| 10 | ;* address. |
||
| 11 | ;* After Reset the Cortex-M3 processor is in Thread mode, |
||
| 12 | ;* priority is Privileged, and the Stack is set to Main. |
||
| 13 | ;******************************************************************************* |
||
| 14 | ;* @attention |
||
| 15 | ;* |
||
| 16 | ;* <h2><center>© Copyright (c) 2017 STMicroelectronics. |
||
| 17 | ;* All rights reserved.</center></h2> |
||
| 18 | ;* |
||
| 19 | ;* This software component is licensed by ST under BSD 3-Clause license, |
||
| 20 | ;* the "License"; You may not use this file except in compliance with the |
||
| 21 | ;* License. You may obtain a copy of the License at: |
||
| 22 | ;* opensource.org/licenses/BSD-3-Clause |
||
| 23 | ;* |
||
| 24 | ;******************************************************************************* |
||
| 25 | ; |
||
| 26 | ; |
||
| 27 | ; The modules in this file are included in the libraries, and may be replaced |
||
| 28 | ; by any user-defined modules that define the PUBLIC symbol _program_start or |
||
| 29 | ; a user defined start symbol. |
||
| 30 | ; To override the cstartup defined in the library, simply add your modified |
||
| 31 | ; version to the workbench project. |
||
| 32 | ; |
||
| 33 | ; The vector table is normally located at address 0. |
||
| 34 | ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6. |
||
| 35 | ; The name "__vector_table" has special meaning for C-SPY: |
||
| 36 | ; it is where the SP start value is found, and the NVIC vector |
||
| 37 | ; table register (VTOR) is initialized to this address if != 0. |
||
| 38 | ; |
||
| 39 | ; Cortex-M version |
||
| 40 | ; |
||
| 41 | |||
| 42 | MODULE ?cstartup |
||
| 43 | |||
| 44 | ;; Forward declaration of sections. |
||
| 45 | SECTION CSTACK:DATA:NOROOT(3) |
||
| 46 | |||
| 47 | SECTION .intvec:CODE:NOROOT(2) |
||
| 48 | |||
| 49 | EXTERN __iar_program_start |
||
| 50 | EXTERN SystemInit |
||
| 51 | PUBLIC __vector_table |
||
| 52 | |||
| 53 | DATA |
||
| 54 | __vector_table |
||
| 55 | DCD sfe(CSTACK) |
||
| 56 | DCD Reset_Handler ; Reset Handler |
||
| 57 | DCD NMI_Handler ; NMI Handler |
||
| 58 | DCD HardFault_Handler ; Hard Fault Handler |
||
| 59 | DCD MemManage_Handler ; MPU Fault Handler |
||
| 60 | DCD BusFault_Handler ; Bus Fault Handler |
||
| 61 | DCD UsageFault_Handler ; Usage Fault Handler |
||
| 62 | DCD 0 ; Reserved |
||
| 63 | DCD 0 ; Reserved |
||
| 64 | DCD 0 ; Reserved |
||
| 65 | DCD 0 ; Reserved |
||
| 66 | DCD SVC_Handler ; SVCall Handler |
||
| 67 | DCD DebugMon_Handler ; Debug Monitor Handler |
||
| 68 | DCD 0 ; Reserved |
||
| 69 | DCD PendSV_Handler ; PendSV Handler |
||
| 70 | DCD SysTick_Handler ; SysTick Handler |
||
| 71 | |||
| 72 | ; External Interrupts |
||
| 73 | DCD WWDG_IRQHandler ; Window Watchdog |
||
| 74 | DCD PVD_IRQHandler ; PVD through EXTI Line detect |
||
| 75 | DCD TAMPER_IRQHandler ; Tamper |
||
| 76 | DCD RTC_IRQHandler ; RTC |
||
| 77 | DCD FLASH_IRQHandler ; Flash |
||
| 78 | DCD RCC_IRQHandler ; RCC |
||
| 79 | DCD EXTI0_IRQHandler ; EXTI Line 0 |
||
| 80 | DCD EXTI1_IRQHandler ; EXTI Line 1 |
||
| 81 | DCD EXTI2_IRQHandler ; EXTI Line 2 |
||
| 82 | DCD EXTI3_IRQHandler ; EXTI Line 3 |
||
| 83 | DCD EXTI4_IRQHandler ; EXTI Line 4 |
||
| 84 | DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1 |
||
| 85 | DCD DMA1_Channel2_IRQHandler ; DMA1 Channel 2 |
||
| 86 | DCD DMA1_Channel3_IRQHandler ; DMA1 Channel 3 |
||
| 87 | DCD DMA1_Channel4_IRQHandler ; DMA1 Channel 4 |
||
| 88 | DCD DMA1_Channel5_IRQHandler ; DMA1 Channel 5 |
||
| 89 | DCD DMA1_Channel6_IRQHandler ; DMA1 Channel 6 |
||
| 90 | DCD DMA1_Channel7_IRQHandler ; DMA1 Channel 7 |
||
| 91 | DCD ADC1_IRQHandler ; ADC1 |
||
| 92 | DCD 0 ; Reserved |
||
| 93 | DCD 0 ; Reserved |
||
| 94 | DCD 0 ; Reserved |
||
| 95 | DCD 0 ; Reserved |
||
| 96 | DCD EXTI9_5_IRQHandler ; EXTI Line 9..5 |
||
| 97 | DCD TIM1_BRK_TIM15_IRQHandler ; TIM1 Break and TIM15 |
||
| 98 | DCD TIM1_UP_TIM16_IRQHandler ; TIM1 Update and TIM16 |
||
| 99 | DCD TIM1_TRG_COM_TIM17_IRQHandler ; TIM1 Trigger and Commutation and TIM17 |
||
| 100 | DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare |
||
| 101 | DCD TIM2_IRQHandler ; TIM2 |
||
| 102 | DCD TIM3_IRQHandler ; TIM3 |
||
| 103 | DCD TIM4_IRQHandler ; TIM4 |
||
| 104 | DCD I2C1_EV_IRQHandler ; I2C1 Event |
||
| 105 | DCD I2C1_ER_IRQHandler ; I2C1 Error |
||
| 106 | DCD I2C2_EV_IRQHandler ; I2C2 Event |
||
| 107 | DCD I2C2_ER_IRQHandler ; I2C2 Error |
||
| 108 | DCD SPI1_IRQHandler ; SPI1 |
||
| 109 | DCD SPI2_IRQHandler ; SPI2 |
||
| 110 | DCD USART1_IRQHandler ; USART1 |
||
| 111 | DCD USART2_IRQHandler ; USART2 |
||
| 112 | DCD USART3_IRQHandler ; USART3 |
||
| 113 | DCD EXTI15_10_IRQHandler ; EXTI Line 15..10 |
||
| 114 | DCD RTC_Alarm_IRQHandler ; RTC Alarm through EXTI Line |
||
| 115 | DCD CEC_IRQHandler ; HDMI CEC |
||
| 116 | DCD TIM12_IRQHandler ; TIM12 |
||
| 117 | DCD TIM13_IRQHandler ; TIM13 |
||
| 118 | DCD TIM14_IRQHandler ; TIM14 |
||
| 119 | DCD 0 ; Reserved |
||
| 120 | DCD 0 ; Reserved |
||
| 121 | DCD 0 ; Reserved |
||
| 122 | DCD 0 ; Reserved |
||
| 123 | DCD TIM5_IRQHandler ; TIM5 |
||
| 124 | DCD SPI3_IRQHandler ; SPI3 |
||
| 125 | DCD UART4_IRQHandler ; UART4 |
||
| 126 | DCD UART5_IRQHandler ; UART5 |
||
| 127 | DCD TIM6_DAC_IRQHandler ; TIM6 and DAC underrun |
||
| 128 | DCD TIM7_IRQHandler ; TIM7 |
||
| 129 | DCD DMA2_Channel1_IRQHandler ; DMA2 Channel1 |
||
| 130 | DCD DMA2_Channel2_IRQHandler ; DMA2 Channel2 |
||
| 131 | DCD DMA2_Channel3_IRQHandler ; DMA2 Channel3 |
||
| 132 | DCD DMA2_Channel4_5_IRQHandler ; DMA2 Channel4 & Channel5 if MISC_REMAP is not set |
||
| 133 | ; or DMA2 Channel4 if MISC_REMAP is set |
||
| 134 | DCD DMA2_Channel5_IRQHandler ; DMA2 Channel5 if MISC_REMAP is set |
||
| 135 | |||
| 136 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
||
| 137 | ;; |
||
| 138 | ;; Default interrupt handlers. |
||
| 139 | ;; |
||
| 140 | THUMB |
||
| 141 | |||
| 142 | PUBWEAK Reset_Handler |
||
| 143 | SECTION .text:CODE:REORDER:NOROOT(2) |
||
| 144 | Reset_Handler |
||
| 145 | LDR R0, =SystemInit |
||
| 146 | BLX R0 |
||
| 147 | LDR R0, =__iar_program_start |
||
| 148 | BX R0 |
||
| 149 | |||
| 150 | PUBWEAK NMI_Handler |
||
| 151 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 152 | NMI_Handler |
||
| 153 | B NMI_Handler |
||
| 154 | |||
| 155 | PUBWEAK HardFault_Handler |
||
| 156 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 157 | HardFault_Handler |
||
| 158 | B HardFault_Handler |
||
| 159 | |||
| 160 | PUBWEAK MemManage_Handler |
||
| 161 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 162 | MemManage_Handler |
||
| 163 | B MemManage_Handler |
||
| 164 | |||
| 165 | PUBWEAK BusFault_Handler |
||
| 166 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 167 | BusFault_Handler |
||
| 168 | B BusFault_Handler |
||
| 169 | |||
| 170 | PUBWEAK UsageFault_Handler |
||
| 171 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 172 | UsageFault_Handler |
||
| 173 | B UsageFault_Handler |
||
| 174 | |||
| 175 | PUBWEAK SVC_Handler |
||
| 176 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 177 | SVC_Handler |
||
| 178 | B SVC_Handler |
||
| 179 | |||
| 180 | PUBWEAK DebugMon_Handler |
||
| 181 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 182 | DebugMon_Handler |
||
| 183 | B DebugMon_Handler |
||
| 184 | |||
| 185 | PUBWEAK PendSV_Handler |
||
| 186 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 187 | PendSV_Handler |
||
| 188 | B PendSV_Handler |
||
| 189 | |||
| 190 | PUBWEAK SysTick_Handler |
||
| 191 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 192 | SysTick_Handler |
||
| 193 | B SysTick_Handler |
||
| 194 | |||
| 195 | PUBWEAK WWDG_IRQHandler |
||
| 196 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 197 | WWDG_IRQHandler |
||
| 198 | B WWDG_IRQHandler |
||
| 199 | |||
| 200 | PUBWEAK PVD_IRQHandler |
||
| 201 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 202 | PVD_IRQHandler |
||
| 203 | B PVD_IRQHandler |
||
| 204 | |||
| 205 | PUBWEAK TAMPER_IRQHandler |
||
| 206 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 207 | TAMPER_IRQHandler |
||
| 208 | B TAMPER_IRQHandler |
||
| 209 | |||
| 210 | PUBWEAK RTC_IRQHandler |
||
| 211 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 212 | RTC_IRQHandler |
||
| 213 | B RTC_IRQHandler |
||
| 214 | |||
| 215 | PUBWEAK FLASH_IRQHandler |
||
| 216 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 217 | FLASH_IRQHandler |
||
| 218 | B FLASH_IRQHandler |
||
| 219 | |||
| 220 | PUBWEAK RCC_IRQHandler |
||
| 221 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 222 | RCC_IRQHandler |
||
| 223 | B RCC_IRQHandler |
||
| 224 | |||
| 225 | PUBWEAK EXTI0_IRQHandler |
||
| 226 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 227 | EXTI0_IRQHandler |
||
| 228 | B EXTI0_IRQHandler |
||
| 229 | |||
| 230 | PUBWEAK EXTI1_IRQHandler |
||
| 231 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 232 | EXTI1_IRQHandler |
||
| 233 | B EXTI1_IRQHandler |
||
| 234 | |||
| 235 | PUBWEAK EXTI2_IRQHandler |
||
| 236 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 237 | EXTI2_IRQHandler |
||
| 238 | B EXTI2_IRQHandler |
||
| 239 | |||
| 240 | PUBWEAK EXTI3_IRQHandler |
||
| 241 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 242 | EXTI3_IRQHandler |
||
| 243 | B EXTI3_IRQHandler |
||
| 244 | |||
| 245 | PUBWEAK EXTI4_IRQHandler |
||
| 246 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 247 | EXTI4_IRQHandler |
||
| 248 | B EXTI4_IRQHandler |
||
| 249 | |||
| 250 | PUBWEAK DMA1_Channel1_IRQHandler |
||
| 251 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 252 | DMA1_Channel1_IRQHandler |
||
| 253 | B DMA1_Channel1_IRQHandler |
||
| 254 | |||
| 255 | PUBWEAK DMA1_Channel2_IRQHandler |
||
| 256 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 257 | DMA1_Channel2_IRQHandler |
||
| 258 | B DMA1_Channel2_IRQHandler |
||
| 259 | |||
| 260 | PUBWEAK DMA1_Channel3_IRQHandler |
||
| 261 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 262 | DMA1_Channel3_IRQHandler |
||
| 263 | B DMA1_Channel3_IRQHandler |
||
| 264 | |||
| 265 | PUBWEAK DMA1_Channel4_IRQHandler |
||
| 266 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 267 | DMA1_Channel4_IRQHandler |
||
| 268 | B DMA1_Channel4_IRQHandler |
||
| 269 | |||
| 270 | PUBWEAK DMA1_Channel5_IRQHandler |
||
| 271 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 272 | DMA1_Channel5_IRQHandler |
||
| 273 | B DMA1_Channel5_IRQHandler |
||
| 274 | |||
| 275 | PUBWEAK DMA1_Channel6_IRQHandler |
||
| 276 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 277 | DMA1_Channel6_IRQHandler |
||
| 278 | B DMA1_Channel6_IRQHandler |
||
| 279 | |||
| 280 | PUBWEAK DMA1_Channel7_IRQHandler |
||
| 281 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 282 | DMA1_Channel7_IRQHandler |
||
| 283 | B DMA1_Channel7_IRQHandler |
||
| 284 | |||
| 285 | PUBWEAK ADC1_IRQHandler |
||
| 286 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 287 | ADC1_IRQHandler |
||
| 288 | B ADC1_IRQHandler |
||
| 289 | |||
| 290 | PUBWEAK EXTI9_5_IRQHandler |
||
| 291 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 292 | EXTI9_5_IRQHandler |
||
| 293 | B EXTI9_5_IRQHandler |
||
| 294 | |||
| 295 | PUBWEAK TIM1_BRK_TIM15_IRQHandler |
||
| 296 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 297 | TIM1_BRK_TIM15_IRQHandler |
||
| 298 | B TIM1_BRK_TIM15_IRQHandler |
||
| 299 | |||
| 300 | PUBWEAK TIM1_UP_TIM16_IRQHandler |
||
| 301 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 302 | TIM1_UP_TIM16_IRQHandler |
||
| 303 | B TIM1_UP_TIM16_IRQHandler |
||
| 304 | |||
| 305 | PUBWEAK TIM1_TRG_COM_TIM17_IRQHandler |
||
| 306 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 307 | TIM1_TRG_COM_TIM17_IRQHandler |
||
| 308 | B TIM1_TRG_COM_TIM17_IRQHandler |
||
| 309 | |||
| 310 | PUBWEAK TIM1_CC_IRQHandler |
||
| 311 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 312 | TIM1_CC_IRQHandler |
||
| 313 | B TIM1_CC_IRQHandler |
||
| 314 | |||
| 315 | PUBWEAK TIM2_IRQHandler |
||
| 316 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 317 | TIM2_IRQHandler |
||
| 318 | B TIM2_IRQHandler |
||
| 319 | |||
| 320 | PUBWEAK TIM3_IRQHandler |
||
| 321 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 322 | TIM3_IRQHandler |
||
| 323 | B TIM3_IRQHandler |
||
| 324 | |||
| 325 | PUBWEAK TIM4_IRQHandler |
||
| 326 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 327 | TIM4_IRQHandler |
||
| 328 | B TIM4_IRQHandler |
||
| 329 | |||
| 330 | PUBWEAK I2C1_EV_IRQHandler |
||
| 331 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 332 | I2C1_EV_IRQHandler |
||
| 333 | B I2C1_EV_IRQHandler |
||
| 334 | |||
| 335 | PUBWEAK I2C1_ER_IRQHandler |
||
| 336 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 337 | I2C1_ER_IRQHandler |
||
| 338 | B I2C1_ER_IRQHandler |
||
| 339 | |||
| 340 | PUBWEAK I2C2_EV_IRQHandler |
||
| 341 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 342 | I2C2_EV_IRQHandler |
||
| 343 | B I2C2_EV_IRQHandler |
||
| 344 | |||
| 345 | PUBWEAK I2C2_ER_IRQHandler |
||
| 346 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 347 | I2C2_ER_IRQHandler |
||
| 348 | B I2C2_ER_IRQHandler |
||
| 349 | |||
| 350 | PUBWEAK SPI1_IRQHandler |
||
| 351 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 352 | SPI1_IRQHandler |
||
| 353 | B SPI1_IRQHandler |
||
| 354 | |||
| 355 | PUBWEAK SPI2_IRQHandler |
||
| 356 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 357 | SPI2_IRQHandler |
||
| 358 | B SPI2_IRQHandler |
||
| 359 | |||
| 360 | PUBWEAK USART1_IRQHandler |
||
| 361 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 362 | USART1_IRQHandler |
||
| 363 | B USART1_IRQHandler |
||
| 364 | |||
| 365 | PUBWEAK USART2_IRQHandler |
||
| 366 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 367 | USART2_IRQHandler |
||
| 368 | B USART2_IRQHandler |
||
| 369 | |||
| 370 | PUBWEAK USART3_IRQHandler |
||
| 371 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 372 | USART3_IRQHandler |
||
| 373 | B USART3_IRQHandler |
||
| 374 | |||
| 375 | PUBWEAK EXTI15_10_IRQHandler |
||
| 376 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 377 | EXTI15_10_IRQHandler |
||
| 378 | B EXTI15_10_IRQHandler |
||
| 379 | |||
| 380 | PUBWEAK RTC_Alarm_IRQHandler |
||
| 381 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 382 | RTC_Alarm_IRQHandler |
||
| 383 | B RTC_Alarm_IRQHandler |
||
| 384 | |||
| 385 | |||
| 386 | PUBWEAK CEC_IRQHandler |
||
| 387 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 388 | CEC_IRQHandler |
||
| 389 | B CEC_IRQHandler |
||
| 390 | |||
| 391 | PUBWEAK TIM12_IRQHandler |
||
| 392 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 393 | TIM12_IRQHandler |
||
| 394 | B TIM12_IRQHandler |
||
| 395 | |||
| 396 | PUBWEAK TIM13_IRQHandler |
||
| 397 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 398 | TIM13_IRQHandler |
||
| 399 | B TIM13_IRQHandler |
||
| 400 | |||
| 401 | PUBWEAK TIM14_IRQHandler |
||
| 402 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 403 | TIM14_IRQHandler |
||
| 404 | B TIM14_IRQHandler |
||
| 405 | |||
| 406 | PUBWEAK TIM5_IRQHandler |
||
| 407 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 408 | TIM5_IRQHandler |
||
| 409 | B TIM5_IRQHandler |
||
| 410 | |||
| 411 | PUBWEAK SPI3_IRQHandler |
||
| 412 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 413 | SPI3_IRQHandler |
||
| 414 | B SPI3_IRQHandler |
||
| 415 | |||
| 416 | PUBWEAK UART4_IRQHandler |
||
| 417 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 418 | UART4_IRQHandler |
||
| 419 | B UART4_IRQHandler |
||
| 420 | |||
| 421 | PUBWEAK UART5_IRQHandler |
||
| 422 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 423 | UART5_IRQHandler |
||
| 424 | B UART5_IRQHandler |
||
| 425 | |||
| 426 | PUBWEAK TIM6_DAC_IRQHandler |
||
| 427 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 428 | TIM6_DAC_IRQHandler |
||
| 429 | B TIM6_DAC_IRQHandler |
||
| 430 | |||
| 431 | PUBWEAK TIM7_IRQHandler |
||
| 432 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 433 | TIM7_IRQHandler |
||
| 434 | B TIM7_IRQHandler |
||
| 435 | |||
| 436 | PUBWEAK DMA2_Channel1_IRQHandler |
||
| 437 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 438 | DMA2_Channel1_IRQHandler |
||
| 439 | B DMA2_Channel1_IRQHandler |
||
| 440 | |||
| 441 | PUBWEAK DMA2_Channel2_IRQHandler |
||
| 442 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 443 | DMA2_Channel2_IRQHandler |
||
| 444 | B DMA2_Channel2_IRQHandler |
||
| 445 | |||
| 446 | PUBWEAK DMA2_Channel3_IRQHandler |
||
| 447 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 448 | DMA2_Channel3_IRQHandler |
||
| 449 | B DMA2_Channel3_IRQHandler |
||
| 450 | |||
| 451 | PUBWEAK DMA2_Channel4_5_IRQHandler |
||
| 452 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 453 | DMA2_Channel4_5_IRQHandler |
||
| 454 | B DMA2_Channel4_5_IRQHandler |
||
| 455 | |||
| 456 | PUBWEAK DMA2_Channel5_IRQHandler |
||
| 457 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
| 458 | DMA2_Channel5_IRQHandler |
||
| 459 | B DMA2_Channel5_IRQHandler |
||
| 460 | |||
| 461 | END |
||
| 462 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |