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