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