Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2 | Rev 3 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | ;******************** (C) COPYRIGHT 2017 STMicroelectronics ******************** |
1 | ;******************** (C) COPYRIGHT 2017 STMicroelectronics ******************** |
| 2 | ;* File Name : startup_stm32f101x6.s |
2 | ;* File Name : startup_stm32f101x6.s |
| 3 | ;* Author : MCD Application Team |
3 | ;* Author : MCD Application Team |
| 4 | ;* Description : STM32F101x6 Access Line Devices vector table for EWARM |
4 | ;* Description : STM32F101x6 Access Line Devices vector table for EWARM |
| 5 | ;* toolchain. |
5 | ;* toolchain. |
| 6 | ;* This module performs: |
6 | ;* This module performs: |
| 7 | ;* - Set the initial SP |
7 | ;* - Set the initial SP |
| 8 | ;* - Configure the clock system |
8 | ;* - Configure the clock system |
| 9 | ;* - Set the initial PC == __iar_program_start, |
9 | ;* - Set the initial PC == __iar_program_start, |
| 10 | ;* - Set the vector table entries with the exceptions ISR |
10 | ;* - Set the vector table entries with the exceptions ISR |
| 11 | ;* address. |
11 | ;* address. |
| 12 | ;* After Reset the Cortex-M3 processor is in Thread mode, |
12 | ;* After Reset the Cortex-M3 processor is in Thread mode, |
| 13 | ;* priority is Privileged, and the Stack is set to Main. |
13 | ;* priority is Privileged, and the Stack is set to Main. |
| 14 | ;******************************************************************************* |
14 | ;******************************************************************************** |
| 15 | ;* @attention |
15 | ;* |
| 16 | ;* |
16 | ;* Copyright (c) 2017-2021 STMicroelectronics. |
| 17 | ;* <h2><center>© Copyright (c) 2017 STMicroelectronics. |
17 | ;* All rights reserved. |
| 18 | ;* All rights reserved.</center></h2> |
18 | ;* |
| 19 | ;* |
19 | ;* This software is licensed under terms that can be found in the LICENSE file |
| 20 | ;* This software component is licensed by ST under BSD 3-Clause license, |
20 | ;* in the root directory of this software component. |
| 21 | ;* the "License"; You may not use this file except in compliance with the |
21 | ;* If no LICENSE file comes with this software, it is provided AS-IS. |
| 22 | ;* License. You may obtain a copy of the License at: |
22 | ; |
| 23 | ;* opensource.org/licenses/BSD-3-Clause |
23 | ;******************************************************************************* |
| 24 | ;* |
24 | ; |
| 25 | ;******************************************************************************* |
25 | ; |
| 26 | ; |
26 | ; The modules in this file are included in the libraries, and may be replaced |
| 27 | ; |
27 | ; by any user-defined modules that define the PUBLIC symbol _program_start or |
| 28 | ; The modules in this file are included in the libraries, and may be replaced |
28 | ; a user defined start symbol. |
| 29 | ; by any user-defined modules that define the PUBLIC symbol _program_start or |
29 | ; To override the cstartup defined in the library, simply add your modified |
| 30 | ; a user defined start symbol. |
30 | ; version to the workbench project. |
| 31 | ; To override the cstartup defined in the library, simply add your modified |
31 | ; |
| 32 | ; version to the workbench project. |
32 | ; The vector table is normally located at address 0. |
| 33 | ; |
33 | ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6. |
| 34 | ; The vector table is normally located at address 0. |
34 | ; The name "__vector_table" has special meaning for C-SPY: |
| 35 | ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6. |
35 | ; it is where the SP start value is found, and the NVIC vector |
| 36 | ; The name "__vector_table" has special meaning for C-SPY: |
36 | ; table register (VTOR) is initialized to this address if != 0. |
| 37 | ; it is where the SP start value is found, and the NVIC vector |
37 | ; |
| 38 | ; table register (VTOR) is initialized to this address if != 0. |
38 | ; Cortex-M version |
| 39 | ; |
39 | ; |
| 40 | ; Cortex-M version |
40 | |
| 41 | ; |
41 | MODULE ?cstartup |
| 42 | 42 | ||
| 43 | MODULE ?cstartup |
43 | ;; Forward declaration of sections. |
| 44 | 44 | SECTION CSTACK:DATA:NOROOT(3) |
|
| 45 | ;; Forward declaration of sections. |
45 | |
| 46 | SECTION CSTACK:DATA:NOROOT(3) |
46 | SECTION .intvec:CODE:NOROOT(2) |
| 47 | 47 | ||
| 48 | SECTION .intvec:CODE:NOROOT(2) |
48 | EXTERN __iar_program_start |
| 49 | 49 | EXTERN SystemInit |
|
| 50 | EXTERN __iar_program_start |
50 | PUBLIC __vector_table |
| 51 | EXTERN SystemInit |
51 | |
| 52 | PUBLIC __vector_table |
52 | DATA |
| 53 | 53 | __vector_table |
|
| 54 | DATA |
54 | DCD sfe(CSTACK) |
| 55 | __vector_table |
55 | DCD Reset_Handler ; Reset Handler |
| 56 | DCD sfe(CSTACK) |
56 | DCD NMI_Handler ; NMI Handler |
| 57 | DCD Reset_Handler ; Reset Handler |
57 | DCD HardFault_Handler ; Hard Fault Handler |
| 58 | DCD NMI_Handler ; NMI Handler |
58 | DCD MemManage_Handler ; MPU Fault Handler |
| 59 | DCD HardFault_Handler ; Hard Fault Handler |
59 | DCD BusFault_Handler ; Bus Fault Handler |
| 60 | DCD MemManage_Handler ; MPU Fault Handler |
60 | DCD UsageFault_Handler ; Usage Fault Handler |
| 61 | DCD BusFault_Handler ; Bus Fault Handler |
61 | DCD 0 ; Reserved |
| 62 | DCD UsageFault_Handler ; Usage Fault Handler |
62 | DCD 0 ; Reserved |
| 63 | DCD 0 ; Reserved |
63 | DCD 0 ; Reserved |
| 64 | DCD 0 ; Reserved |
64 | DCD 0 ; Reserved |
| 65 | DCD 0 ; Reserved |
65 | DCD SVC_Handler ; SVCall Handler |
| 66 | DCD 0 ; Reserved |
66 | DCD DebugMon_Handler ; Debug Monitor Handler |
| 67 | DCD SVC_Handler ; SVCall Handler |
67 | DCD 0 ; Reserved |
| 68 | DCD DebugMon_Handler ; Debug Monitor Handler |
68 | DCD PendSV_Handler ; PendSV Handler |
| 69 | DCD 0 ; Reserved |
69 | DCD SysTick_Handler ; SysTick Handler |
| 70 | DCD PendSV_Handler ; PendSV Handler |
70 | |
| 71 | DCD SysTick_Handler ; SysTick Handler |
71 | ; External Interrupts |
| 72 | 72 | DCD WWDG_IRQHandler ; Window Watchdog |
|
| 73 | ; External Interrupts |
73 | DCD PVD_IRQHandler ; PVD through EXTI Line detect |
| 74 | DCD WWDG_IRQHandler ; Window Watchdog |
74 | DCD TAMPER_IRQHandler ; Tamper |
| 75 | DCD PVD_IRQHandler ; PVD through EXTI Line detect |
75 | DCD RTC_IRQHandler ; RTC |
| 76 | DCD TAMPER_IRQHandler ; Tamper |
76 | DCD FLASH_IRQHandler ; Flash |
| 77 | DCD RTC_IRQHandler ; RTC |
77 | DCD RCC_IRQHandler ; RCC |
| 78 | DCD FLASH_IRQHandler ; Flash |
78 | DCD EXTI0_IRQHandler ; EXTI Line 0 |
| 79 | DCD RCC_IRQHandler ; RCC |
79 | DCD EXTI1_IRQHandler ; EXTI Line 1 |
| 80 | DCD EXTI0_IRQHandler ; EXTI Line 0 |
80 | DCD EXTI2_IRQHandler ; EXTI Line 2 |
| 81 | DCD EXTI1_IRQHandler ; EXTI Line 1 |
81 | DCD EXTI3_IRQHandler ; EXTI Line 3 |
| 82 | DCD EXTI2_IRQHandler ; EXTI Line 2 |
82 | DCD EXTI4_IRQHandler ; EXTI Line 4 |
| 83 | DCD EXTI3_IRQHandler ; EXTI Line 3 |
83 | DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1 |
| 84 | DCD EXTI4_IRQHandler ; EXTI Line 4 |
84 | DCD DMA1_Channel2_IRQHandler ; DMA1 Channel 2 |
| 85 | DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1 |
85 | DCD DMA1_Channel3_IRQHandler ; DMA1 Channel 3 |
| 86 | DCD DMA1_Channel2_IRQHandler ; DMA1 Channel 2 |
86 | DCD DMA1_Channel4_IRQHandler ; DMA1 Channel 4 |
| 87 | DCD DMA1_Channel3_IRQHandler ; DMA1 Channel 3 |
87 | DCD DMA1_Channel5_IRQHandler ; DMA1 Channel 5 |
| 88 | DCD DMA1_Channel4_IRQHandler ; DMA1 Channel 4 |
88 | DCD DMA1_Channel6_IRQHandler ; DMA1 Channel 6 |
| 89 | DCD DMA1_Channel5_IRQHandler ; DMA1 Channel 5 |
89 | DCD DMA1_Channel7_IRQHandler ; DMA1 Channel 7 |
| 90 | DCD DMA1_Channel6_IRQHandler ; DMA1 Channel 6 |
90 | DCD ADC1_IRQHandler ; ADC1 |
| 91 | DCD DMA1_Channel7_IRQHandler ; DMA1 Channel 7 |
91 | DCD 0 ; Reserved |
| 92 | DCD ADC1_IRQHandler ; ADC1 |
92 | DCD 0 ; Reserved |
| 93 | DCD 0 ; Reserved |
93 | DCD 0 ; Reserved |
| 94 | DCD 0 ; Reserved |
94 | DCD 0 ; Reserved |
| 95 | DCD 0 ; Reserved |
95 | DCD EXTI9_5_IRQHandler ; EXTI Line 9..5 |
| 96 | DCD 0 ; Reserved |
96 | DCD 0 ; Reserved |
| 97 | DCD EXTI9_5_IRQHandler ; EXTI Line 9..5 |
97 | DCD 0 ; Reserved |
| 98 | DCD 0 ; Reserved |
98 | DCD 0 ; Reserved |
| 99 | DCD 0 ; Reserved |
99 | DCD 0 ; Reserved |
| 100 | DCD 0 ; Reserved |
100 | DCD TIM2_IRQHandler ; TIM2 |
| 101 | DCD 0 ; Reserved |
101 | DCD TIM3_IRQHandler ; TIM3 |
| 102 | DCD TIM2_IRQHandler ; TIM2 |
102 | DCD 0 ; Reserved |
| 103 | DCD TIM3_IRQHandler ; TIM3 |
103 | DCD I2C1_EV_IRQHandler ; I2C1 Event |
| 104 | DCD 0 ; Reserved |
104 | DCD I2C1_ER_IRQHandler ; I2C1 Error |
| 105 | DCD I2C1_EV_IRQHandler ; I2C1 Event |
105 | DCD 0 ; Reserved |
| 106 | DCD I2C1_ER_IRQHandler ; I2C1 Error |
106 | DCD 0 ; Reserved |
| 107 | DCD 0 ; Reserved |
107 | DCD SPI1_IRQHandler ; SPI1 |
| 108 | DCD 0 ; Reserved |
108 | DCD 0 ; Reserved |
| 109 | DCD SPI1_IRQHandler ; SPI1 |
109 | DCD USART1_IRQHandler ; USART1 |
| 110 | DCD 0 ; Reserved |
110 | DCD USART2_IRQHandler ; USART2 |
| 111 | DCD USART1_IRQHandler ; USART1 |
111 | DCD 0 ; Reserved |
| 112 | DCD USART2_IRQHandler ; USART2 |
112 | DCD EXTI15_10_IRQHandler ; EXTI Line 15..10 |
| 113 | DCD 0 ; Reserved |
113 | DCD RTC_Alarm_IRQHandler ; RTC Alarm through EXTI Line |
| 114 | DCD EXTI15_10_IRQHandler ; EXTI Line 15..10 |
114 | DCD 0 ; Reserved |
| 115 | DCD RTC_Alarm_IRQHandler ; RTC Alarm through EXTI Line |
115 | |
| 116 | DCD 0 ; Reserved |
116 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 117 | 117 | ;; |
|
| 118 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
118 | ;; Default interrupt handlers. |
| 119 | ;; |
119 | ;; |
| 120 | ;; Default interrupt handlers. |
120 | THUMB |
| 121 | ;; |
121 | |
| 122 | THUMB |
122 | PUBWEAK Reset_Handler |
| 123 | 123 | SECTION .text:CODE:REORDER:NOROOT(2) |
|
| 124 | PUBWEAK Reset_Handler |
124 | Reset_Handler |
| 125 | SECTION .text:CODE:REORDER:NOROOT(2) |
125 | LDR R0, =SystemInit |
| 126 | Reset_Handler |
126 | BLX R0 |
| 127 | LDR R0, =SystemInit |
127 | LDR R0, =__iar_program_start |
| 128 | BLX R0 |
128 | BX R0 |
| 129 | LDR R0, =__iar_program_start |
129 | |
| 130 | BX R0 |
130 | PUBWEAK NMI_Handler |
| 131 | 131 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 132 | PUBWEAK NMI_Handler |
132 | NMI_Handler |
| 133 | SECTION .text:CODE:REORDER:NOROOT(1) |
133 | B NMI_Handler |
| 134 | NMI_Handler |
134 | |
| 135 | B NMI_Handler |
135 | PUBWEAK HardFault_Handler |
| 136 | 136 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 137 | PUBWEAK HardFault_Handler |
137 | HardFault_Handler |
| 138 | SECTION .text:CODE:REORDER:NOROOT(1) |
138 | B HardFault_Handler |
| 139 | HardFault_Handler |
139 | |
| 140 | B HardFault_Handler |
140 | PUBWEAK MemManage_Handler |
| 141 | 141 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 142 | PUBWEAK MemManage_Handler |
142 | MemManage_Handler |
| 143 | SECTION .text:CODE:REORDER:NOROOT(1) |
143 | B MemManage_Handler |
| 144 | MemManage_Handler |
144 | |
| 145 | B MemManage_Handler |
145 | PUBWEAK BusFault_Handler |
| 146 | 146 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 147 | PUBWEAK BusFault_Handler |
147 | BusFault_Handler |
| 148 | SECTION .text:CODE:REORDER:NOROOT(1) |
148 | B BusFault_Handler |
| 149 | BusFault_Handler |
149 | |
| 150 | B BusFault_Handler |
150 | PUBWEAK UsageFault_Handler |
| 151 | 151 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 152 | PUBWEAK UsageFault_Handler |
152 | UsageFault_Handler |
| 153 | SECTION .text:CODE:REORDER:NOROOT(1) |
153 | B UsageFault_Handler |
| 154 | UsageFault_Handler |
154 | |
| 155 | B UsageFault_Handler |
155 | PUBWEAK SVC_Handler |
| 156 | 156 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 157 | PUBWEAK SVC_Handler |
157 | SVC_Handler |
| 158 | SECTION .text:CODE:REORDER:NOROOT(1) |
158 | B SVC_Handler |
| 159 | SVC_Handler |
159 | |
| 160 | B SVC_Handler |
160 | PUBWEAK DebugMon_Handler |
| 161 | 161 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 162 | PUBWEAK DebugMon_Handler |
162 | DebugMon_Handler |
| 163 | SECTION .text:CODE:REORDER:NOROOT(1) |
163 | B DebugMon_Handler |
| 164 | DebugMon_Handler |
164 | |
| 165 | B DebugMon_Handler |
165 | PUBWEAK PendSV_Handler |
| 166 | 166 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 167 | PUBWEAK PendSV_Handler |
167 | PendSV_Handler |
| 168 | SECTION .text:CODE:REORDER:NOROOT(1) |
168 | B PendSV_Handler |
| 169 | PendSV_Handler |
169 | |
| 170 | B PendSV_Handler |
170 | PUBWEAK SysTick_Handler |
| 171 | 171 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 172 | PUBWEAK SysTick_Handler |
172 | SysTick_Handler |
| 173 | SECTION .text:CODE:REORDER:NOROOT(1) |
173 | B SysTick_Handler |
| 174 | SysTick_Handler |
174 | |
| 175 | B SysTick_Handler |
175 | PUBWEAK WWDG_IRQHandler |
| 176 | 176 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 177 | PUBWEAK WWDG_IRQHandler |
177 | WWDG_IRQHandler |
| 178 | SECTION .text:CODE:REORDER:NOROOT(1) |
178 | B WWDG_IRQHandler |
| 179 | WWDG_IRQHandler |
179 | |
| 180 | B WWDG_IRQHandler |
180 | PUBWEAK PVD_IRQHandler |
| 181 | 181 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 182 | PUBWEAK PVD_IRQHandler |
182 | PVD_IRQHandler |
| 183 | SECTION .text:CODE:REORDER:NOROOT(1) |
183 | B PVD_IRQHandler |
| 184 | PVD_IRQHandler |
184 | |
| 185 | B PVD_IRQHandler |
185 | PUBWEAK TAMPER_IRQHandler |
| 186 | 186 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 187 | PUBWEAK TAMPER_IRQHandler |
187 | TAMPER_IRQHandler |
| 188 | SECTION .text:CODE:REORDER:NOROOT(1) |
188 | B TAMPER_IRQHandler |
| 189 | TAMPER_IRQHandler |
189 | |
| 190 | B TAMPER_IRQHandler |
190 | PUBWEAK RTC_IRQHandler |
| 191 | 191 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 192 | PUBWEAK RTC_IRQHandler |
192 | RTC_IRQHandler |
| 193 | SECTION .text:CODE:REORDER:NOROOT(1) |
193 | B RTC_IRQHandler |
| 194 | RTC_IRQHandler |
194 | |
| 195 | B RTC_IRQHandler |
195 | PUBWEAK FLASH_IRQHandler |
| 196 | 196 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 197 | PUBWEAK FLASH_IRQHandler |
197 | FLASH_IRQHandler |
| 198 | SECTION .text:CODE:REORDER:NOROOT(1) |
198 | B FLASH_IRQHandler |
| 199 | FLASH_IRQHandler |
199 | |
| 200 | B FLASH_IRQHandler |
200 | PUBWEAK RCC_IRQHandler |
| 201 | 201 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 202 | PUBWEAK RCC_IRQHandler |
202 | RCC_IRQHandler |
| 203 | SECTION .text:CODE:REORDER:NOROOT(1) |
203 | B RCC_IRQHandler |
| 204 | RCC_IRQHandler |
204 | |
| 205 | B RCC_IRQHandler |
205 | PUBWEAK EXTI0_IRQHandler |
| 206 | 206 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 207 | PUBWEAK EXTI0_IRQHandler |
207 | EXTI0_IRQHandler |
| 208 | SECTION .text:CODE:REORDER:NOROOT(1) |
208 | B EXTI0_IRQHandler |
| 209 | EXTI0_IRQHandler |
209 | |
| 210 | B EXTI0_IRQHandler |
210 | PUBWEAK EXTI1_IRQHandler |
| 211 | 211 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 212 | PUBWEAK EXTI1_IRQHandler |
212 | EXTI1_IRQHandler |
| 213 | SECTION .text:CODE:REORDER:NOROOT(1) |
213 | B EXTI1_IRQHandler |
| 214 | EXTI1_IRQHandler |
214 | |
| 215 | B EXTI1_IRQHandler |
215 | PUBWEAK EXTI2_IRQHandler |
| 216 | 216 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 217 | PUBWEAK EXTI2_IRQHandler |
217 | EXTI2_IRQHandler |
| 218 | SECTION .text:CODE:REORDER:NOROOT(1) |
218 | B EXTI2_IRQHandler |
| 219 | EXTI2_IRQHandler |
219 | |
| 220 | B EXTI2_IRQHandler |
220 | PUBWEAK EXTI3_IRQHandler |
| 221 | 221 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 222 | PUBWEAK EXTI3_IRQHandler |
222 | EXTI3_IRQHandler |
| 223 | SECTION .text:CODE:REORDER:NOROOT(1) |
223 | B EXTI3_IRQHandler |
| 224 | EXTI3_IRQHandler |
224 | |
| 225 | B EXTI3_IRQHandler |
225 | PUBWEAK EXTI4_IRQHandler |
| 226 | 226 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 227 | PUBWEAK EXTI4_IRQHandler |
227 | EXTI4_IRQHandler |
| 228 | SECTION .text:CODE:REORDER:NOROOT(1) |
228 | B EXTI4_IRQHandler |
| 229 | EXTI4_IRQHandler |
229 | |
| 230 | B EXTI4_IRQHandler |
230 | PUBWEAK DMA1_Channel1_IRQHandler |
| 231 | 231 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 232 | PUBWEAK DMA1_Channel1_IRQHandler |
232 | DMA1_Channel1_IRQHandler |
| 233 | SECTION .text:CODE:REORDER:NOROOT(1) |
233 | B DMA1_Channel1_IRQHandler |
| 234 | DMA1_Channel1_IRQHandler |
234 | |
| 235 | B DMA1_Channel1_IRQHandler |
235 | PUBWEAK DMA1_Channel2_IRQHandler |
| 236 | 236 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 237 | PUBWEAK DMA1_Channel2_IRQHandler |
237 | DMA1_Channel2_IRQHandler |
| 238 | SECTION .text:CODE:REORDER:NOROOT(1) |
238 | B DMA1_Channel2_IRQHandler |
| 239 | DMA1_Channel2_IRQHandler |
239 | |
| 240 | B DMA1_Channel2_IRQHandler |
240 | PUBWEAK DMA1_Channel3_IRQHandler |
| 241 | 241 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 242 | PUBWEAK DMA1_Channel3_IRQHandler |
242 | DMA1_Channel3_IRQHandler |
| 243 | SECTION .text:CODE:REORDER:NOROOT(1) |
243 | B DMA1_Channel3_IRQHandler |
| 244 | DMA1_Channel3_IRQHandler |
244 | |
| 245 | B DMA1_Channel3_IRQHandler |
245 | PUBWEAK DMA1_Channel4_IRQHandler |
| 246 | 246 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 247 | PUBWEAK DMA1_Channel4_IRQHandler |
247 | DMA1_Channel4_IRQHandler |
| 248 | SECTION .text:CODE:REORDER:NOROOT(1) |
248 | B DMA1_Channel4_IRQHandler |
| 249 | DMA1_Channel4_IRQHandler |
249 | |
| 250 | B DMA1_Channel4_IRQHandler |
250 | PUBWEAK DMA1_Channel5_IRQHandler |
| 251 | 251 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 252 | PUBWEAK DMA1_Channel5_IRQHandler |
252 | DMA1_Channel5_IRQHandler |
| 253 | SECTION .text:CODE:REORDER:NOROOT(1) |
253 | B DMA1_Channel5_IRQHandler |
| 254 | DMA1_Channel5_IRQHandler |
254 | |
| 255 | B DMA1_Channel5_IRQHandler |
255 | PUBWEAK DMA1_Channel6_IRQHandler |
| 256 | 256 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 257 | PUBWEAK DMA1_Channel6_IRQHandler |
257 | DMA1_Channel6_IRQHandler |
| 258 | SECTION .text:CODE:REORDER:NOROOT(1) |
258 | B DMA1_Channel6_IRQHandler |
| 259 | DMA1_Channel6_IRQHandler |
259 | |
| 260 | B DMA1_Channel6_IRQHandler |
260 | PUBWEAK DMA1_Channel7_IRQHandler |
| 261 | 261 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 262 | PUBWEAK DMA1_Channel7_IRQHandler |
262 | DMA1_Channel7_IRQHandler |
| 263 | SECTION .text:CODE:REORDER:NOROOT(1) |
263 | B DMA1_Channel7_IRQHandler |
| 264 | DMA1_Channel7_IRQHandler |
264 | |
| 265 | B DMA1_Channel7_IRQHandler |
265 | PUBWEAK ADC1_IRQHandler |
| 266 | 266 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 267 | PUBWEAK ADC1_IRQHandler |
267 | ADC1_IRQHandler |
| 268 | SECTION .text:CODE:REORDER:NOROOT(1) |
268 | B ADC1_IRQHandler |
| 269 | ADC1_IRQHandler |
269 | |
| 270 | B ADC1_IRQHandler |
270 | PUBWEAK EXTI9_5_IRQHandler |
| 271 | 271 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 272 | PUBWEAK EXTI9_5_IRQHandler |
272 | EXTI9_5_IRQHandler |
| 273 | SECTION .text:CODE:REORDER:NOROOT(1) |
273 | B EXTI9_5_IRQHandler |
| 274 | EXTI9_5_IRQHandler |
274 | |
| 275 | B EXTI9_5_IRQHandler |
275 | PUBWEAK TIM2_IRQHandler |
| 276 | 276 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 277 | PUBWEAK TIM2_IRQHandler |
277 | TIM2_IRQHandler |
| 278 | SECTION .text:CODE:REORDER:NOROOT(1) |
278 | B TIM2_IRQHandler |
| 279 | TIM2_IRQHandler |
279 | |
| 280 | B TIM2_IRQHandler |
280 | PUBWEAK TIM3_IRQHandler |
| 281 | 281 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 282 | PUBWEAK TIM3_IRQHandler |
282 | TIM3_IRQHandler |
| 283 | SECTION .text:CODE:REORDER:NOROOT(1) |
283 | B TIM3_IRQHandler |
| 284 | TIM3_IRQHandler |
284 | |
| 285 | B TIM3_IRQHandler |
285 | PUBWEAK I2C1_EV_IRQHandler |
| 286 | 286 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 287 | PUBWEAK I2C1_EV_IRQHandler |
287 | I2C1_EV_IRQHandler |
| 288 | SECTION .text:CODE:REORDER:NOROOT(1) |
288 | B I2C1_EV_IRQHandler |
| 289 | I2C1_EV_IRQHandler |
289 | |
| 290 | B I2C1_EV_IRQHandler |
290 | PUBWEAK I2C1_ER_IRQHandler |
| 291 | 291 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 292 | PUBWEAK I2C1_ER_IRQHandler |
292 | I2C1_ER_IRQHandler |
| 293 | SECTION .text:CODE:REORDER:NOROOT(1) |
293 | B I2C1_ER_IRQHandler |
| 294 | I2C1_ER_IRQHandler |
294 | |
| 295 | B I2C1_ER_IRQHandler |
295 | PUBWEAK SPI1_IRQHandler |
| 296 | 296 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 297 | PUBWEAK SPI1_IRQHandler |
297 | SPI1_IRQHandler |
| 298 | SECTION .text:CODE:REORDER:NOROOT(1) |
298 | B SPI1_IRQHandler |
| 299 | SPI1_IRQHandler |
299 | |
| 300 | B SPI1_IRQHandler |
300 | PUBWEAK USART1_IRQHandler |
| 301 | 301 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 302 | PUBWEAK USART1_IRQHandler |
302 | USART1_IRQHandler |
| 303 | SECTION .text:CODE:REORDER:NOROOT(1) |
303 | B USART1_IRQHandler |
| 304 | USART1_IRQHandler |
304 | |
| 305 | B USART1_IRQHandler |
305 | PUBWEAK USART2_IRQHandler |
| 306 | 306 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 307 | PUBWEAK USART2_IRQHandler |
307 | USART2_IRQHandler |
| 308 | SECTION .text:CODE:REORDER:NOROOT(1) |
308 | B USART2_IRQHandler |
| 309 | USART2_IRQHandler |
309 | |
| 310 | B USART2_IRQHandler |
310 | PUBWEAK EXTI15_10_IRQHandler |
| 311 | 311 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 312 | PUBWEAK EXTI15_10_IRQHandler |
312 | EXTI15_10_IRQHandler |
| 313 | SECTION .text:CODE:REORDER:NOROOT(1) |
313 | B EXTI15_10_IRQHandler |
| 314 | EXTI15_10_IRQHandler |
314 | |
| 315 | B EXTI15_10_IRQHandler |
315 | PUBWEAK RTC_Alarm_IRQHandler |
| 316 | 316 | SECTION .text:CODE:REORDER:NOROOT(1) |
|
| 317 | PUBWEAK RTC_Alarm_IRQHandler |
317 | RTC_Alarm_IRQHandler |
| 318 | SECTION .text:CODE:REORDER:NOROOT(1) |
318 | B RTC_Alarm_IRQHandler |
| 319 | RTC_Alarm_IRQHandler |
319 | |
| 320 | B RTC_Alarm_IRQHandler |
320 | END |
| 321 | - | ||
| 322 | END |
- | |
| 323 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
- | |