mbed official / mbed-src

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Committer:
mbed_official
Date:
Wed Jul 01 08:15:11 2015 +0100
Revision:
577:15494b56c2f3
Parent:
targets/cmsis/TARGET_STM/TARGET_STM32F1/TARGET_NUCLEO_F103RB/TOOLCHAIN_IAR/startup_stm32f103xb.s@489:119543c9f674
Synchronized with git revision 7766e75dd858812cd79aedb3080349715f55dd56

Full URL: https://github.com/mbedmicro/mbed/commit/7766e75dd858812cd79aedb3080349715f55dd56/

GCC asm updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 489:119543c9f674 1 ;******************** (C) COPYRIGHT 2014 STMicroelectronics ********************
mbed_official 489:119543c9f674 2 ;* File Name : startup_stm32f103xb.s
mbed_official 489:119543c9f674 3 ;* Author : MCD Application Team
mbed_official 489:119543c9f674 4 ;* Version : V4.0.0
mbed_official 489:119543c9f674 5 ;* Date : 16-December-2014
mbed_official 489:119543c9f674 6 ;* Description : STM32F103xB Performance Line Devices vector table for
mbed_official 489:119543c9f674 7 ;* EWARM toolchain.
mbed_official 489:119543c9f674 8 ;* This module performs:
mbed_official 489:119543c9f674 9 ;* - Set the initial SP
mbed_official 489:119543c9f674 10 ;* - Configure the clock system
mbed_official 489:119543c9f674 11 ;* - Set the initial PC == __iar_program_start,
mbed_official 489:119543c9f674 12 ;* - Set the vector table entries with the exceptions ISR
mbed_official 489:119543c9f674 13 ;* address.
mbed_official 489:119543c9f674 14 ;* After Reset the Cortex-M3 processor is in Thread mode,
mbed_official 489:119543c9f674 15 ;* priority is Privileged, and the Stack is set to Main.
mbed_official 489:119543c9f674 16 ;********************************************************************************
mbed_official 489:119543c9f674 17 ;*
mbed_official 489:119543c9f674 18 ;* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 489:119543c9f674 19 ;*
mbed_official 489:119543c9f674 20 ;* Redistribution and use in source and binary forms, with or without modification,
mbed_official 489:119543c9f674 21 ;* are permitted provided that the following conditions are met:
mbed_official 489:119543c9f674 22 ;* 1. Redistributions of source code must retain the above copyright notice,
mbed_official 489:119543c9f674 23 ;* this list of conditions and the following disclaimer.
mbed_official 489:119543c9f674 24 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 489:119543c9f674 25 ;* this list of conditions and the following disclaimer in the documentation
mbed_official 489:119543c9f674 26 ;* and/or other materials provided with the distribution.
mbed_official 489:119543c9f674 27 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 489:119543c9f674 28 ;* may be used to endorse or promote products derived from this software
mbed_official 489:119543c9f674 29 ;* without specific prior written permission.
mbed_official 489:119543c9f674 30 ;*
mbed_official 489:119543c9f674 31 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 489:119543c9f674 32 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 489:119543c9f674 33 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 489:119543c9f674 34 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 489:119543c9f674 35 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 489:119543c9f674 36 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 489:119543c9f674 37 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 489:119543c9f674 38 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 489:119543c9f674 39 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 489:119543c9f674 40 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 489:119543c9f674 41 ;*
mbed_official 489:119543c9f674 42 ;*******************************************************************************
mbed_official 489:119543c9f674 43 ;
mbed_official 489:119543c9f674 44 ;
mbed_official 489:119543c9f674 45 ; The modules in this file are included in the libraries, and may be replaced
mbed_official 489:119543c9f674 46 ; by any user-defined modules that define the PUBLIC symbol _program_start or
mbed_official 489:119543c9f674 47 ; a user defined start symbol.
mbed_official 489:119543c9f674 48 ; To override the cstartup defined in the library, simply add your modified
mbed_official 489:119543c9f674 49 ; version to the workbench project.
mbed_official 489:119543c9f674 50 ;
mbed_official 489:119543c9f674 51 ; The vector table is normally located at address 0.
mbed_official 489:119543c9f674 52 ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
mbed_official 489:119543c9f674 53 ; The name "__vector_table" has special meaning for C-SPY:
mbed_official 489:119543c9f674 54 ; it is where the SP start value is found, and the NVIC vector
mbed_official 489:119543c9f674 55 ; table register (VTOR) is initialized to this address if != 0.
mbed_official 489:119543c9f674 56 ;
mbed_official 489:119543c9f674 57 ; Cortex-M version
mbed_official 489:119543c9f674 58 ;
mbed_official 489:119543c9f674 59
mbed_official 489:119543c9f674 60 MODULE ?cstartup
mbed_official 489:119543c9f674 61
mbed_official 489:119543c9f674 62 ;; Forward declaration of sections.
mbed_official 489:119543c9f674 63 SECTION CSTACK:DATA:NOROOT(3)
mbed_official 489:119543c9f674 64
mbed_official 489:119543c9f674 65 SECTION .intvec:CODE:NOROOT(2)
mbed_official 489:119543c9f674 66
mbed_official 489:119543c9f674 67 EXTERN __iar_program_start
mbed_official 489:119543c9f674 68 EXTERN SystemInit
mbed_official 489:119543c9f674 69 PUBLIC __vector_table
mbed_official 489:119543c9f674 70
mbed_official 489:119543c9f674 71 DATA
mbed_official 489:119543c9f674 72 __vector_table
mbed_official 489:119543c9f674 73 DCD sfe(CSTACK)
mbed_official 489:119543c9f674 74 DCD Reset_Handler ; Reset Handler
mbed_official 489:119543c9f674 75 DCD NMI_Handler ; NMI Handler
mbed_official 489:119543c9f674 76 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 489:119543c9f674 77 DCD MemManage_Handler ; MPU Fault Handler
mbed_official 489:119543c9f674 78 DCD BusFault_Handler ; Bus Fault Handler
mbed_official 489:119543c9f674 79 DCD UsageFault_Handler ; Usage Fault Handler
mbed_official 489:119543c9f674 80 DCD 0 ; Reserved
mbed_official 489:119543c9f674 81 DCD 0 ; Reserved
mbed_official 489:119543c9f674 82 DCD 0 ; Reserved
mbed_official 489:119543c9f674 83 DCD 0 ; Reserved
mbed_official 489:119543c9f674 84 DCD SVC_Handler ; SVCall Handler
mbed_official 489:119543c9f674 85 DCD DebugMon_Handler ; Debug Monitor Handler
mbed_official 489:119543c9f674 86 DCD 0 ; Reserved
mbed_official 489:119543c9f674 87 DCD PendSV_Handler ; PendSV Handler
mbed_official 489:119543c9f674 88 DCD SysTick_Handler ; SysTick Handler
mbed_official 489:119543c9f674 89
mbed_official 489:119543c9f674 90 ; External Interrupts
mbed_official 489:119543c9f674 91 DCD WWDG_IRQHandler ; Window Watchdog
mbed_official 489:119543c9f674 92 DCD PVD_IRQHandler ; PVD through EXTI Line detect
mbed_official 489:119543c9f674 93 DCD TAMPER_IRQHandler ; Tamper
mbed_official 489:119543c9f674 94 DCD RTC_IRQHandler ; RTC
mbed_official 489:119543c9f674 95 DCD FLASH_IRQHandler ; Flash
mbed_official 489:119543c9f674 96 DCD RCC_IRQHandler ; RCC
mbed_official 489:119543c9f674 97 DCD EXTI0_IRQHandler ; EXTI Line 0
mbed_official 489:119543c9f674 98 DCD EXTI1_IRQHandler ; EXTI Line 1
mbed_official 489:119543c9f674 99 DCD EXTI2_IRQHandler ; EXTI Line 2
mbed_official 489:119543c9f674 100 DCD EXTI3_IRQHandler ; EXTI Line 3
mbed_official 489:119543c9f674 101 DCD EXTI4_IRQHandler ; EXTI Line 4
mbed_official 489:119543c9f674 102 DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1
mbed_official 489:119543c9f674 103 DCD DMA1_Channel2_IRQHandler ; DMA1 Channel 2
mbed_official 489:119543c9f674 104 DCD DMA1_Channel3_IRQHandler ; DMA1 Channel 3
mbed_official 489:119543c9f674 105 DCD DMA1_Channel4_IRQHandler ; DMA1 Channel 4
mbed_official 489:119543c9f674 106 DCD DMA1_Channel5_IRQHandler ; DMA1 Channel 5
mbed_official 489:119543c9f674 107 DCD DMA1_Channel6_IRQHandler ; DMA1 Channel 6
mbed_official 489:119543c9f674 108 DCD DMA1_Channel7_IRQHandler ; DMA1 Channel 7
mbed_official 489:119543c9f674 109 DCD ADC1_2_IRQHandler ; ADC1 & ADC2
mbed_official 489:119543c9f674 110 DCD USB_HP_CAN1_TX_IRQHandler ; USB High Priority or CAN1 TX
mbed_official 489:119543c9f674 111 DCD USB_LP_CAN1_RX0_IRQHandler ; USB Low Priority or CAN1 RX0
mbed_official 489:119543c9f674 112 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
mbed_official 489:119543c9f674 113 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
mbed_official 489:119543c9f674 114 DCD EXTI9_5_IRQHandler ; EXTI Line 9..5
mbed_official 489:119543c9f674 115 DCD TIM1_BRK_IRQHandler ; TIM1 Break
mbed_official 489:119543c9f674 116 DCD TIM1_UP_IRQHandler ; TIM1 Update
mbed_official 489:119543c9f674 117 DCD TIM1_TRG_COM_IRQHandler ; TIM1 Trigger and Commutation
mbed_official 489:119543c9f674 118 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
mbed_official 489:119543c9f674 119 DCD TIM2_IRQHandler ; TIM2
mbed_official 489:119543c9f674 120 DCD TIM3_IRQHandler ; TIM3
mbed_official 489:119543c9f674 121 DCD TIM4_IRQHandler ; TIM4
mbed_official 489:119543c9f674 122 DCD I2C1_EV_IRQHandler ; I2C1 Event
mbed_official 489:119543c9f674 123 DCD I2C1_ER_IRQHandler ; I2C1 Error
mbed_official 489:119543c9f674 124 DCD I2C2_EV_IRQHandler ; I2C2 Event
mbed_official 489:119543c9f674 125 DCD I2C2_ER_IRQHandler ; I2C2 Error
mbed_official 489:119543c9f674 126 DCD SPI1_IRQHandler ; SPI1
mbed_official 489:119543c9f674 127 DCD SPI2_IRQHandler ; SPI2
mbed_official 489:119543c9f674 128 DCD USART1_IRQHandler ; USART1
mbed_official 489:119543c9f674 129 DCD USART2_IRQHandler ; USART2
mbed_official 489:119543c9f674 130 DCD USART3_IRQHandler ; USART3
mbed_official 489:119543c9f674 131 DCD EXTI15_10_IRQHandler ; EXTI Line 15..10
mbed_official 489:119543c9f674 132 DCD RTC_Alarm_IRQHandler ; RTC Alarm through EXTI Line
mbed_official 489:119543c9f674 133 DCD USBWakeUp_IRQHandler ; USB Wakeup from suspend
mbed_official 489:119543c9f674 134
mbed_official 489:119543c9f674 135 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mbed_official 489:119543c9f674 136 ;;
mbed_official 489:119543c9f674 137 ;; Default interrupt handlers.
mbed_official 489:119543c9f674 138 ;;
mbed_official 489:119543c9f674 139 THUMB
mbed_official 489:119543c9f674 140
mbed_official 489:119543c9f674 141 PUBWEAK Reset_Handler
mbed_official 489:119543c9f674 142 SECTION .text:CODE:REORDER:NOROOT(2)
mbed_official 489:119543c9f674 143 Reset_Handler
mbed_official 489:119543c9f674 144 LDR R0, =SystemInit
mbed_official 489:119543c9f674 145 BLX R0
mbed_official 489:119543c9f674 146 LDR R0, =__iar_program_start
mbed_official 489:119543c9f674 147 BX R0
mbed_official 489:119543c9f674 148
mbed_official 489:119543c9f674 149 PUBWEAK NMI_Handler
mbed_official 489:119543c9f674 150 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 151 NMI_Handler
mbed_official 489:119543c9f674 152 B NMI_Handler
mbed_official 489:119543c9f674 153
mbed_official 489:119543c9f674 154 PUBWEAK HardFault_Handler
mbed_official 489:119543c9f674 155 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 156 HardFault_Handler
mbed_official 489:119543c9f674 157 B HardFault_Handler
mbed_official 489:119543c9f674 158
mbed_official 489:119543c9f674 159 PUBWEAK MemManage_Handler
mbed_official 489:119543c9f674 160 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 161 MemManage_Handler
mbed_official 489:119543c9f674 162 B MemManage_Handler
mbed_official 489:119543c9f674 163
mbed_official 489:119543c9f674 164 PUBWEAK BusFault_Handler
mbed_official 489:119543c9f674 165 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 166 BusFault_Handler
mbed_official 489:119543c9f674 167 B BusFault_Handler
mbed_official 489:119543c9f674 168
mbed_official 489:119543c9f674 169 PUBWEAK UsageFault_Handler
mbed_official 489:119543c9f674 170 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 171 UsageFault_Handler
mbed_official 489:119543c9f674 172 B UsageFault_Handler
mbed_official 489:119543c9f674 173
mbed_official 489:119543c9f674 174 PUBWEAK SVC_Handler
mbed_official 489:119543c9f674 175 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 176 SVC_Handler
mbed_official 489:119543c9f674 177 B SVC_Handler
mbed_official 489:119543c9f674 178
mbed_official 489:119543c9f674 179 PUBWEAK DebugMon_Handler
mbed_official 489:119543c9f674 180 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 181 DebugMon_Handler
mbed_official 489:119543c9f674 182 B DebugMon_Handler
mbed_official 489:119543c9f674 183
mbed_official 489:119543c9f674 184 PUBWEAK PendSV_Handler
mbed_official 489:119543c9f674 185 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 186 PendSV_Handler
mbed_official 489:119543c9f674 187 B PendSV_Handler
mbed_official 489:119543c9f674 188
mbed_official 489:119543c9f674 189 PUBWEAK SysTick_Handler
mbed_official 489:119543c9f674 190 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 191 SysTick_Handler
mbed_official 489:119543c9f674 192 B SysTick_Handler
mbed_official 489:119543c9f674 193
mbed_official 489:119543c9f674 194 PUBWEAK WWDG_IRQHandler
mbed_official 489:119543c9f674 195 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 196 WWDG_IRQHandler
mbed_official 489:119543c9f674 197 B WWDG_IRQHandler
mbed_official 489:119543c9f674 198
mbed_official 489:119543c9f674 199 PUBWEAK PVD_IRQHandler
mbed_official 489:119543c9f674 200 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 201 PVD_IRQHandler
mbed_official 489:119543c9f674 202 B PVD_IRQHandler
mbed_official 489:119543c9f674 203
mbed_official 489:119543c9f674 204 PUBWEAK TAMPER_IRQHandler
mbed_official 489:119543c9f674 205 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 206 TAMPER_IRQHandler
mbed_official 489:119543c9f674 207 B TAMPER_IRQHandler
mbed_official 489:119543c9f674 208
mbed_official 489:119543c9f674 209 PUBWEAK RTC_IRQHandler
mbed_official 489:119543c9f674 210 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 211 RTC_IRQHandler
mbed_official 489:119543c9f674 212 B RTC_IRQHandler
mbed_official 489:119543c9f674 213
mbed_official 489:119543c9f674 214 PUBWEAK FLASH_IRQHandler
mbed_official 489:119543c9f674 215 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 216 FLASH_IRQHandler
mbed_official 489:119543c9f674 217 B FLASH_IRQHandler
mbed_official 489:119543c9f674 218
mbed_official 489:119543c9f674 219 PUBWEAK RCC_IRQHandler
mbed_official 489:119543c9f674 220 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 221 RCC_IRQHandler
mbed_official 489:119543c9f674 222 B RCC_IRQHandler
mbed_official 489:119543c9f674 223
mbed_official 489:119543c9f674 224 PUBWEAK EXTI0_IRQHandler
mbed_official 489:119543c9f674 225 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 226 EXTI0_IRQHandler
mbed_official 489:119543c9f674 227 B EXTI0_IRQHandler
mbed_official 489:119543c9f674 228
mbed_official 489:119543c9f674 229 PUBWEAK EXTI1_IRQHandler
mbed_official 489:119543c9f674 230 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 231 EXTI1_IRQHandler
mbed_official 489:119543c9f674 232 B EXTI1_IRQHandler
mbed_official 489:119543c9f674 233
mbed_official 489:119543c9f674 234 PUBWEAK EXTI2_IRQHandler
mbed_official 489:119543c9f674 235 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 236 EXTI2_IRQHandler
mbed_official 489:119543c9f674 237 B EXTI2_IRQHandler
mbed_official 489:119543c9f674 238
mbed_official 489:119543c9f674 239 PUBWEAK EXTI3_IRQHandler
mbed_official 489:119543c9f674 240 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 241 EXTI3_IRQHandler
mbed_official 489:119543c9f674 242 B EXTI3_IRQHandler
mbed_official 489:119543c9f674 243
mbed_official 489:119543c9f674 244 PUBWEAK EXTI4_IRQHandler
mbed_official 489:119543c9f674 245 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 246 EXTI4_IRQHandler
mbed_official 489:119543c9f674 247 B EXTI4_IRQHandler
mbed_official 489:119543c9f674 248
mbed_official 489:119543c9f674 249 PUBWEAK DMA1_Channel1_IRQHandler
mbed_official 489:119543c9f674 250 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 251 DMA1_Channel1_IRQHandler
mbed_official 489:119543c9f674 252 B DMA1_Channel1_IRQHandler
mbed_official 489:119543c9f674 253
mbed_official 489:119543c9f674 254 PUBWEAK DMA1_Channel2_IRQHandler
mbed_official 489:119543c9f674 255 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 256 DMA1_Channel2_IRQHandler
mbed_official 489:119543c9f674 257 B DMA1_Channel2_IRQHandler
mbed_official 489:119543c9f674 258
mbed_official 489:119543c9f674 259 PUBWEAK DMA1_Channel3_IRQHandler
mbed_official 489:119543c9f674 260 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 261 DMA1_Channel3_IRQHandler
mbed_official 489:119543c9f674 262 B DMA1_Channel3_IRQHandler
mbed_official 489:119543c9f674 263
mbed_official 489:119543c9f674 264 PUBWEAK DMA1_Channel4_IRQHandler
mbed_official 489:119543c9f674 265 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 266 DMA1_Channel4_IRQHandler
mbed_official 489:119543c9f674 267 B DMA1_Channel4_IRQHandler
mbed_official 489:119543c9f674 268
mbed_official 489:119543c9f674 269 PUBWEAK DMA1_Channel5_IRQHandler
mbed_official 489:119543c9f674 270 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 271 DMA1_Channel5_IRQHandler
mbed_official 489:119543c9f674 272 B DMA1_Channel5_IRQHandler
mbed_official 489:119543c9f674 273
mbed_official 489:119543c9f674 274 PUBWEAK DMA1_Channel6_IRQHandler
mbed_official 489:119543c9f674 275 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 276 DMA1_Channel6_IRQHandler
mbed_official 489:119543c9f674 277 B DMA1_Channel6_IRQHandler
mbed_official 489:119543c9f674 278
mbed_official 489:119543c9f674 279 PUBWEAK DMA1_Channel7_IRQHandler
mbed_official 489:119543c9f674 280 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 281 DMA1_Channel7_IRQHandler
mbed_official 489:119543c9f674 282 B DMA1_Channel7_IRQHandler
mbed_official 489:119543c9f674 283
mbed_official 489:119543c9f674 284 PUBWEAK ADC1_2_IRQHandler
mbed_official 489:119543c9f674 285 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 286 ADC1_2_IRQHandler
mbed_official 489:119543c9f674 287 B ADC1_2_IRQHandler
mbed_official 489:119543c9f674 288
mbed_official 489:119543c9f674 289 PUBWEAK USB_HP_CAN1_TX_IRQHandler
mbed_official 489:119543c9f674 290 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 291 USB_HP_CAN1_TX_IRQHandler
mbed_official 489:119543c9f674 292 B USB_HP_CAN1_TX_IRQHandler
mbed_official 489:119543c9f674 293
mbed_official 489:119543c9f674 294 PUBWEAK USB_LP_CAN1_RX0_IRQHandler
mbed_official 489:119543c9f674 295 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 296 USB_LP_CAN1_RX0_IRQHandler
mbed_official 489:119543c9f674 297 B USB_LP_CAN1_RX0_IRQHandler
mbed_official 489:119543c9f674 298
mbed_official 489:119543c9f674 299 PUBWEAK CAN1_RX1_IRQHandler
mbed_official 489:119543c9f674 300 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 301 CAN1_RX1_IRQHandler
mbed_official 489:119543c9f674 302 B CAN1_RX1_IRQHandler
mbed_official 489:119543c9f674 303
mbed_official 489:119543c9f674 304 PUBWEAK CAN1_SCE_IRQHandler
mbed_official 489:119543c9f674 305 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 306 CAN1_SCE_IRQHandler
mbed_official 489:119543c9f674 307 B CAN1_SCE_IRQHandler
mbed_official 489:119543c9f674 308
mbed_official 489:119543c9f674 309 PUBWEAK EXTI9_5_IRQHandler
mbed_official 489:119543c9f674 310 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 311 EXTI9_5_IRQHandler
mbed_official 489:119543c9f674 312 B EXTI9_5_IRQHandler
mbed_official 489:119543c9f674 313
mbed_official 489:119543c9f674 314 PUBWEAK TIM1_BRK_IRQHandler
mbed_official 489:119543c9f674 315 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 316 TIM1_BRK_IRQHandler
mbed_official 489:119543c9f674 317 B TIM1_BRK_IRQHandler
mbed_official 489:119543c9f674 318
mbed_official 489:119543c9f674 319 PUBWEAK TIM1_UP_IRQHandler
mbed_official 489:119543c9f674 320 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 321 TIM1_UP_IRQHandler
mbed_official 489:119543c9f674 322 B TIM1_UP_IRQHandler
mbed_official 489:119543c9f674 323
mbed_official 489:119543c9f674 324 PUBWEAK TIM1_TRG_COM_IRQHandler
mbed_official 489:119543c9f674 325 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 326 TIM1_TRG_COM_IRQHandler
mbed_official 489:119543c9f674 327 B TIM1_TRG_COM_IRQHandler
mbed_official 489:119543c9f674 328
mbed_official 489:119543c9f674 329 PUBWEAK TIM1_CC_IRQHandler
mbed_official 489:119543c9f674 330 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 331 TIM1_CC_IRQHandler
mbed_official 489:119543c9f674 332 B TIM1_CC_IRQHandler
mbed_official 489:119543c9f674 333
mbed_official 489:119543c9f674 334 PUBWEAK TIM2_IRQHandler
mbed_official 489:119543c9f674 335 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 336 TIM2_IRQHandler
mbed_official 489:119543c9f674 337 B TIM2_IRQHandler
mbed_official 489:119543c9f674 338
mbed_official 489:119543c9f674 339 PUBWEAK TIM3_IRQHandler
mbed_official 489:119543c9f674 340 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 341 TIM3_IRQHandler
mbed_official 489:119543c9f674 342 B TIM3_IRQHandler
mbed_official 489:119543c9f674 343
mbed_official 489:119543c9f674 344 PUBWEAK TIM4_IRQHandler
mbed_official 489:119543c9f674 345 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 346 TIM4_IRQHandler
mbed_official 489:119543c9f674 347 B TIM4_IRQHandler
mbed_official 489:119543c9f674 348
mbed_official 489:119543c9f674 349 PUBWEAK I2C1_EV_IRQHandler
mbed_official 489:119543c9f674 350 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 351 I2C1_EV_IRQHandler
mbed_official 489:119543c9f674 352 B I2C1_EV_IRQHandler
mbed_official 489:119543c9f674 353
mbed_official 489:119543c9f674 354 PUBWEAK I2C1_ER_IRQHandler
mbed_official 489:119543c9f674 355 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 356 I2C1_ER_IRQHandler
mbed_official 489:119543c9f674 357 B I2C1_ER_IRQHandler
mbed_official 489:119543c9f674 358
mbed_official 489:119543c9f674 359 PUBWEAK I2C2_EV_IRQHandler
mbed_official 489:119543c9f674 360 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 361 I2C2_EV_IRQHandler
mbed_official 489:119543c9f674 362 B I2C2_EV_IRQHandler
mbed_official 489:119543c9f674 363
mbed_official 489:119543c9f674 364 PUBWEAK I2C2_ER_IRQHandler
mbed_official 489:119543c9f674 365 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 366 I2C2_ER_IRQHandler
mbed_official 489:119543c9f674 367 B I2C2_ER_IRQHandler
mbed_official 489:119543c9f674 368
mbed_official 489:119543c9f674 369 PUBWEAK SPI1_IRQHandler
mbed_official 489:119543c9f674 370 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 371 SPI1_IRQHandler
mbed_official 489:119543c9f674 372 B SPI1_IRQHandler
mbed_official 489:119543c9f674 373
mbed_official 489:119543c9f674 374 PUBWEAK SPI2_IRQHandler
mbed_official 489:119543c9f674 375 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 376 SPI2_IRQHandler
mbed_official 489:119543c9f674 377 B SPI2_IRQHandler
mbed_official 489:119543c9f674 378
mbed_official 489:119543c9f674 379 PUBWEAK USART1_IRQHandler
mbed_official 489:119543c9f674 380 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 381 USART1_IRQHandler
mbed_official 489:119543c9f674 382 B USART1_IRQHandler
mbed_official 489:119543c9f674 383
mbed_official 489:119543c9f674 384 PUBWEAK USART2_IRQHandler
mbed_official 489:119543c9f674 385 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 386 USART2_IRQHandler
mbed_official 489:119543c9f674 387 B USART2_IRQHandler
mbed_official 489:119543c9f674 388
mbed_official 489:119543c9f674 389 PUBWEAK USART3_IRQHandler
mbed_official 489:119543c9f674 390 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 391 USART3_IRQHandler
mbed_official 489:119543c9f674 392 B USART3_IRQHandler
mbed_official 489:119543c9f674 393
mbed_official 489:119543c9f674 394 PUBWEAK EXTI15_10_IRQHandler
mbed_official 489:119543c9f674 395 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 396 EXTI15_10_IRQHandler
mbed_official 489:119543c9f674 397 B EXTI15_10_IRQHandler
mbed_official 489:119543c9f674 398
mbed_official 489:119543c9f674 399 PUBWEAK RTC_Alarm_IRQHandler
mbed_official 489:119543c9f674 400 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 401 RTC_Alarm_IRQHandler
mbed_official 489:119543c9f674 402 B RTC_Alarm_IRQHandler
mbed_official 489:119543c9f674 403
mbed_official 489:119543c9f674 404 PUBWEAK USBWakeUp_IRQHandler
mbed_official 489:119543c9f674 405 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 489:119543c9f674 406 USBWakeUp_IRQHandler
mbed_official 489:119543c9f674 407 B USBWakeUp_IRQHandler
mbed_official 489:119543c9f674 408
mbed_official 489:119543c9f674 409 END
mbed_official 489:119543c9f674 410 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/