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