mbed library sources

Dependents:   Freedman_v2 Nucleo_i2c_OLED_BME280_copy

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Wed Jul 01 08:15:11 2015 +0100
Revision:
577:15494b56c2f3
Parent:
targets/cmsis/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F072RB/TOOLCHAIN_ARM_STD/startup_stm32f072xb.s@392:2b59412bb664
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 205:c41fc65bcfb4 1 ;******************** (C) COPYRIGHT 2014 STMicroelectronics ********************
mbed_official 205:c41fc65bcfb4 2 ;* File Name : startup_stm32f072xb.s
mbed_official 205:c41fc65bcfb4 3 ;* Author : MCD Application Team
mbed_official 205:c41fc65bcfb4 4 ;* Version : V2.0.0
mbed_official 205:c41fc65bcfb4 5 ;* Date : 20-May-2014
mbed_official 205:c41fc65bcfb4 6 ;* Description : STM32F072x8/STM32F072xB devices vector table for MDK-ARM_STD toolchain.
mbed_official 205:c41fc65bcfb4 7 ;* This module performs:
mbed_official 205:c41fc65bcfb4 8 ;* - Set the initial SP
mbed_official 205:c41fc65bcfb4 9 ;* - Set the initial PC == Reset_Handler
mbed_official 205:c41fc65bcfb4 10 ;* - Set the vector table entries with the exceptions ISR address
mbed_official 205:c41fc65bcfb4 11 ;* - Branches to __main in the C library (which eventually
mbed_official 205:c41fc65bcfb4 12 ;* calls main()).
mbed_official 205:c41fc65bcfb4 13 ;* After Reset the CortexM0 processor is in Thread mode,
mbed_official 205:c41fc65bcfb4 14 ;* priority is Privileged, and the Stack is set to Main.
mbed_official 205:c41fc65bcfb4 15 ;* <<< Use Configuration Wizard in Context Menu >>>
mbed_official 205:c41fc65bcfb4 16 ;*******************************************************************************
mbed_official 205:c41fc65bcfb4 17 ;
mbed_official 205:c41fc65bcfb4 18 ;* Redistribution and use in source and binary forms, with or without modification,
mbed_official 205:c41fc65bcfb4 19 ;* are permitted provided that the following conditions are met:
mbed_official 205:c41fc65bcfb4 20 ;* 1. Redistributions of source code must retain the above copyright notice,
mbed_official 205:c41fc65bcfb4 21 ;* this list of conditions and the following disclaimer.
mbed_official 205:c41fc65bcfb4 22 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 205:c41fc65bcfb4 23 ;* this list of conditions and the following disclaimer in the documentation
mbed_official 205:c41fc65bcfb4 24 ;* and/or other materials provided with the distribution.
mbed_official 205:c41fc65bcfb4 25 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 205:c41fc65bcfb4 26 ;* may be used to endorse or promote products derived from this software
mbed_official 205:c41fc65bcfb4 27 ;* without specific prior written permission.
mbed_official 205:c41fc65bcfb4 28 ;*
mbed_official 205:c41fc65bcfb4 29 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 205:c41fc65bcfb4 30 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 205:c41fc65bcfb4 31 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 205:c41fc65bcfb4 32 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 205:c41fc65bcfb4 33 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 205:c41fc65bcfb4 34 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 205:c41fc65bcfb4 35 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 205:c41fc65bcfb4 36 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 205:c41fc65bcfb4 37 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 205:c41fc65bcfb4 38 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 205:c41fc65bcfb4 39 ;
mbed_official 205:c41fc65bcfb4 40 ;*******************************************************************************
mbed_official 205:c41fc65bcfb4 41
mbed_official 205:c41fc65bcfb4 42 __initial_sp EQU 0x20004000 ; Top of RAM (16KB)
mbed_official 205:c41fc65bcfb4 43
mbed_official 205:c41fc65bcfb4 44 PRESERVE8
mbed_official 205:c41fc65bcfb4 45 THUMB
mbed_official 205:c41fc65bcfb4 46
mbed_official 205:c41fc65bcfb4 47
mbed_official 205:c41fc65bcfb4 48 ; Vector Table Mapped to Address 0 at Reset
mbed_official 205:c41fc65bcfb4 49 AREA RESET, DATA, READONLY
mbed_official 205:c41fc65bcfb4 50 EXPORT __Vectors
mbed_official 205:c41fc65bcfb4 51 EXPORT __Vectors_End
mbed_official 205:c41fc65bcfb4 52 EXPORT __Vectors_Size
mbed_official 205:c41fc65bcfb4 53
mbed_official 205:c41fc65bcfb4 54 __Vectors DCD __initial_sp ; Top of Stack
mbed_official 205:c41fc65bcfb4 55 DCD Reset_Handler ; Reset Handler
mbed_official 205:c41fc65bcfb4 56 DCD NMI_Handler ; NMI Handler
mbed_official 205:c41fc65bcfb4 57 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 205:c41fc65bcfb4 58 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 59 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 60 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 61 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 62 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 63 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 64 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 65 DCD SVC_Handler ; SVCall Handler
mbed_official 205:c41fc65bcfb4 66 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 67 DCD 0 ; Reserved
mbed_official 205:c41fc65bcfb4 68 DCD PendSV_Handler ; PendSV Handler
mbed_official 205:c41fc65bcfb4 69 DCD SysTick_Handler ; SysTick Handler
mbed_official 205:c41fc65bcfb4 70
mbed_official 205:c41fc65bcfb4 71 ; External Interrupts
mbed_official 205:c41fc65bcfb4 72 DCD WWDG_IRQHandler ; Window Watchdog
mbed_official 205:c41fc65bcfb4 73 DCD PVD_VDDIO2_IRQHandler ; PVD through EXTI Line detect
mbed_official 205:c41fc65bcfb4 74 DCD RTC_IRQHandler ; RTC through EXTI Line
mbed_official 205:c41fc65bcfb4 75 DCD FLASH_IRQHandler ; FLASH
mbed_official 205:c41fc65bcfb4 76 DCD RCC_CRS_IRQHandler ; RCC and CRS
mbed_official 205:c41fc65bcfb4 77 DCD EXTI0_1_IRQHandler ; EXTI Line 0 and 1
mbed_official 205:c41fc65bcfb4 78 DCD EXTI2_3_IRQHandler ; EXTI Line 2 and 3
mbed_official 205:c41fc65bcfb4 79 DCD EXTI4_15_IRQHandler ; EXTI Line 4 to 15
mbed_official 205:c41fc65bcfb4 80 DCD TSC_IRQHandler ; TS
mbed_official 205:c41fc65bcfb4 81 DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1
mbed_official 205:c41fc65bcfb4 82 DCD DMA1_Channel2_3_IRQHandler ; DMA1 Channel 2 and Channel 3
mbed_official 205:c41fc65bcfb4 83 DCD DMA1_Channel4_5_6_7_IRQHandler ; DMA1 Channel 4, Channel 5, Channel 6 and Channel 7
mbed_official 205:c41fc65bcfb4 84 DCD ADC1_COMP_IRQHandler ; ADC1, COMP1 and COMP2
mbed_official 205:c41fc65bcfb4 85 DCD TIM1_BRK_UP_TRG_COM_IRQHandler ; TIM1 Break, Update, Trigger and Commutation
mbed_official 205:c41fc65bcfb4 86 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
mbed_official 205:c41fc65bcfb4 87 DCD TIM2_IRQHandler ; TIM2
mbed_official 205:c41fc65bcfb4 88 DCD TIM3_IRQHandler ; TIM3
mbed_official 205:c41fc65bcfb4 89 DCD TIM6_DAC_IRQHandler ; TIM6 and DAC
mbed_official 205:c41fc65bcfb4 90 DCD TIM7_IRQHandler ; TIM7
mbed_official 205:c41fc65bcfb4 91 DCD TIM14_IRQHandler ; TIM14
mbed_official 205:c41fc65bcfb4 92 DCD TIM15_IRQHandler ; TIM15
mbed_official 205:c41fc65bcfb4 93 DCD TIM16_IRQHandler ; TIM16
mbed_official 205:c41fc65bcfb4 94 DCD TIM17_IRQHandler ; TIM17
mbed_official 205:c41fc65bcfb4 95 DCD I2C1_IRQHandler ; I2C1
mbed_official 205:c41fc65bcfb4 96 DCD I2C2_IRQHandler ; I2C2
mbed_official 205:c41fc65bcfb4 97 DCD SPI1_IRQHandler ; SPI1
mbed_official 205:c41fc65bcfb4 98 DCD SPI2_IRQHandler ; SPI2
mbed_official 205:c41fc65bcfb4 99 DCD USART1_IRQHandler ; USART1
mbed_official 205:c41fc65bcfb4 100 DCD USART2_IRQHandler ; USART2
mbed_official 205:c41fc65bcfb4 101 DCD USART3_4_IRQHandler ; USART3 & USART4
mbed_official 205:c41fc65bcfb4 102 DCD CEC_CAN_IRQHandler ; CEC and CAN
mbed_official 205:c41fc65bcfb4 103 DCD USB_IRQHandler ; USB
mbed_official 205:c41fc65bcfb4 104
mbed_official 205:c41fc65bcfb4 105 __Vectors_End
mbed_official 205:c41fc65bcfb4 106
mbed_official 205:c41fc65bcfb4 107 __Vectors_Size EQU __Vectors_End - __Vectors
mbed_official 205:c41fc65bcfb4 108
mbed_official 205:c41fc65bcfb4 109 AREA |.text|, CODE, READONLY
mbed_official 205:c41fc65bcfb4 110
mbed_official 205:c41fc65bcfb4 111 ; Reset handler routine
mbed_official 205:c41fc65bcfb4 112 Reset_Handler PROC
mbed_official 205:c41fc65bcfb4 113 EXPORT Reset_Handler [WEAK]
mbed_official 205:c41fc65bcfb4 114 IMPORT __main
mbed_official 205:c41fc65bcfb4 115 IMPORT SystemInit
mbed_official 205:c41fc65bcfb4 116 LDR R0, =SystemInit
mbed_official 205:c41fc65bcfb4 117 BLX R0
mbed_official 205:c41fc65bcfb4 118 LDR R0, =__main
mbed_official 205:c41fc65bcfb4 119 BX R0
mbed_official 205:c41fc65bcfb4 120 ENDP
mbed_official 205:c41fc65bcfb4 121
mbed_official 205:c41fc65bcfb4 122 ; Dummy Exception Handlers (infinite loops which can be modified)
mbed_official 205:c41fc65bcfb4 123
mbed_official 205:c41fc65bcfb4 124 NMI_Handler PROC
mbed_official 205:c41fc65bcfb4 125 EXPORT NMI_Handler [WEAK]
mbed_official 205:c41fc65bcfb4 126 B .
mbed_official 205:c41fc65bcfb4 127 ENDP
mbed_official 205:c41fc65bcfb4 128 HardFault_Handler\
mbed_official 205:c41fc65bcfb4 129 PROC
mbed_official 205:c41fc65bcfb4 130 EXPORT HardFault_Handler [WEAK]
mbed_official 205:c41fc65bcfb4 131 B .
mbed_official 205:c41fc65bcfb4 132 ENDP
mbed_official 205:c41fc65bcfb4 133 SVC_Handler PROC
mbed_official 205:c41fc65bcfb4 134 EXPORT SVC_Handler [WEAK]
mbed_official 205:c41fc65bcfb4 135 B .
mbed_official 205:c41fc65bcfb4 136 ENDP
mbed_official 205:c41fc65bcfb4 137 PendSV_Handler PROC
mbed_official 205:c41fc65bcfb4 138 EXPORT PendSV_Handler [WEAK]
mbed_official 205:c41fc65bcfb4 139 B .
mbed_official 205:c41fc65bcfb4 140 ENDP
mbed_official 205:c41fc65bcfb4 141 SysTick_Handler PROC
mbed_official 205:c41fc65bcfb4 142 EXPORT SysTick_Handler [WEAK]
mbed_official 205:c41fc65bcfb4 143 B .
mbed_official 205:c41fc65bcfb4 144 ENDP
mbed_official 205:c41fc65bcfb4 145
mbed_official 205:c41fc65bcfb4 146 Default_Handler PROC
mbed_official 205:c41fc65bcfb4 147
mbed_official 205:c41fc65bcfb4 148 EXPORT WWDG_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 149 EXPORT PVD_VDDIO2_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 150 EXPORT RTC_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 151 EXPORT FLASH_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 152 EXPORT RCC_CRS_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 153 EXPORT EXTI0_1_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 154 EXPORT EXTI2_3_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 155 EXPORT EXTI4_15_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 156 EXPORT TSC_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 157 EXPORT DMA1_Channel1_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 158 EXPORT DMA1_Channel2_3_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 159 EXPORT DMA1_Channel4_5_6_7_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 160 EXPORT ADC1_COMP_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 161 EXPORT TIM1_BRK_UP_TRG_COM_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 162 EXPORT TIM1_CC_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 163 EXPORT TIM2_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 164 EXPORT TIM3_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 165 EXPORT TIM6_DAC_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 166 EXPORT TIM7_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 167 EXPORT TIM14_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 168 EXPORT TIM15_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 169 EXPORT TIM16_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 170 EXPORT TIM17_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 171 EXPORT I2C1_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 172 EXPORT I2C2_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 173 EXPORT SPI1_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 174 EXPORT SPI2_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 175 EXPORT USART1_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 176 EXPORT USART2_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 177 EXPORT USART3_4_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 178 EXPORT CEC_CAN_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 179 EXPORT USB_IRQHandler [WEAK]
mbed_official 205:c41fc65bcfb4 180
mbed_official 205:c41fc65bcfb4 181
mbed_official 205:c41fc65bcfb4 182 WWDG_IRQHandler
mbed_official 205:c41fc65bcfb4 183 PVD_VDDIO2_IRQHandler
mbed_official 205:c41fc65bcfb4 184 RTC_IRQHandler
mbed_official 205:c41fc65bcfb4 185 FLASH_IRQHandler
mbed_official 205:c41fc65bcfb4 186 RCC_CRS_IRQHandler
mbed_official 205:c41fc65bcfb4 187 EXTI0_1_IRQHandler
mbed_official 205:c41fc65bcfb4 188 EXTI2_3_IRQHandler
mbed_official 205:c41fc65bcfb4 189 EXTI4_15_IRQHandler
mbed_official 205:c41fc65bcfb4 190 TSC_IRQHandler
mbed_official 205:c41fc65bcfb4 191 DMA1_Channel1_IRQHandler
mbed_official 205:c41fc65bcfb4 192 DMA1_Channel2_3_IRQHandler
mbed_official 205:c41fc65bcfb4 193 DMA1_Channel4_5_6_7_IRQHandler
mbed_official 205:c41fc65bcfb4 194 ADC1_COMP_IRQHandler
mbed_official 205:c41fc65bcfb4 195 TIM1_BRK_UP_TRG_COM_IRQHandler
mbed_official 205:c41fc65bcfb4 196 TIM1_CC_IRQHandler
mbed_official 205:c41fc65bcfb4 197 TIM2_IRQHandler
mbed_official 205:c41fc65bcfb4 198 TIM3_IRQHandler
mbed_official 205:c41fc65bcfb4 199 TIM6_DAC_IRQHandler
mbed_official 205:c41fc65bcfb4 200 TIM7_IRQHandler
mbed_official 205:c41fc65bcfb4 201 TIM14_IRQHandler
mbed_official 205:c41fc65bcfb4 202 TIM15_IRQHandler
mbed_official 205:c41fc65bcfb4 203 TIM16_IRQHandler
mbed_official 205:c41fc65bcfb4 204 TIM17_IRQHandler
mbed_official 205:c41fc65bcfb4 205 I2C1_IRQHandler
mbed_official 205:c41fc65bcfb4 206 I2C2_IRQHandler
mbed_official 205:c41fc65bcfb4 207 SPI1_IRQHandler
mbed_official 205:c41fc65bcfb4 208 SPI2_IRQHandler
mbed_official 205:c41fc65bcfb4 209 USART1_IRQHandler
mbed_official 205:c41fc65bcfb4 210 USART2_IRQHandler
mbed_official 205:c41fc65bcfb4 211 USART3_4_IRQHandler
mbed_official 205:c41fc65bcfb4 212 CEC_CAN_IRQHandler
mbed_official 205:c41fc65bcfb4 213 USB_IRQHandler
mbed_official 205:c41fc65bcfb4 214
mbed_official 205:c41fc65bcfb4 215 B .
mbed_official 205:c41fc65bcfb4 216
mbed_official 205:c41fc65bcfb4 217 ENDP
mbed_official 205:c41fc65bcfb4 218
mbed_official 205:c41fc65bcfb4 219 ALIGN
mbed_official 205:c41fc65bcfb4 220 END