Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | mjames | 1 | ;******************** (C) COPYRIGHT 2017 STMicroelectronics ******************** |
2 | ;* File Name : startup_stm32f103xg.s |
||
3 | ;* Author : MCD Application Team |
||
4 | ;* Description : STM32F103xG Performances Line Devices vector table for EWARM |
||
5 | ;* 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 address, |
||
10 | ;* After Reset the Cortex-M3 processor is in Thread mode, |
||
11 | ;* priority is Privileged, and the Stack is set to Main. |
||
12 | ;******************************************************************************* |
||
13 | ;* @attention |
||
14 | ;* |
||
15 | ;* <h2><center>© Copyright (c) 2017 STMicroelectronics. |
||
16 | ;* All rights reserved.</center></h2> |
||
17 | ;* |
||
18 | ;* This software component is licensed by ST under BSD 3-Clause license, |
||
19 | ;* the "License"; You may not use this file except in compliance with the |
||
20 | ;* License. You may obtain a copy of the License at: |
||
21 | ;* opensource.org/licenses/BSD-3-Clause |
||
22 | ;* |
||
23 | ;******************************************************************************* |
||
24 | ; |
||
25 | ; |
||
26 | ; The modules in this file are included in the libraries, and may be replaced |
||
27 | ; by any user-defined modules that define the PUBLIC symbol _program_start or |
||
28 | ; a user defined start symbol. |
||
29 | ; To override the cstartup defined in the library, simply add your modified |
||
30 | ; version to the workbench project. |
||
31 | ; |
||
32 | ; The vector table is normally located at address 0. |
||
33 | ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6. |
||
34 | ; The name "__vector_table" has special meaning for C-SPY: |
||
35 | ; it is where the SP start value is found, and the NVIC vector |
||
36 | ; table register (VTOR) is initialized to this address if != 0. |
||
37 | ; |
||
38 | ; Cortex-M version |
||
39 | ; |
||
40 | |||
41 | MODULE ?cstartup |
||
42 | |||
43 | ;; Forward declaration of sections. |
||
44 | SECTION CSTACK:DATA:NOROOT(3) |
||
45 | |||
46 | SECTION .intvec:CODE:NOROOT(2) |
||
47 | |||
48 | EXTERN __iar_program_start |
||
49 | EXTERN SystemInit |
||
50 | PUBLIC __vector_table |
||
51 | |||
52 | DATA |
||
53 | |||
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_2_IRQHandler ; ADC1 & ADC2 |
||
92 | DCD USB_HP_CAN1_TX_IRQHandler ; USB High Priority or CAN1 TX |
||
93 | DCD USB_LP_CAN1_RX0_IRQHandler ; USB Low Priority or CAN1 RX0 |
||
94 | DCD CAN1_RX1_IRQHandler ; CAN1 RX1 |
||
95 | DCD CAN1_SCE_IRQHandler ; CAN1 SCE |
||
96 | DCD EXTI9_5_IRQHandler ; EXTI Line 9..5 |
||
97 | DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9 |
||
98 | DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10 |
||
99 | DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11 |
||
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 USBWakeUp_IRQHandler ; USB Wakeup from suspend |
||
116 | DCD TIM8_BRK_TIM12_IRQHandler ; TIM8 Break and TIM12 |
||
117 | DCD TIM8_UP_TIM13_IRQHandler ; TIM8 Update and TIM13 |
||
118 | DCD TIM8_TRG_COM_TIM14_IRQHandler ; TIM8 Trigger and Commutation and TIM14 |
||
119 | DCD TIM8_CC_IRQHandler ; TIM8 Capture Compare |
||
120 | DCD ADC3_IRQHandler ; ADC3 |
||
121 | DCD FSMC_IRQHandler ; FSMC |
||
122 | DCD SDIO_IRQHandler ; SDIO |
||
123 | DCD TIM5_IRQHandler ; TIM5 |
||
124 | DCD SPI3_IRQHandler ; SPI3 |
||
125 | DCD UART4_IRQHandler ; UART4 |
||
126 | DCD UART5_IRQHandler ; UART5 |
||
127 | DCD TIM6_IRQHandler ; TIM6 |
||
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 |
||
133 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
||
134 | ;; |
||
135 | ;; Default interrupt handlers. |
||
136 | ;; |
||
137 | THUMB |
||
138 | |||
139 | PUBWEAK Reset_Handler |
||
140 | SECTION .text:CODE:REORDER:NOROOT(2) |
||
141 | Reset_Handler |
||
142 | LDR R0, =SystemInit |
||
143 | BLX R0 |
||
144 | LDR R0, =__iar_program_start |
||
145 | BX R0 |
||
146 | |||
147 | PUBWEAK NMI_Handler |
||
148 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
149 | NMI_Handler |
||
150 | B NMI_Handler |
||
151 | |||
152 | PUBWEAK HardFault_Handler |
||
153 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
154 | HardFault_Handler |
||
155 | B HardFault_Handler |
||
156 | |||
157 | PUBWEAK MemManage_Handler |
||
158 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
159 | MemManage_Handler |
||
160 | B MemManage_Handler |
||
161 | |||
162 | PUBWEAK BusFault_Handler |
||
163 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
164 | BusFault_Handler |
||
165 | B BusFault_Handler |
||
166 | |||
167 | PUBWEAK UsageFault_Handler |
||
168 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
169 | UsageFault_Handler |
||
170 | B UsageFault_Handler |
||
171 | |||
172 | PUBWEAK SVC_Handler |
||
173 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
174 | SVC_Handler |
||
175 | B SVC_Handler |
||
176 | |||
177 | PUBWEAK DebugMon_Handler |
||
178 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
179 | DebugMon_Handler |
||
180 | B DebugMon_Handler |
||
181 | |||
182 | PUBWEAK PendSV_Handler |
||
183 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
184 | PendSV_Handler |
||
185 | B PendSV_Handler |
||
186 | |||
187 | PUBWEAK SysTick_Handler |
||
188 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
189 | SysTick_Handler |
||
190 | B SysTick_Handler |
||
191 | |||
192 | PUBWEAK WWDG_IRQHandler |
||
193 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
194 | WWDG_IRQHandler |
||
195 | B WWDG_IRQHandler |
||
196 | |||
197 | PUBWEAK PVD_IRQHandler |
||
198 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
199 | PVD_IRQHandler |
||
200 | B PVD_IRQHandler |
||
201 | |||
202 | PUBWEAK TAMPER_IRQHandler |
||
203 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
204 | TAMPER_IRQHandler |
||
205 | B TAMPER_IRQHandler |
||
206 | |||
207 | PUBWEAK RTC_IRQHandler |
||
208 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
209 | RTC_IRQHandler |
||
210 | B RTC_IRQHandler |
||
211 | |||
212 | PUBWEAK FLASH_IRQHandler |
||
213 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
214 | FLASH_IRQHandler |
||
215 | B FLASH_IRQHandler |
||
216 | |||
217 | PUBWEAK RCC_IRQHandler |
||
218 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
219 | RCC_IRQHandler |
||
220 | B RCC_IRQHandler |
||
221 | |||
222 | PUBWEAK EXTI0_IRQHandler |
||
223 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
224 | EXTI0_IRQHandler |
||
225 | B EXTI0_IRQHandler |
||
226 | |||
227 | PUBWEAK EXTI1_IRQHandler |
||
228 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
229 | EXTI1_IRQHandler |
||
230 | B EXTI1_IRQHandler |
||
231 | |||
232 | PUBWEAK EXTI2_IRQHandler |
||
233 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
234 | EXTI2_IRQHandler |
||
235 | B EXTI2_IRQHandler |
||
236 | |||
237 | PUBWEAK EXTI3_IRQHandler |
||
238 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
239 | EXTI3_IRQHandler |
||
240 | B EXTI3_IRQHandler |
||
241 | |||
242 | PUBWEAK EXTI4_IRQHandler |
||
243 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
244 | EXTI4_IRQHandler |
||
245 | B EXTI4_IRQHandler |
||
246 | |||
247 | PUBWEAK DMA1_Channel1_IRQHandler |
||
248 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
249 | DMA1_Channel1_IRQHandler |
||
250 | B DMA1_Channel1_IRQHandler |
||
251 | |||
252 | PUBWEAK DMA1_Channel2_IRQHandler |
||
253 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
254 | DMA1_Channel2_IRQHandler |
||
255 | B DMA1_Channel2_IRQHandler |
||
256 | |||
257 | PUBWEAK DMA1_Channel3_IRQHandler |
||
258 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
259 | DMA1_Channel3_IRQHandler |
||
260 | B DMA1_Channel3_IRQHandler |
||
261 | |||
262 | PUBWEAK DMA1_Channel4_IRQHandler |
||
263 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
264 | DMA1_Channel4_IRQHandler |
||
265 | B DMA1_Channel4_IRQHandler |
||
266 | |||
267 | PUBWEAK DMA1_Channel5_IRQHandler |
||
268 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
269 | DMA1_Channel5_IRQHandler |
||
270 | B DMA1_Channel5_IRQHandler |
||
271 | |||
272 | PUBWEAK DMA1_Channel6_IRQHandler |
||
273 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
274 | DMA1_Channel6_IRQHandler |
||
275 | B DMA1_Channel6_IRQHandler |
||
276 | |||
277 | PUBWEAK DMA1_Channel7_IRQHandler |
||
278 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
279 | DMA1_Channel7_IRQHandler |
||
280 | B DMA1_Channel7_IRQHandler |
||
281 | |||
282 | PUBWEAK ADC1_2_IRQHandler |
||
283 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
284 | ADC1_2_IRQHandler |
||
285 | B ADC1_2_IRQHandler |
||
286 | |||
287 | PUBWEAK USB_HP_CAN1_TX_IRQHandler |
||
288 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
289 | USB_HP_CAN1_TX_IRQHandler |
||
290 | B USB_HP_CAN1_TX_IRQHandler |
||
291 | |||
292 | PUBWEAK USB_LP_CAN1_RX0_IRQHandler |
||
293 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
294 | USB_LP_CAN1_RX0_IRQHandler |
||
295 | B USB_LP_CAN1_RX0_IRQHandler |
||
296 | |||
297 | PUBWEAK CAN1_RX1_IRQHandler |
||
298 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
299 | CAN1_RX1_IRQHandler |
||
300 | B CAN1_RX1_IRQHandler |
||
301 | |||
302 | PUBWEAK CAN1_SCE_IRQHandler |
||
303 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
304 | CAN1_SCE_IRQHandler |
||
305 | B CAN1_SCE_IRQHandler |
||
306 | |||
307 | PUBWEAK EXTI9_5_IRQHandler |
||
308 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
309 | EXTI9_5_IRQHandler |
||
310 | B EXTI9_5_IRQHandler |
||
311 | |||
312 | PUBWEAK TIM1_BRK_TIM9_IRQHandler |
||
313 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
314 | TIM1_BRK_TIM9_IRQHandler |
||
315 | B TIM1_BRK_TIM9_IRQHandler |
||
316 | |||
317 | PUBWEAK TIM1_UP_TIM10_IRQHandler |
||
318 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
319 | TIM1_UP_TIM10_IRQHandler |
||
320 | B TIM1_UP_TIM10_IRQHandler |
||
321 | |||
322 | PUBWEAK TIM1_TRG_COM_TIM11_IRQHandler |
||
323 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
324 | TIM1_TRG_COM_TIM11_IRQHandler |
||
325 | B TIM1_TRG_COM_TIM11_IRQHandler |
||
326 | |||
327 | PUBWEAK TIM1_CC_IRQHandler |
||
328 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
329 | TIM1_CC_IRQHandler |
||
330 | B TIM1_CC_IRQHandler |
||
331 | |||
332 | PUBWEAK TIM2_IRQHandler |
||
333 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
334 | TIM2_IRQHandler |
||
335 | B TIM2_IRQHandler |
||
336 | |||
337 | PUBWEAK TIM3_IRQHandler |
||
338 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
339 | TIM3_IRQHandler |
||
340 | B TIM3_IRQHandler |
||
341 | |||
342 | PUBWEAK TIM4_IRQHandler |
||
343 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
344 | TIM4_IRQHandler |
||
345 | B TIM4_IRQHandler |
||
346 | |||
347 | PUBWEAK I2C1_EV_IRQHandler |
||
348 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
349 | I2C1_EV_IRQHandler |
||
350 | B I2C1_EV_IRQHandler |
||
351 | |||
352 | PUBWEAK I2C1_ER_IRQHandler |
||
353 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
354 | I2C1_ER_IRQHandler |
||
355 | B I2C1_ER_IRQHandler |
||
356 | |||
357 | PUBWEAK I2C2_EV_IRQHandler |
||
358 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
359 | I2C2_EV_IRQHandler |
||
360 | B I2C2_EV_IRQHandler |
||
361 | |||
362 | PUBWEAK I2C2_ER_IRQHandler |
||
363 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
364 | I2C2_ER_IRQHandler |
||
365 | B I2C2_ER_IRQHandler |
||
366 | |||
367 | PUBWEAK SPI1_IRQHandler |
||
368 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
369 | SPI1_IRQHandler |
||
370 | B SPI1_IRQHandler |
||
371 | |||
372 | PUBWEAK SPI2_IRQHandler |
||
373 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
374 | SPI2_IRQHandler |
||
375 | B SPI2_IRQHandler |
||
376 | |||
377 | PUBWEAK USART1_IRQHandler |
||
378 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
379 | USART1_IRQHandler |
||
380 | B USART1_IRQHandler |
||
381 | |||
382 | PUBWEAK USART2_IRQHandler |
||
383 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
384 | USART2_IRQHandler |
||
385 | B USART2_IRQHandler |
||
386 | |||
387 | PUBWEAK USART3_IRQHandler |
||
388 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
389 | USART3_IRQHandler |
||
390 | B USART3_IRQHandler |
||
391 | |||
392 | PUBWEAK EXTI15_10_IRQHandler |
||
393 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
394 | EXTI15_10_IRQHandler |
||
395 | B EXTI15_10_IRQHandler |
||
396 | |||
397 | PUBWEAK RTC_Alarm_IRQHandler |
||
398 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
399 | RTC_Alarm_IRQHandler |
||
400 | B RTC_Alarm_IRQHandler |
||
401 | |||
402 | PUBWEAK USBWakeUp_IRQHandler |
||
403 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
404 | USBWakeUp_IRQHandler |
||
405 | B USBWakeUp_IRQHandler |
||
406 | |||
407 | PUBWEAK TIM8_BRK_TIM12_IRQHandler |
||
408 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
409 | TIM8_BRK_TIM12_IRQHandler |
||
410 | B TIM8_BRK_TIM12_IRQHandler |
||
411 | |||
412 | PUBWEAK TIM8_UP_TIM13_IRQHandler |
||
413 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
414 | TIM8_UP_TIM13_IRQHandler |
||
415 | B TIM8_UP_TIM13_IRQHandler |
||
416 | |||
417 | PUBWEAK TIM8_TRG_COM_TIM14_IRQHandler |
||
418 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
419 | TIM8_TRG_COM_TIM14_IRQHandler |
||
420 | B TIM8_TRG_COM_TIM14_IRQHandler |
||
421 | |||
422 | PUBWEAK TIM8_CC_IRQHandler |
||
423 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
424 | TIM8_CC_IRQHandler |
||
425 | B TIM8_CC_IRQHandler |
||
426 | |||
427 | PUBWEAK ADC3_IRQHandler |
||
428 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
429 | ADC3_IRQHandler |
||
430 | B ADC3_IRQHandler |
||
431 | |||
432 | PUBWEAK FSMC_IRQHandler |
||
433 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
434 | FSMC_IRQHandler |
||
435 | B FSMC_IRQHandler |
||
436 | |||
437 | PUBWEAK SDIO_IRQHandler |
||
438 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
439 | SDIO_IRQHandler |
||
440 | B SDIO_IRQHandler |
||
441 | |||
442 | PUBWEAK TIM5_IRQHandler |
||
443 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
444 | TIM5_IRQHandler |
||
445 | B TIM5_IRQHandler |
||
446 | |||
447 | PUBWEAK SPI3_IRQHandler |
||
448 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
449 | SPI3_IRQHandler |
||
450 | B SPI3_IRQHandler |
||
451 | |||
452 | PUBWEAK UART4_IRQHandler |
||
453 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
454 | UART4_IRQHandler |
||
455 | B UART4_IRQHandler |
||
456 | |||
457 | PUBWEAK UART5_IRQHandler |
||
458 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
459 | UART5_IRQHandler |
||
460 | B UART5_IRQHandler |
||
461 | |||
462 | PUBWEAK TIM6_IRQHandler |
||
463 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
464 | TIM6_IRQHandler |
||
465 | B TIM6_IRQHandler |
||
466 | |||
467 | PUBWEAK TIM7_IRQHandler |
||
468 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
469 | TIM7_IRQHandler |
||
470 | B TIM7_IRQHandler |
||
471 | |||
472 | PUBWEAK DMA2_Channel1_IRQHandler |
||
473 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
474 | DMA2_Channel1_IRQHandler |
||
475 | B DMA2_Channel1_IRQHandler |
||
476 | |||
477 | PUBWEAK DMA2_Channel2_IRQHandler |
||
478 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
479 | DMA2_Channel2_IRQHandler |
||
480 | B DMA2_Channel2_IRQHandler |
||
481 | |||
482 | PUBWEAK DMA2_Channel3_IRQHandler |
||
483 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
484 | DMA2_Channel3_IRQHandler |
||
485 | B DMA2_Channel3_IRQHandler |
||
486 | |||
487 | PUBWEAK DMA2_Channel4_5_IRQHandler |
||
488 | SECTION .text:CODE:REORDER:NOROOT(1) |
||
489 | DMA2_Channel4_5_IRQHandler |
||
490 | B DMA2_Channel4_5_IRQHandler |
||
491 | |||
492 | |||
493 | END |
||
494 | |||
495 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |