source: S-port/trunk/MDK-ARM/startup_stm32f427xx.lst@ 1

Last change on this file since 1 was 1, checked in by AlexLir, 3 years ago
File size: 73.3 KB
Line 
1
2
3
4ARM Macro Assembler Page 1
5
6
7 1 00000000 ;*******************************************************
8 ************************
9 2 00000000 ;* File Name : startup_stm32f427xx.s
10 3 00000000 ;* Author : MCD Application Team
11 4 00000000 ;* Description : STM32F427x devices vector table
12 for MDK-ARM toolchain.
13 5 00000000 ;* This module performs:
14 6 00000000 ;* - Set the initial SP
15 7 00000000 ;* - Set the initial PC == Reset_Ha
16 ndler
17 8 00000000 ;* - Set the vector table entries w
18 ith the exceptions ISR address
19 9 00000000 ;* After Reset the CortexM4 process
20 or is in Thread mode,
21 10 00000000 ;* priority is Privileged, and the
22 Stack is set to Main.
23 11 00000000 ;*******************************************************
24 *************************
25 12 00000000 ;* @attention
26 13 00000000 ;*
27 14 00000000 ;* <h2><center>&copy; Copyright (c) 2017 STMicroelectron
28 ics.
29 15 00000000 ;* All rights reserved.</center></h2>
30 16 00000000 ;*
31 17 00000000 ;* This software component is licensed by ST under BSD 3
32 -Clause license,
33 18 00000000 ;* the "License"; You may not use this file except in co
34 mpliance with the
35 19 00000000 ;* License. You may obtain a copy of the License at:
36 20 00000000 ;* opensource.org/licenses/BSD-3-
37 Clause
38 21 00000000 ;*
39 22 00000000 ;*******************************************************
40 ************************
41 23 00000000 ;* <<< Use Configuration Wizard in Context Menu >>>
42 24 00000000 ;
43 25 00000000 ; Amount of memory (in bytes) allocated for Stack
44 26 00000000 ; Tailor this value to your application needs
45 27 00000000 ; <h> Stack Configuration
46 28 00000000 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
47 29 00000000 ; </h>
48 30 00000000
49 31 00000000 00002200
50 Stack_Size
51 EQU 0x2200
52 32 00000000
53 33 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
54=3
55 34 00000000 Stack_Mem
56 SPACE Stack_Size
57 35 00002200 __initial_sp
58 36 00002200
59 37 00002200
60 38 00002200 ; <h> Heap Configuration
61 39 00002200 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
62 40 00002200 ; </h>
63 41 00002200
64 42 00002200 00002200
65 Heap_Size
66
67
68
69ARM Macro Assembler Page 2
70
71
72 EQU 0x2200
73 43 00002200
74 44 00002200
75 45 00002200 AREA HEAP, NOINIT, READWRITE, ALIGN=
763
77 46 00000000 __heap_base
78 47 00000000 Heap_Mem
79 SPACE Heap_Size
80 48 00002200 __heap_limit
81 49 00002200
82 50 00002200 PRESERVE8
83 51 00002200 THUMB
84 52 00002200
85 53 00002200
86 54 00002200 ; Vector Table Mapped to Address 0 at Reset
87 55 00002200 AREA RESET, DATA, READONLY
88 56 00000000 EXPORT __Vectors
89 57 00000000 EXPORT __Vectors_End
90 58 00000000 EXPORT __Vectors_Size
91 59 00000000
92 60 00000000 00000000
93 __Vectors
94 DCD __initial_sp ; Top of Stack
95 61 00000004 00000000 DCD Reset_Handler ; Reset Handler
96 62 00000008 00000000 DCD NMI_Handler ; NMI Handler
97 63 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
98 Handler
99 64 00000010 00000000 DCD MemManage_Handler
100 ; MPU Fault Handler
101
102 65 00000014 00000000 DCD BusFault_Handler
103 ; Bus Fault Handler
104
105 66 00000018 00000000 DCD UsageFault_Handler ; Usage Faul
106 t Handler
107 67 0000001C 00000000 DCD 0 ; Reserved
108 68 00000020 00000000 DCD 0 ; Reserved
109 69 00000024 00000000 DCD 0 ; Reserved
110 70 00000028 00000000 DCD 0 ; Reserved
111 71 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
112 72 00000030 00000000 DCD DebugMon_Handler ; Debug Monito
113 r Handler
114 73 00000034 00000000 DCD 0 ; Reserved
115 74 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
116
117 75 0000003C 00000000 DCD SysTick_Handler
118 ; SysTick Handler
119 76 00000040
120 77 00000040 ; External Interrupts
121 78 00000040 00000000 DCD WWDG_IRQHandler ; Window WatchD
122 og
123
124
125 79 00000044 00000000 DCD PVD_IRQHandler ; PVD through EX
126 TI Line detection
127
128
129 80 00000048 00000000 DCD TAMP_STAMP_IRQHandler ; Tamper
130 and TimeStamps thro
131
132
133
134ARM Macro Assembler Page 3
135
136
137 ugh the EXTI line
138
139 81 0000004C 00000000 DCD RTC_WKUP_IRQHandler ; RTC Wakeu
140 p through the EXTI
141 line
142
143 82 00000050 00000000 DCD FLASH_IRQHandler ; FLASH
144
145
146 83 00000054 00000000 DCD RCC_IRQHandler ; RCC
147
148
149 84 00000058 00000000 DCD EXTI0_IRQHandler ; EXTI Line0
150
151
152
153 85 0000005C 00000000 DCD EXTI1_IRQHandler ; EXTI Line1
154
155
156
157 86 00000060 00000000 DCD EXTI2_IRQHandler ; EXTI Line2
158
159
160
161 87 00000064 00000000 DCD EXTI3_IRQHandler ; EXTI Line3
162
163
164
165 88 00000068 00000000 DCD EXTI4_IRQHandler ; EXTI Line4
166
167
168
169 89 0000006C 00000000 DCD DMA1_Stream0_IRQHandler ; DMA1
170 Stream 0
171
172
173 90 00000070 00000000 DCD DMA1_Stream1_IRQHandler ; DMA1
174 Stream 1
175
176
177 91 00000074 00000000 DCD DMA1_Stream2_IRQHandler ; DMA1
178 Stream 2
179
180
181 92 00000078 00000000 DCD DMA1_Stream3_IRQHandler ; DMA1
182 Stream 3
183
184
185 93 0000007C 00000000 DCD DMA1_Stream4_IRQHandler ; DMA1
186 Stream 4
187
188
189 94 00000080 00000000 DCD DMA1_Stream5_IRQHandler ; DMA1
190 Stream 5
191
192
193 95 00000084 00000000 DCD DMA1_Stream6_IRQHandler ; DMA1
194 Stream 6
195
196
197
198
199ARM Macro Assembler Page 4
200
201
202
203 96 00000088 00000000 DCD ADC_IRQHandler ; ADC1, ADC2 and
204 ADC3s
205
206 97 0000008C 00000000 DCD CAN1_TX_IRQHandler ; CAN1 TX
207
208
209
210 98 00000090 00000000 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
211
212
213
214 99 00000094 00000000 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
215
216
217
218 100 00000098 00000000 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
219
220
221
222 101 0000009C 00000000 DCD EXTI9_5_IRQHandler ; External L
223 ine[9:5]s
224
225
226 102 000000A0 00000000 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1
227 Break and TIM9
228
229 103 000000A4 00000000 DCD TIM1_UP_TIM10_IRQHandler ; TIM1
230 Update and TIM10
231
232 104 000000A8 00000000 DCD TIM1_TRG_COM_TIM11_IRQHandler ;
233 TIM1 Trigger and C
234 ommutation and TIM1
235 1
236 105 000000AC 00000000 DCD TIM1_CC_IRQHandler ; TIM1 Captu
237 re Compare
238
239
240 106 000000B0 00000000 DCD TIM2_IRQHandler ; TIM2
241
242
243 107 000000B4 00000000 DCD TIM3_IRQHandler ; TIM3
244
245
246 108 000000B8 00000000 DCD TIM4_IRQHandler ; TIM4
247
248
249 109 000000BC 00000000 DCD I2C1_EV_IRQHandler ; I2C1 Event
250
251
252
253 110 000000C0 00000000 DCD I2C1_ER_IRQHandler ; I2C1 Error
254
255
256
257 111 000000C4 00000000 DCD I2C2_EV_IRQHandler ; I2C2 Event
258
259
260
261
262
263
264ARM Macro Assembler Page 5
265
266
267 112 000000C8 00000000 DCD I2C2_ER_IRQHandler ; I2C2 Error
268
269
270
271 113 000000CC 00000000 DCD SPI1_IRQHandler ; SPI1
272
273
274 114 000000D0 00000000 DCD SPI2_IRQHandler ; SPI2
275
276
277 115 000000D4 00000000 DCD USART1_IRQHandler ; USART1
278
279
280 116 000000D8 00000000 DCD USART2_IRQHandler ; USART2
281
282
283 117 000000DC 00000000 DCD USART3_IRQHandler ; USART3
284
285
286 118 000000E0 00000000 DCD EXTI15_10_IRQHandler ; External
287 Line[15:10]s
288
289
290 119 000000E4 00000000 DCD RTC_Alarm_IRQHandler ; RTC Alar
291 m (A and B) through
292 EXTI Line
293
294 120 000000E8 00000000 DCD OTG_FS_WKUP_IRQHandler ; USB OT
295 G FS Wakeup through
296 EXTI line
297
298 121 000000EC 00000000 DCD TIM8_BRK_TIM12_IRQHandler ; TIM
299 8 Break and TIM12
300
301 122 000000F0 00000000 DCD TIM8_UP_TIM13_IRQHandler ; TIM8
302 Update and TIM13
303
304 123 000000F4 00000000 DCD TIM8_TRG_COM_TIM14_IRQHandler ;
305 TIM8 Trigger and C
306 ommutation and TIM1
307 4
308 124 000000F8 00000000 DCD TIM8_CC_IRQHandler ; TIM8 Captu
309 re Compare
310
311
312 125 000000FC 00000000 DCD DMA1_Stream7_IRQHandler ; DMA1
313 Stream7
314
315
316 126 00000100 00000000 DCD FMC_IRQHandler ; FMC
317
318
319 127 00000104 00000000 DCD SDIO_IRQHandler ; SDIO
320
321
322 128 00000108 00000000 DCD TIM5_IRQHandler ; TIM5
323
324
325 129 0000010C 00000000 DCD SPI3_IRQHandler ; SPI3
326
327
328
329ARM Macro Assembler Page 6
330
331
332
333
334 130 00000110 00000000 DCD UART4_IRQHandler ; UART4
335
336
337 131 00000114 00000000 DCD UART5_IRQHandler ; UART5
338
339
340 132 00000118 00000000 DCD TIM6_DAC_IRQHandler ; TIM6 and
341 DAC1&2 underrun err
342 ors
343
344 133 0000011C 00000000 DCD TIM7_IRQHandler ; TIM7
345
346 134 00000120 00000000 DCD DMA2_Stream0_IRQHandler ; DMA2
347 Stream 0
348
349
350 135 00000124 00000000 DCD DMA2_Stream1_IRQHandler ; DMA2
351 Stream 1
352
353
354 136 00000128 00000000 DCD DMA2_Stream2_IRQHandler ; DMA2
355 Stream 2
356
357
358 137 0000012C 00000000 DCD DMA2_Stream3_IRQHandler ; DMA2
359 Stream 3
360
361
362 138 00000130 00000000 DCD DMA2_Stream4_IRQHandler ; DMA2
363 Stream 4
364
365
366 139 00000134 00000000 DCD ETH_IRQHandler ; Ethernet
367
368
369 140 00000138 00000000 DCD ETH_WKUP_IRQHandler ; Ethernet
370 Wakeup through EXTI
371 line
372
373 141 0000013C 00000000 DCD CAN2_TX_IRQHandler ; CAN2 TX
374
375
376
377 142 00000140 00000000 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
378
379
380
381 143 00000144 00000000 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
382
383
384
385 144 00000148 00000000 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
386
387
388
389 145 0000014C 00000000 DCD OTG_FS_IRQHandler ; USB OTG FS
390
391
392
393
394ARM Macro Assembler Page 7
395
396
397
398 146 00000150 00000000 DCD DMA2_Stream5_IRQHandler ; DMA2
399 Stream 5
400
401
402 147 00000154 00000000 DCD DMA2_Stream6_IRQHandler ; DMA2
403 Stream 6
404
405
406 148 00000158 00000000 DCD DMA2_Stream7_IRQHandler ; DMA2
407 Stream 7
408
409
410 149 0000015C 00000000 DCD USART6_IRQHandler ; USART6
411
412
413
414 150 00000160 00000000 DCD I2C3_EV_IRQHandler ; I2C3 event
415
416
417
418 151 00000164 00000000 DCD I2C3_ER_IRQHandler ; I2C3 error
419
420
421
422 152 00000168 00000000 DCD OTG_HS_EP1_OUT_IRQHandler ; USB
423 OTG HS End Point 1
424 Out
425
426 153 0000016C 00000000 DCD OTG_HS_EP1_IN_IRQHandler ; USB
427 OTG HS End Point 1
428 In
429
430 154 00000170 00000000 DCD OTG_HS_WKUP_IRQHandler ; USB OT
431 G HS Wakeup through
432 EXTI
433
434 155 00000174 00000000 DCD OTG_HS_IRQHandler ; USB OTG HS
435
436
437 156 00000178 00000000 DCD DCMI_IRQHandler ; DCMI
438 157 0000017C 00000000 DCD 0 ; Reserved
439
440
441 158 00000180 00000000 DCD HASH_RNG_IRQHandler
442 ; Hash and Rng
443 159 00000184 00000000 DCD FPU_IRQHandler ; FPU
444 160 00000188 00000000 DCD UART7_IRQHandler ; UART7
445 161 0000018C 00000000 DCD UART8_IRQHandler ; UART8
446 162 00000190 00000000 DCD SPI4_IRQHandler ; SPI4
447 163 00000194 00000000 DCD SPI5_IRQHandler ; SPI5
448 164 00000198 00000000 DCD SPI6_IRQHandler ; SPI6
449 165 0000019C 00000000 DCD SAI1_IRQHandler ; SAI1
450 166 000001A0 00000000 DCD 0 ; Reserved
451 167 000001A4 00000000 DCD 0 ; Reserved
452 168 000001A8 00000000 DCD DMA2D_IRQHandler ; DMA2D
453 169 000001AC
454 170 000001AC __Vectors_End
455 171 000001AC
456
457
458
459ARM Macro Assembler Page 8
460
461
462 172 000001AC 000001AC
463 __Vectors_Size
464 EQU __Vectors_End - __Vectors
465 173 000001AC
466 174 000001AC AREA |.text|, CODE, READONLY
467 175 00000000
468 176 00000000 ; Reset handler
469 177 00000000 Reset_Handler
470 PROC
471 178 00000000 EXPORT Reset_Handler [WEAK
472]
473 179 00000000 IMPORT SystemInit
474 180 00000000 IMPORT __main
475 181 00000000
476 182 00000000 4806 LDR R0, =SystemInit
477 183 00000002 4780 BLX R0
478 184 00000004 4806 LDR R0, =__main
479 185 00000006 4700 BX R0
480 186 00000008 ENDP
481 187 00000008
482 188 00000008 ; Dummy Exception Handlers (infinite loops which can be
483 modified)
484 189 00000008
485 190 00000008 NMI_Handler
486 PROC
487 191 00000008 EXPORT NMI_Handler [WEA
488K]
489 192 00000008 E7FE B .
490 193 0000000A ENDP
491 195 0000000A HardFault_Handler
492 PROC
493 196 0000000A EXPORT HardFault_Handler [WEA
494K]
495 197 0000000A E7FE B .
496 198 0000000C ENDP
497 200 0000000C MemManage_Handler
498 PROC
499 201 0000000C EXPORT MemManage_Handler [WEA
500K]
501 202 0000000C E7FE B .
502 203 0000000E ENDP
503 205 0000000E BusFault_Handler
504 PROC
505 206 0000000E EXPORT BusFault_Handler [WEA
506K]
507 207 0000000E E7FE B .
508 208 00000010 ENDP
509 210 00000010 UsageFault_Handler
510 PROC
511 211 00000010 EXPORT UsageFault_Handler [WEA
512K]
513 212 00000010 E7FE B .
514 213 00000012 ENDP
515 214 00000012 SVC_Handler
516 PROC
517 215 00000012 EXPORT SVC_Handler [WEA
518K]
519 216 00000012 E7FE B .
520 217 00000014 ENDP
521
522
523
524ARM Macro Assembler Page 9
525
526
527 219 00000014 DebugMon_Handler
528 PROC
529 220 00000014 EXPORT DebugMon_Handler [WEA
530K]
531 221 00000014 E7FE B .
532 222 00000016 ENDP
533 223 00000016 PendSV_Handler
534 PROC
535 224 00000016 EXPORT PendSV_Handler [WEA
536K]
537 225 00000016 E7FE B .
538 226 00000018 ENDP
539 227 00000018 SysTick_Handler
540 PROC
541 228 00000018 EXPORT SysTick_Handler [WEA
542K]
543 229 00000018 E7FE B .
544 230 0000001A ENDP
545 231 0000001A
546 232 0000001A Default_Handler
547 PROC
548 233 0000001A
549 234 0000001A EXPORT WWDG_IRQHandler
550 [WEAK]
551 235 0000001A EXPORT PVD_IRQHandler
552 [WEAK]
553 236 0000001A EXPORT TAMP_STAMP_IRQHandler
554 [WEAK]
555 237 0000001A EXPORT RTC_WKUP_IRQHandler
556 [WEAK]
557 238 0000001A EXPORT FLASH_IRQHandler
558 [WEAK]
559 239 0000001A EXPORT RCC_IRQHandler
560 [WEAK]
561 240 0000001A EXPORT EXTI0_IRQHandler
562 [WEAK]
563 241 0000001A EXPORT EXTI1_IRQHandler
564 [WEAK]
565 242 0000001A EXPORT EXTI2_IRQHandler
566 [WEAK]
567 243 0000001A EXPORT EXTI3_IRQHandler
568 [WEAK]
569 244 0000001A EXPORT EXTI4_IRQHandler
570 [WEAK]
571 245 0000001A EXPORT DMA1_Stream0_IRQHandler
572 [WEAK]
573 246 0000001A EXPORT DMA1_Stream1_IRQHandler
574 [WEAK]
575 247 0000001A EXPORT DMA1_Stream2_IRQHandler
576 [WEAK]
577 248 0000001A EXPORT DMA1_Stream3_IRQHandler
578 [WEAK]
579 249 0000001A EXPORT DMA1_Stream4_IRQHandler
580 [WEAK]
581 250 0000001A EXPORT DMA1_Stream5_IRQHandler
582 [WEAK]
583 251 0000001A EXPORT DMA1_Stream6_IRQHandler
584 [WEAK]
585 252 0000001A EXPORT ADC_IRQHandler
586
587
588
589ARM Macro Assembler Page 10
590
591
592 [WEAK]
593 253 0000001A EXPORT CAN1_TX_IRQHandler
594 [WEAK]
595 254 0000001A EXPORT CAN1_RX0_IRQHandler
596 [WEAK]
597 255 0000001A EXPORT CAN1_RX1_IRQHandler
598 [WEAK]
599 256 0000001A EXPORT CAN1_SCE_IRQHandler
600 [WEAK]
601 257 0000001A EXPORT EXTI9_5_IRQHandler
602 [WEAK]
603 258 0000001A EXPORT TIM1_BRK_TIM9_IRQHandler
604 [WEAK]
605 259 0000001A EXPORT TIM1_UP_TIM10_IRQHandler
606 [WEAK]
607 260 0000001A EXPORT TIM1_TRG_COM_TIM11_IRQHandler
608 [WEAK]
609 261 0000001A EXPORT TIM1_CC_IRQHandler
610 [WEAK]
611 262 0000001A EXPORT TIM2_IRQHandler
612 [WEAK]
613 263 0000001A EXPORT TIM3_IRQHandler
614 [WEAK]
615 264 0000001A EXPORT TIM4_IRQHandler
616 [WEAK]
617 265 0000001A EXPORT I2C1_EV_IRQHandler
618 [WEAK]
619 266 0000001A EXPORT I2C1_ER_IRQHandler
620 [WEAK]
621 267 0000001A EXPORT I2C2_EV_IRQHandler
622 [WEAK]
623 268 0000001A EXPORT I2C2_ER_IRQHandler
624 [WEAK]
625 269 0000001A EXPORT SPI1_IRQHandler
626 [WEAK]
627 270 0000001A EXPORT SPI2_IRQHandler
628 [WEAK]
629 271 0000001A EXPORT USART1_IRQHandler
630 [WEAK]
631 272 0000001A EXPORT USART2_IRQHandler
632 [WEAK]
633 273 0000001A EXPORT USART3_IRQHandler
634 [WEAK]
635 274 0000001A EXPORT EXTI15_10_IRQHandler
636 [WEAK]
637 275 0000001A EXPORT RTC_Alarm_IRQHandler
638 [WEAK]
639 276 0000001A EXPORT OTG_FS_WKUP_IRQHandler
640 [WEAK]
641 277 0000001A EXPORT TIM8_BRK_TIM12_IRQHandler
642 [WEAK]
643 278 0000001A EXPORT TIM8_UP_TIM13_IRQHandler
644 [WEAK]
645 279 0000001A EXPORT TIM8_TRG_COM_TIM14_IRQHandler
646 [WEAK]
647 280 0000001A EXPORT TIM8_CC_IRQHandler
648 [WEAK]
649 281 0000001A EXPORT DMA1_Stream7_IRQHandler
650 [WEAK]
651
652
653
654ARM Macro Assembler Page 11
655
656
657 282 0000001A EXPORT FMC_IRQHandler
658 [WEAK]
659 283 0000001A EXPORT SDIO_IRQHandler
660 [WEAK]
661 284 0000001A EXPORT TIM5_IRQHandler
662 [WEAK]
663 285 0000001A EXPORT SPI3_IRQHandler
664 [WEAK]
665 286 0000001A EXPORT UART4_IRQHandler
666 [WEAK]
667 287 0000001A EXPORT UART5_IRQHandler
668 [WEAK]
669 288 0000001A EXPORT TIM6_DAC_IRQHandler
670 [WEAK]
671 289 0000001A EXPORT TIM7_IRQHandler
672 [WEAK]
673 290 0000001A EXPORT DMA2_Stream0_IRQHandler
674 [WEAK]
675 291 0000001A EXPORT DMA2_Stream1_IRQHandler
676 [WEAK]
677 292 0000001A EXPORT DMA2_Stream2_IRQHandler
678 [WEAK]
679 293 0000001A EXPORT DMA2_Stream3_IRQHandler
680 [WEAK]
681 294 0000001A EXPORT DMA2_Stream4_IRQHandler
682 [WEAK]
683 295 0000001A EXPORT ETH_IRQHandler
684 [WEAK]
685 296 0000001A EXPORT ETH_WKUP_IRQHandler
686 [WEAK]
687 297 0000001A EXPORT CAN2_TX_IRQHandler
688 [WEAK]
689 298 0000001A EXPORT CAN2_RX0_IRQHandler
690 [WEAK]
691 299 0000001A EXPORT CAN2_RX1_IRQHandler
692 [WEAK]
693 300 0000001A EXPORT CAN2_SCE_IRQHandler
694 [WEAK]
695 301 0000001A EXPORT OTG_FS_IRQHandler
696 [WEAK]
697 302 0000001A EXPORT DMA2_Stream5_IRQHandler
698 [WEAK]
699 303 0000001A EXPORT DMA2_Stream6_IRQHandler
700 [WEAK]
701 304 0000001A EXPORT DMA2_Stream7_IRQHandler
702 [WEAK]
703 305 0000001A EXPORT USART6_IRQHandler
704 [WEAK]
705 306 0000001A EXPORT I2C3_EV_IRQHandler
706 [WEAK]
707 307 0000001A EXPORT I2C3_ER_IRQHandler
708 [WEAK]
709 308 0000001A EXPORT OTG_HS_EP1_OUT_IRQHandler
710 [WEAK]
711 309 0000001A EXPORT OTG_HS_EP1_IN_IRQHandler
712 [WEAK]
713 310 0000001A EXPORT OTG_HS_WKUP_IRQHandler
714 [WEAK]
715 311 0000001A EXPORT OTG_HS_IRQHandler
716
717
718
719ARM Macro Assembler Page 12
720
721
722 [WEAK]
723 312 0000001A EXPORT DCMI_IRQHandler
724 [WEAK]
725 313 0000001A EXPORT HASH_RNG_IRQHandler
726 [WEAK]
727 314 0000001A EXPORT FPU_IRQHandler
728 [WEAK]
729 315 0000001A EXPORT UART7_IRQHandler
730 [WEAK]
731 316 0000001A EXPORT UART8_IRQHandler
732 [WEAK]
733 317 0000001A EXPORT SPI4_IRQHandler
734 [WEAK]
735 318 0000001A EXPORT SPI5_IRQHandler
736 [WEAK]
737 319 0000001A EXPORT SPI6_IRQHandler
738 [WEAK]
739 320 0000001A EXPORT SAI1_IRQHandler
740 [WEAK]
741 321 0000001A EXPORT DMA2D_IRQHandler
742 [WEAK]
743 322 0000001A
744 323 0000001A WWDG_IRQHandler
745 324 0000001A PVD_IRQHandler
746 325 0000001A TAMP_STAMP_IRQHandler
747 326 0000001A RTC_WKUP_IRQHandler
748 327 0000001A FLASH_IRQHandler
749 328 0000001A RCC_IRQHandler
750 329 0000001A EXTI0_IRQHandler
751 330 0000001A EXTI1_IRQHandler
752 331 0000001A EXTI2_IRQHandler
753 332 0000001A EXTI3_IRQHandler
754 333 0000001A EXTI4_IRQHandler
755 334 0000001A DMA1_Stream0_IRQHandler
756 335 0000001A DMA1_Stream1_IRQHandler
757 336 0000001A DMA1_Stream2_IRQHandler
758 337 0000001A DMA1_Stream3_IRQHandler
759 338 0000001A DMA1_Stream4_IRQHandler
760 339 0000001A DMA1_Stream5_IRQHandler
761 340 0000001A DMA1_Stream6_IRQHandler
762 341 0000001A ADC_IRQHandler
763 342 0000001A CAN1_TX_IRQHandler
764 343 0000001A CAN1_RX0_IRQHandler
765 344 0000001A CAN1_RX1_IRQHandler
766 345 0000001A CAN1_SCE_IRQHandler
767 346 0000001A EXTI9_5_IRQHandler
768 347 0000001A TIM1_BRK_TIM9_IRQHandler
769 348 0000001A TIM1_UP_TIM10_IRQHandler
770 349 0000001A TIM1_TRG_COM_TIM11_IRQHandler
771 350 0000001A TIM1_CC_IRQHandler
772 351 0000001A TIM2_IRQHandler
773 352 0000001A TIM3_IRQHandler
774 353 0000001A TIM4_IRQHandler
775 354 0000001A I2C1_EV_IRQHandler
776 355 0000001A I2C1_ER_IRQHandler
777 356 0000001A I2C2_EV_IRQHandler
778 357 0000001A I2C2_ER_IRQHandler
779 358 0000001A SPI1_IRQHandler
780 359 0000001A SPI2_IRQHandler
781
782
783
784ARM Macro Assembler Page 13
785
786
787 360 0000001A USART1_IRQHandler
788 361 0000001A USART2_IRQHandler
789 362 0000001A USART3_IRQHandler
790 363 0000001A EXTI15_10_IRQHandler
791 364 0000001A RTC_Alarm_IRQHandler
792 365 0000001A OTG_FS_WKUP_IRQHandler
793 366 0000001A TIM8_BRK_TIM12_IRQHandler
794 367 0000001A TIM8_UP_TIM13_IRQHandler
795 368 0000001A TIM8_TRG_COM_TIM14_IRQHandler
796 369 0000001A TIM8_CC_IRQHandler
797 370 0000001A DMA1_Stream7_IRQHandler
798 371 0000001A FMC_IRQHandler
799 372 0000001A SDIO_IRQHandler
800 373 0000001A TIM5_IRQHandler
801 374 0000001A SPI3_IRQHandler
802 375 0000001A UART4_IRQHandler
803 376 0000001A UART5_IRQHandler
804 377 0000001A TIM6_DAC_IRQHandler
805 378 0000001A TIM7_IRQHandler
806 379 0000001A DMA2_Stream0_IRQHandler
807 380 0000001A DMA2_Stream1_IRQHandler
808 381 0000001A DMA2_Stream2_IRQHandler
809 382 0000001A DMA2_Stream3_IRQHandler
810 383 0000001A DMA2_Stream4_IRQHandler
811 384 0000001A ETH_IRQHandler
812 385 0000001A ETH_WKUP_IRQHandler
813 386 0000001A CAN2_TX_IRQHandler
814 387 0000001A CAN2_RX0_IRQHandler
815 388 0000001A CAN2_RX1_IRQHandler
816 389 0000001A CAN2_SCE_IRQHandler
817 390 0000001A OTG_FS_IRQHandler
818 391 0000001A DMA2_Stream5_IRQHandler
819 392 0000001A DMA2_Stream6_IRQHandler
820 393 0000001A DMA2_Stream7_IRQHandler
821 394 0000001A USART6_IRQHandler
822 395 0000001A I2C3_EV_IRQHandler
823 396 0000001A I2C3_ER_IRQHandler
824 397 0000001A OTG_HS_EP1_OUT_IRQHandler
825 398 0000001A OTG_HS_EP1_IN_IRQHandler
826 399 0000001A OTG_HS_WKUP_IRQHandler
827 400 0000001A OTG_HS_IRQHandler
828 401 0000001A DCMI_IRQHandler
829 402 0000001A HASH_RNG_IRQHandler
830 403 0000001A FPU_IRQHandler
831 404 0000001A UART7_IRQHandler
832 405 0000001A UART8_IRQHandler
833 406 0000001A SPI4_IRQHandler
834 407 0000001A SPI5_IRQHandler
835 408 0000001A SPI6_IRQHandler
836 409 0000001A SAI1_IRQHandler
837 410 0000001A DMA2D_IRQHandler
838 411 0000001A E7FE B .
839 412 0000001C
840 413 0000001C ENDP
841 414 0000001C
842 415 0000001C ALIGN
843 416 0000001C
844 417 0000001C ;*******************************************************
845 ************************
846
847
848
849ARM Macro Assembler Page 14
850
851
852 418 0000001C ; User Stack and Heap initialization
853 419 0000001C ;*******************************************************
854 ************************
855 420 0000001C IF :DEF:__MICROLIB
856 421 0000001C
857 422 0000001C EXPORT __initial_sp
858 423 0000001C EXPORT __heap_base
859 424 0000001C EXPORT __heap_limit
860 425 0000001C
861 426 0000001C ELSE
862 441 ENDIF
863 442 0000001C
864 443 0000001C END
865 00000000
866 00000000
867Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M4.fp.sp --apcs=
868interwork --depend=sport\startup_stm32f427xx.d -osport\startup_stm32f427xx.o -I
869..\Core\Inc -I.\RTE\_SPort -IC:\Users\Admin\AppData\Local\Arm\Packs\ARM\CMSIS\5
870.7.0\CMSIS\Core\Include -IC:\Users\Admin\AppData\Local\Arm\Packs\Keil\STM32F4xx
871_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include --predefine="__MICROLIB S
872ETA 1" --predefine="__UVISION_VERSION SETA 534" --predefine="_RTE_ SETA 1" --pr
873edefine="STM32F427xx SETA 1" --predefine="_RTE_ SETA 1" --list=startup_stm32f42
8747xx.lst startup_stm32f427xx.s
875
876
877
878ARM Macro Assembler Page 1 Alphabetic symbol ordering
879Relocatable symbols
880
881STACK 00000000
882
883Symbol: STACK
884 Definitions
885 At line 33 in file startup_stm32f427xx.s
886 Uses
887 None
888Comment: STACK unused
889Stack_Mem 00000000
890
891Symbol: Stack_Mem
892 Definitions
893 At line 34 in file startup_stm32f427xx.s
894 Uses
895 None
896Comment: Stack_Mem unused
897__initial_sp 00002200
898
899Symbol: __initial_sp
900 Definitions
901 At line 35 in file startup_stm32f427xx.s
902 Uses
903 At line 60 in file startup_stm32f427xx.s
904 At line 422 in file startup_stm32f427xx.s
905
9063 symbols
907
908
909
910ARM Macro Assembler Page 1 Alphabetic symbol ordering
911Relocatable symbols
912
913HEAP 00000000
914
915Symbol: HEAP
916 Definitions
917 At line 45 in file startup_stm32f427xx.s
918 Uses
919 None
920Comment: HEAP unused
921Heap_Mem 00000000
922
923Symbol: Heap_Mem
924 Definitions
925 At line 47 in file startup_stm32f427xx.s
926 Uses
927 None
928Comment: Heap_Mem unused
929__heap_base 00000000
930
931Symbol: __heap_base
932 Definitions
933 At line 46 in file startup_stm32f427xx.s
934 Uses
935 At line 423 in file startup_stm32f427xx.s
936Comment: __heap_base used once
937__heap_limit 00002200
938
939Symbol: __heap_limit
940 Definitions
941 At line 48 in file startup_stm32f427xx.s
942 Uses
943 At line 424 in file startup_stm32f427xx.s
944Comment: __heap_limit used once
9454 symbols
946
947
948
949ARM Macro Assembler Page 1 Alphabetic symbol ordering
950Relocatable symbols
951
952RESET 00000000
953
954Symbol: RESET
955 Definitions
956 At line 55 in file startup_stm32f427xx.s
957 Uses
958 None
959Comment: RESET unused
960__Vectors 00000000
961
962Symbol: __Vectors
963 Definitions
964 At line 60 in file startup_stm32f427xx.s
965 Uses
966 At line 56 in file startup_stm32f427xx.s
967 At line 172 in file startup_stm32f427xx.s
968
969__Vectors_End 000001AC
970
971Symbol: __Vectors_End
972 Definitions
973 At line 170 in file startup_stm32f427xx.s
974 Uses
975 At line 57 in file startup_stm32f427xx.s
976 At line 172 in file startup_stm32f427xx.s
977
9783 symbols
979
980
981
982ARM Macro Assembler Page 1 Alphabetic symbol ordering
983Relocatable symbols
984
985.text 00000000
986
987Symbol: .text
988 Definitions
989 At line 174 in file startup_stm32f427xx.s
990 Uses
991 None
992Comment: .text unused
993ADC_IRQHandler 0000001A
994
995Symbol: ADC_IRQHandler
996 Definitions
997 At line 341 in file startup_stm32f427xx.s
998 Uses
999 At line 96 in file startup_stm32f427xx.s
1000 At line 252 in file startup_stm32f427xx.s
1001
1002BusFault_Handler 0000000E
1003
1004Symbol: BusFault_Handler
1005 Definitions
1006 At line 205 in file startup_stm32f427xx.s
1007 Uses
1008 At line 65 in file startup_stm32f427xx.s
1009 At line 206 in file startup_stm32f427xx.s
1010
1011CAN1_RX0_IRQHandler 0000001A
1012
1013Symbol: CAN1_RX0_IRQHandler
1014 Definitions
1015 At line 343 in file startup_stm32f427xx.s
1016 Uses
1017 At line 98 in file startup_stm32f427xx.s
1018 At line 254 in file startup_stm32f427xx.s
1019
1020CAN1_RX1_IRQHandler 0000001A
1021
1022Symbol: CAN1_RX1_IRQHandler
1023 Definitions
1024 At line 344 in file startup_stm32f427xx.s
1025 Uses
1026 At line 99 in file startup_stm32f427xx.s
1027 At line 255 in file startup_stm32f427xx.s
1028
1029CAN1_SCE_IRQHandler 0000001A
1030
1031Symbol: CAN1_SCE_IRQHandler
1032 Definitions
1033 At line 345 in file startup_stm32f427xx.s
1034 Uses
1035 At line 100 in file startup_stm32f427xx.s
1036 At line 256 in file startup_stm32f427xx.s
1037
1038CAN1_TX_IRQHandler 0000001A
1039
1040Symbol: CAN1_TX_IRQHandler
1041 Definitions
1042 At line 342 in file startup_stm32f427xx.s
1043 Uses
1044
1045
1046
1047ARM Macro Assembler Page 2 Alphabetic symbol ordering
1048Relocatable symbols
1049
1050 At line 97 in file startup_stm32f427xx.s
1051 At line 253 in file startup_stm32f427xx.s
1052
1053CAN2_RX0_IRQHandler 0000001A
1054
1055Symbol: CAN2_RX0_IRQHandler
1056 Definitions
1057 At line 387 in file startup_stm32f427xx.s
1058 Uses
1059 At line 142 in file startup_stm32f427xx.s
1060 At line 298 in file startup_stm32f427xx.s
1061
1062CAN2_RX1_IRQHandler 0000001A
1063
1064Symbol: CAN2_RX1_IRQHandler
1065 Definitions
1066 At line 388 in file startup_stm32f427xx.s
1067 Uses
1068 At line 143 in file startup_stm32f427xx.s
1069 At line 299 in file startup_stm32f427xx.s
1070
1071CAN2_SCE_IRQHandler 0000001A
1072
1073Symbol: CAN2_SCE_IRQHandler
1074 Definitions
1075 At line 389 in file startup_stm32f427xx.s
1076 Uses
1077 At line 144 in file startup_stm32f427xx.s
1078 At line 300 in file startup_stm32f427xx.s
1079
1080CAN2_TX_IRQHandler 0000001A
1081
1082Symbol: CAN2_TX_IRQHandler
1083 Definitions
1084 At line 386 in file startup_stm32f427xx.s
1085 Uses
1086 At line 141 in file startup_stm32f427xx.s
1087 At line 297 in file startup_stm32f427xx.s
1088
1089DCMI_IRQHandler 0000001A
1090
1091Symbol: DCMI_IRQHandler
1092 Definitions
1093 At line 401 in file startup_stm32f427xx.s
1094 Uses
1095 At line 156 in file startup_stm32f427xx.s
1096 At line 312 in file startup_stm32f427xx.s
1097
1098DMA1_Stream0_IRQHandler 0000001A
1099
1100Symbol: DMA1_Stream0_IRQHandler
1101 Definitions
1102 At line 334 in file startup_stm32f427xx.s
1103 Uses
1104 At line 89 in file startup_stm32f427xx.s
1105 At line 245 in file startup_stm32f427xx.s
1106
1107DMA1_Stream1_IRQHandler 0000001A
1108
1109
1110
1111
1112ARM Macro Assembler Page 3 Alphabetic symbol ordering
1113Relocatable symbols
1114
1115Symbol: DMA1_Stream1_IRQHandler
1116 Definitions
1117 At line 335 in file startup_stm32f427xx.s
1118 Uses
1119 At line 90 in file startup_stm32f427xx.s
1120 At line 246 in file startup_stm32f427xx.s
1121
1122DMA1_Stream2_IRQHandler 0000001A
1123
1124Symbol: DMA1_Stream2_IRQHandler
1125 Definitions
1126 At line 336 in file startup_stm32f427xx.s
1127 Uses
1128 At line 91 in file startup_stm32f427xx.s
1129 At line 247 in file startup_stm32f427xx.s
1130
1131DMA1_Stream3_IRQHandler 0000001A
1132
1133Symbol: DMA1_Stream3_IRQHandler
1134 Definitions
1135 At line 337 in file startup_stm32f427xx.s
1136 Uses
1137 At line 92 in file startup_stm32f427xx.s
1138 At line 248 in file startup_stm32f427xx.s
1139
1140DMA1_Stream4_IRQHandler 0000001A
1141
1142Symbol: DMA1_Stream4_IRQHandler
1143 Definitions
1144 At line 338 in file startup_stm32f427xx.s
1145 Uses
1146 At line 93 in file startup_stm32f427xx.s
1147 At line 249 in file startup_stm32f427xx.s
1148
1149DMA1_Stream5_IRQHandler 0000001A
1150
1151Symbol: DMA1_Stream5_IRQHandler
1152 Definitions
1153 At line 339 in file startup_stm32f427xx.s
1154 Uses
1155 At line 94 in file startup_stm32f427xx.s
1156 At line 250 in file startup_stm32f427xx.s
1157
1158DMA1_Stream6_IRQHandler 0000001A
1159
1160Symbol: DMA1_Stream6_IRQHandler
1161 Definitions
1162 At line 340 in file startup_stm32f427xx.s
1163 Uses
1164 At line 95 in file startup_stm32f427xx.s
1165 At line 251 in file startup_stm32f427xx.s
1166
1167DMA1_Stream7_IRQHandler 0000001A
1168
1169Symbol: DMA1_Stream7_IRQHandler
1170 Definitions
1171 At line 370 in file startup_stm32f427xx.s
1172 Uses
1173 At line 125 in file startup_stm32f427xx.s
1174
1175
1176
1177ARM Macro Assembler Page 4 Alphabetic symbol ordering
1178Relocatable symbols
1179
1180 At line 281 in file startup_stm32f427xx.s
1181
1182DMA2D_IRQHandler 0000001A
1183
1184Symbol: DMA2D_IRQHandler
1185 Definitions
1186 At line 410 in file startup_stm32f427xx.s
1187 Uses
1188 At line 168 in file startup_stm32f427xx.s
1189 At line 321 in file startup_stm32f427xx.s
1190
1191DMA2_Stream0_IRQHandler 0000001A
1192
1193Symbol: DMA2_Stream0_IRQHandler
1194 Definitions
1195 At line 379 in file startup_stm32f427xx.s
1196 Uses
1197 At line 134 in file startup_stm32f427xx.s
1198 At line 290 in file startup_stm32f427xx.s
1199
1200DMA2_Stream1_IRQHandler 0000001A
1201
1202Symbol: DMA2_Stream1_IRQHandler
1203 Definitions
1204 At line 380 in file startup_stm32f427xx.s
1205 Uses
1206 At line 135 in file startup_stm32f427xx.s
1207 At line 291 in file startup_stm32f427xx.s
1208
1209DMA2_Stream2_IRQHandler 0000001A
1210
1211Symbol: DMA2_Stream2_IRQHandler
1212 Definitions
1213 At line 381 in file startup_stm32f427xx.s
1214 Uses
1215 At line 136 in file startup_stm32f427xx.s
1216 At line 292 in file startup_stm32f427xx.s
1217
1218DMA2_Stream3_IRQHandler 0000001A
1219
1220Symbol: DMA2_Stream3_IRQHandler
1221 Definitions
1222 At line 382 in file startup_stm32f427xx.s
1223 Uses
1224 At line 137 in file startup_stm32f427xx.s
1225 At line 293 in file startup_stm32f427xx.s
1226
1227DMA2_Stream4_IRQHandler 0000001A
1228
1229Symbol: DMA2_Stream4_IRQHandler
1230 Definitions
1231 At line 383 in file startup_stm32f427xx.s
1232 Uses
1233 At line 138 in file startup_stm32f427xx.s
1234 At line 294 in file startup_stm32f427xx.s
1235
1236DMA2_Stream5_IRQHandler 0000001A
1237
1238Symbol: DMA2_Stream5_IRQHandler
1239
1240
1241
1242ARM Macro Assembler Page 5 Alphabetic symbol ordering
1243Relocatable symbols
1244
1245 Definitions
1246 At line 391 in file startup_stm32f427xx.s
1247 Uses
1248 At line 146 in file startup_stm32f427xx.s
1249 At line 302 in file startup_stm32f427xx.s
1250
1251DMA2_Stream6_IRQHandler 0000001A
1252
1253Symbol: DMA2_Stream6_IRQHandler
1254 Definitions
1255 At line 392 in file startup_stm32f427xx.s
1256 Uses
1257 At line 147 in file startup_stm32f427xx.s
1258 At line 303 in file startup_stm32f427xx.s
1259
1260DMA2_Stream7_IRQHandler 0000001A
1261
1262Symbol: DMA2_Stream7_IRQHandler
1263 Definitions
1264 At line 393 in file startup_stm32f427xx.s
1265 Uses
1266 At line 148 in file startup_stm32f427xx.s
1267 At line 304 in file startup_stm32f427xx.s
1268
1269DebugMon_Handler 00000014
1270
1271Symbol: DebugMon_Handler
1272 Definitions
1273 At line 219 in file startup_stm32f427xx.s
1274 Uses
1275 At line 72 in file startup_stm32f427xx.s
1276 At line 220 in file startup_stm32f427xx.s
1277
1278Default_Handler 0000001A
1279
1280Symbol: Default_Handler
1281 Definitions
1282 At line 232 in file startup_stm32f427xx.s
1283 Uses
1284 None
1285Comment: Default_Handler unused
1286ETH_IRQHandler 0000001A
1287
1288Symbol: ETH_IRQHandler
1289 Definitions
1290 At line 384 in file startup_stm32f427xx.s
1291 Uses
1292 At line 139 in file startup_stm32f427xx.s
1293 At line 295 in file startup_stm32f427xx.s
1294
1295ETH_WKUP_IRQHandler 0000001A
1296
1297Symbol: ETH_WKUP_IRQHandler
1298 Definitions
1299 At line 385 in file startup_stm32f427xx.s
1300 Uses
1301 At line 140 in file startup_stm32f427xx.s
1302 At line 296 in file startup_stm32f427xx.s
1303
1304
1305
1306
1307ARM Macro Assembler Page 6 Alphabetic symbol ordering
1308Relocatable symbols
1309
1310EXTI0_IRQHandler 0000001A
1311
1312Symbol: EXTI0_IRQHandler
1313 Definitions
1314 At line 329 in file startup_stm32f427xx.s
1315 Uses
1316 At line 84 in file startup_stm32f427xx.s
1317 At line 240 in file startup_stm32f427xx.s
1318
1319EXTI15_10_IRQHandler 0000001A
1320
1321Symbol: EXTI15_10_IRQHandler
1322 Definitions
1323 At line 363 in file startup_stm32f427xx.s
1324 Uses
1325 At line 118 in file startup_stm32f427xx.s
1326 At line 274 in file startup_stm32f427xx.s
1327
1328EXTI1_IRQHandler 0000001A
1329
1330Symbol: EXTI1_IRQHandler
1331 Definitions
1332 At line 330 in file startup_stm32f427xx.s
1333 Uses
1334 At line 85 in file startup_stm32f427xx.s
1335 At line 241 in file startup_stm32f427xx.s
1336
1337EXTI2_IRQHandler 0000001A
1338
1339Symbol: EXTI2_IRQHandler
1340 Definitions
1341 At line 331 in file startup_stm32f427xx.s
1342 Uses
1343 At line 86 in file startup_stm32f427xx.s
1344 At line 242 in file startup_stm32f427xx.s
1345
1346EXTI3_IRQHandler 0000001A
1347
1348Symbol: EXTI3_IRQHandler
1349 Definitions
1350 At line 332 in file startup_stm32f427xx.s
1351 Uses
1352 At line 87 in file startup_stm32f427xx.s
1353 At line 243 in file startup_stm32f427xx.s
1354
1355EXTI4_IRQHandler 0000001A
1356
1357Symbol: EXTI4_IRQHandler
1358 Definitions
1359 At line 333 in file startup_stm32f427xx.s
1360 Uses
1361 At line 88 in file startup_stm32f427xx.s
1362 At line 244 in file startup_stm32f427xx.s
1363
1364EXTI9_5_IRQHandler 0000001A
1365
1366Symbol: EXTI9_5_IRQHandler
1367 Definitions
1368 At line 346 in file startup_stm32f427xx.s
1369
1370
1371
1372ARM Macro Assembler Page 7 Alphabetic symbol ordering
1373Relocatable symbols
1374
1375 Uses
1376 At line 101 in file startup_stm32f427xx.s
1377 At line 257 in file startup_stm32f427xx.s
1378
1379FLASH_IRQHandler 0000001A
1380
1381Symbol: FLASH_IRQHandler
1382 Definitions
1383 At line 327 in file startup_stm32f427xx.s
1384 Uses
1385 At line 82 in file startup_stm32f427xx.s
1386 At line 238 in file startup_stm32f427xx.s
1387
1388FMC_IRQHandler 0000001A
1389
1390Symbol: FMC_IRQHandler
1391 Definitions
1392 At line 371 in file startup_stm32f427xx.s
1393 Uses
1394 At line 126 in file startup_stm32f427xx.s
1395 At line 282 in file startup_stm32f427xx.s
1396
1397FPU_IRQHandler 0000001A
1398
1399Symbol: FPU_IRQHandler
1400 Definitions
1401 At line 403 in file startup_stm32f427xx.s
1402 Uses
1403 At line 159 in file startup_stm32f427xx.s
1404 At line 314 in file startup_stm32f427xx.s
1405
1406HASH_RNG_IRQHandler 0000001A
1407
1408Symbol: HASH_RNG_IRQHandler
1409 Definitions
1410 At line 402 in file startup_stm32f427xx.s
1411 Uses
1412 At line 158 in file startup_stm32f427xx.s
1413 At line 313 in file startup_stm32f427xx.s
1414
1415HardFault_Handler 0000000A
1416
1417Symbol: HardFault_Handler
1418 Definitions
1419 At line 195 in file startup_stm32f427xx.s
1420 Uses
1421 At line 63 in file startup_stm32f427xx.s
1422 At line 196 in file startup_stm32f427xx.s
1423
1424I2C1_ER_IRQHandler 0000001A
1425
1426Symbol: I2C1_ER_IRQHandler
1427 Definitions
1428 At line 355 in file startup_stm32f427xx.s
1429 Uses
1430 At line 110 in file startup_stm32f427xx.s
1431 At line 266 in file startup_stm32f427xx.s
1432
1433I2C1_EV_IRQHandler 0000001A
1434
1435
1436
1437ARM Macro Assembler Page 8 Alphabetic symbol ordering
1438Relocatable symbols
1439
1440
1441Symbol: I2C1_EV_IRQHandler
1442 Definitions
1443 At line 354 in file startup_stm32f427xx.s
1444 Uses
1445 At line 109 in file startup_stm32f427xx.s
1446 At line 265 in file startup_stm32f427xx.s
1447
1448I2C2_ER_IRQHandler 0000001A
1449
1450Symbol: I2C2_ER_IRQHandler
1451 Definitions
1452 At line 357 in file startup_stm32f427xx.s
1453 Uses
1454 At line 112 in file startup_stm32f427xx.s
1455 At line 268 in file startup_stm32f427xx.s
1456
1457I2C2_EV_IRQHandler 0000001A
1458
1459Symbol: I2C2_EV_IRQHandler
1460 Definitions
1461 At line 356 in file startup_stm32f427xx.s
1462 Uses
1463 At line 111 in file startup_stm32f427xx.s
1464 At line 267 in file startup_stm32f427xx.s
1465
1466I2C3_ER_IRQHandler 0000001A
1467
1468Symbol: I2C3_ER_IRQHandler
1469 Definitions
1470 At line 396 in file startup_stm32f427xx.s
1471 Uses
1472 At line 151 in file startup_stm32f427xx.s
1473 At line 307 in file startup_stm32f427xx.s
1474
1475I2C3_EV_IRQHandler 0000001A
1476
1477Symbol: I2C3_EV_IRQHandler
1478 Definitions
1479 At line 395 in file startup_stm32f427xx.s
1480 Uses
1481 At line 150 in file startup_stm32f427xx.s
1482 At line 306 in file startup_stm32f427xx.s
1483
1484MemManage_Handler 0000000C
1485
1486Symbol: MemManage_Handler
1487 Definitions
1488 At line 200 in file startup_stm32f427xx.s
1489 Uses
1490 At line 64 in file startup_stm32f427xx.s
1491 At line 201 in file startup_stm32f427xx.s
1492
1493NMI_Handler 00000008
1494
1495Symbol: NMI_Handler
1496 Definitions
1497 At line 190 in file startup_stm32f427xx.s
1498 Uses
1499
1500
1501
1502ARM Macro Assembler Page 9 Alphabetic symbol ordering
1503Relocatable symbols
1504
1505 At line 62 in file startup_stm32f427xx.s
1506 At line 191 in file startup_stm32f427xx.s
1507
1508OTG_FS_IRQHandler 0000001A
1509
1510Symbol: OTG_FS_IRQHandler
1511 Definitions
1512 At line 390 in file startup_stm32f427xx.s
1513 Uses
1514 At line 145 in file startup_stm32f427xx.s
1515 At line 301 in file startup_stm32f427xx.s
1516
1517OTG_FS_WKUP_IRQHandler 0000001A
1518
1519Symbol: OTG_FS_WKUP_IRQHandler
1520 Definitions
1521 At line 365 in file startup_stm32f427xx.s
1522 Uses
1523 At line 120 in file startup_stm32f427xx.s
1524 At line 276 in file startup_stm32f427xx.s
1525
1526OTG_HS_EP1_IN_IRQHandler 0000001A
1527
1528Symbol: OTG_HS_EP1_IN_IRQHandler
1529 Definitions
1530 At line 398 in file startup_stm32f427xx.s
1531 Uses
1532 At line 153 in file startup_stm32f427xx.s
1533 At line 309 in file startup_stm32f427xx.s
1534
1535OTG_HS_EP1_OUT_IRQHandler 0000001A
1536
1537Symbol: OTG_HS_EP1_OUT_IRQHandler
1538 Definitions
1539 At line 397 in file startup_stm32f427xx.s
1540 Uses
1541 At line 152 in file startup_stm32f427xx.s
1542 At line 308 in file startup_stm32f427xx.s
1543
1544OTG_HS_IRQHandler 0000001A
1545
1546Symbol: OTG_HS_IRQHandler
1547 Definitions
1548 At line 400 in file startup_stm32f427xx.s
1549 Uses
1550 At line 155 in file startup_stm32f427xx.s
1551 At line 311 in file startup_stm32f427xx.s
1552
1553OTG_HS_WKUP_IRQHandler 0000001A
1554
1555Symbol: OTG_HS_WKUP_IRQHandler
1556 Definitions
1557 At line 399 in file startup_stm32f427xx.s
1558 Uses
1559 At line 154 in file startup_stm32f427xx.s
1560 At line 310 in file startup_stm32f427xx.s
1561
1562PVD_IRQHandler 0000001A
1563
1564
1565
1566
1567ARM Macro Assembler Page 10 Alphabetic symbol ordering
1568Relocatable symbols
1569
1570Symbol: PVD_IRQHandler
1571 Definitions
1572 At line 324 in file startup_stm32f427xx.s
1573 Uses
1574 At line 79 in file startup_stm32f427xx.s
1575 At line 235 in file startup_stm32f427xx.s
1576
1577PendSV_Handler 00000016
1578
1579Symbol: PendSV_Handler
1580 Definitions
1581 At line 223 in file startup_stm32f427xx.s
1582 Uses
1583 At line 74 in file startup_stm32f427xx.s
1584 At line 224 in file startup_stm32f427xx.s
1585
1586RCC_IRQHandler 0000001A
1587
1588Symbol: RCC_IRQHandler
1589 Definitions
1590 At line 328 in file startup_stm32f427xx.s
1591 Uses
1592 At line 83 in file startup_stm32f427xx.s
1593 At line 239 in file startup_stm32f427xx.s
1594
1595RTC_Alarm_IRQHandler 0000001A
1596
1597Symbol: RTC_Alarm_IRQHandler
1598 Definitions
1599 At line 364 in file startup_stm32f427xx.s
1600 Uses
1601 At line 119 in file startup_stm32f427xx.s
1602 At line 275 in file startup_stm32f427xx.s
1603
1604RTC_WKUP_IRQHandler 0000001A
1605
1606Symbol: RTC_WKUP_IRQHandler
1607 Definitions
1608 At line 326 in file startup_stm32f427xx.s
1609 Uses
1610 At line 81 in file startup_stm32f427xx.s
1611 At line 237 in file startup_stm32f427xx.s
1612
1613Reset_Handler 00000000
1614
1615Symbol: Reset_Handler
1616 Definitions
1617 At line 177 in file startup_stm32f427xx.s
1618 Uses
1619 At line 61 in file startup_stm32f427xx.s
1620 At line 178 in file startup_stm32f427xx.s
1621
1622SAI1_IRQHandler 0000001A
1623
1624Symbol: SAI1_IRQHandler
1625 Definitions
1626 At line 409 in file startup_stm32f427xx.s
1627 Uses
1628 At line 165 in file startup_stm32f427xx.s
1629
1630
1631
1632ARM Macro Assembler Page 11 Alphabetic symbol ordering
1633Relocatable symbols
1634
1635 At line 320 in file startup_stm32f427xx.s
1636
1637SDIO_IRQHandler 0000001A
1638
1639Symbol: SDIO_IRQHandler
1640 Definitions
1641 At line 372 in file startup_stm32f427xx.s
1642 Uses
1643 At line 127 in file startup_stm32f427xx.s
1644 At line 283 in file startup_stm32f427xx.s
1645
1646SPI1_IRQHandler 0000001A
1647
1648Symbol: SPI1_IRQHandler
1649 Definitions
1650 At line 358 in file startup_stm32f427xx.s
1651 Uses
1652 At line 113 in file startup_stm32f427xx.s
1653 At line 269 in file startup_stm32f427xx.s
1654
1655SPI2_IRQHandler 0000001A
1656
1657Symbol: SPI2_IRQHandler
1658 Definitions
1659 At line 359 in file startup_stm32f427xx.s
1660 Uses
1661 At line 114 in file startup_stm32f427xx.s
1662 At line 270 in file startup_stm32f427xx.s
1663
1664SPI3_IRQHandler 0000001A
1665
1666Symbol: SPI3_IRQHandler
1667 Definitions
1668 At line 374 in file startup_stm32f427xx.s
1669 Uses
1670 At line 129 in file startup_stm32f427xx.s
1671 At line 285 in file startup_stm32f427xx.s
1672
1673SPI4_IRQHandler 0000001A
1674
1675Symbol: SPI4_IRQHandler
1676 Definitions
1677 At line 406 in file startup_stm32f427xx.s
1678 Uses
1679 At line 162 in file startup_stm32f427xx.s
1680 At line 317 in file startup_stm32f427xx.s
1681
1682SPI5_IRQHandler 0000001A
1683
1684Symbol: SPI5_IRQHandler
1685 Definitions
1686 At line 407 in file startup_stm32f427xx.s
1687 Uses
1688 At line 163 in file startup_stm32f427xx.s
1689 At line 318 in file startup_stm32f427xx.s
1690
1691SPI6_IRQHandler 0000001A
1692
1693Symbol: SPI6_IRQHandler
1694
1695
1696
1697ARM Macro Assembler Page 12 Alphabetic symbol ordering
1698Relocatable symbols
1699
1700 Definitions
1701 At line 408 in file startup_stm32f427xx.s
1702 Uses
1703 At line 164 in file startup_stm32f427xx.s
1704 At line 319 in file startup_stm32f427xx.s
1705
1706SVC_Handler 00000012
1707
1708Symbol: SVC_Handler
1709 Definitions
1710 At line 214 in file startup_stm32f427xx.s
1711 Uses
1712 At line 71 in file startup_stm32f427xx.s
1713 At line 215 in file startup_stm32f427xx.s
1714
1715SysTick_Handler 00000018
1716
1717Symbol: SysTick_Handler
1718 Definitions
1719 At line 227 in file startup_stm32f427xx.s
1720 Uses
1721 At line 75 in file startup_stm32f427xx.s
1722 At line 228 in file startup_stm32f427xx.s
1723
1724TAMP_STAMP_IRQHandler 0000001A
1725
1726Symbol: TAMP_STAMP_IRQHandler
1727 Definitions
1728 At line 325 in file startup_stm32f427xx.s
1729 Uses
1730 At line 80 in file startup_stm32f427xx.s
1731 At line 236 in file startup_stm32f427xx.s
1732
1733TIM1_BRK_TIM9_IRQHandler 0000001A
1734
1735Symbol: TIM1_BRK_TIM9_IRQHandler
1736 Definitions
1737 At line 347 in file startup_stm32f427xx.s
1738 Uses
1739 At line 102 in file startup_stm32f427xx.s
1740 At line 258 in file startup_stm32f427xx.s
1741
1742TIM1_CC_IRQHandler 0000001A
1743
1744Symbol: TIM1_CC_IRQHandler
1745 Definitions
1746 At line 350 in file startup_stm32f427xx.s
1747 Uses
1748 At line 105 in file startup_stm32f427xx.s
1749 At line 261 in file startup_stm32f427xx.s
1750
1751TIM1_TRG_COM_TIM11_IRQHandler 0000001A
1752
1753Symbol: TIM1_TRG_COM_TIM11_IRQHandler
1754 Definitions
1755 At line 349 in file startup_stm32f427xx.s
1756 Uses
1757 At line 104 in file startup_stm32f427xx.s
1758 At line 260 in file startup_stm32f427xx.s
1759
1760
1761
1762ARM Macro Assembler Page 13 Alphabetic symbol ordering
1763Relocatable symbols
1764
1765
1766TIM1_UP_TIM10_IRQHandler 0000001A
1767
1768Symbol: TIM1_UP_TIM10_IRQHandler
1769 Definitions
1770 At line 348 in file startup_stm32f427xx.s
1771 Uses
1772 At line 103 in file startup_stm32f427xx.s
1773 At line 259 in file startup_stm32f427xx.s
1774
1775TIM2_IRQHandler 0000001A
1776
1777Symbol: TIM2_IRQHandler
1778 Definitions
1779 At line 351 in file startup_stm32f427xx.s
1780 Uses
1781 At line 106 in file startup_stm32f427xx.s
1782 At line 262 in file startup_stm32f427xx.s
1783
1784TIM3_IRQHandler 0000001A
1785
1786Symbol: TIM3_IRQHandler
1787 Definitions
1788 At line 352 in file startup_stm32f427xx.s
1789 Uses
1790 At line 107 in file startup_stm32f427xx.s
1791 At line 263 in file startup_stm32f427xx.s
1792
1793TIM4_IRQHandler 0000001A
1794
1795Symbol: TIM4_IRQHandler
1796 Definitions
1797 At line 353 in file startup_stm32f427xx.s
1798 Uses
1799 At line 108 in file startup_stm32f427xx.s
1800 At line 264 in file startup_stm32f427xx.s
1801
1802TIM5_IRQHandler 0000001A
1803
1804Symbol: TIM5_IRQHandler
1805 Definitions
1806 At line 373 in file startup_stm32f427xx.s
1807 Uses
1808 At line 128 in file startup_stm32f427xx.s
1809 At line 284 in file startup_stm32f427xx.s
1810
1811TIM6_DAC_IRQHandler 0000001A
1812
1813Symbol: TIM6_DAC_IRQHandler
1814 Definitions
1815 At line 377 in file startup_stm32f427xx.s
1816 Uses
1817 At line 132 in file startup_stm32f427xx.s
1818 At line 288 in file startup_stm32f427xx.s
1819
1820TIM7_IRQHandler 0000001A
1821
1822Symbol: TIM7_IRQHandler
1823 Definitions
1824
1825
1826
1827ARM Macro Assembler Page 14 Alphabetic symbol ordering
1828Relocatable symbols
1829
1830 At line 378 in file startup_stm32f427xx.s
1831 Uses
1832 At line 133 in file startup_stm32f427xx.s
1833 At line 289 in file startup_stm32f427xx.s
1834
1835TIM8_BRK_TIM12_IRQHandler 0000001A
1836
1837Symbol: TIM8_BRK_TIM12_IRQHandler
1838 Definitions
1839 At line 366 in file startup_stm32f427xx.s
1840 Uses
1841 At line 121 in file startup_stm32f427xx.s
1842 At line 277 in file startup_stm32f427xx.s
1843
1844TIM8_CC_IRQHandler 0000001A
1845
1846Symbol: TIM8_CC_IRQHandler
1847 Definitions
1848 At line 369 in file startup_stm32f427xx.s
1849 Uses
1850 At line 124 in file startup_stm32f427xx.s
1851 At line 280 in file startup_stm32f427xx.s
1852
1853TIM8_TRG_COM_TIM14_IRQHandler 0000001A
1854
1855Symbol: TIM8_TRG_COM_TIM14_IRQHandler
1856 Definitions
1857 At line 368 in file startup_stm32f427xx.s
1858 Uses
1859 At line 123 in file startup_stm32f427xx.s
1860 At line 279 in file startup_stm32f427xx.s
1861
1862TIM8_UP_TIM13_IRQHandler 0000001A
1863
1864Symbol: TIM8_UP_TIM13_IRQHandler
1865 Definitions
1866 At line 367 in file startup_stm32f427xx.s
1867 Uses
1868 At line 122 in file startup_stm32f427xx.s
1869 At line 278 in file startup_stm32f427xx.s
1870
1871UART4_IRQHandler 0000001A
1872
1873Symbol: UART4_IRQHandler
1874 Definitions
1875 At line 375 in file startup_stm32f427xx.s
1876 Uses
1877 At line 130 in file startup_stm32f427xx.s
1878 At line 286 in file startup_stm32f427xx.s
1879
1880UART5_IRQHandler 0000001A
1881
1882Symbol: UART5_IRQHandler
1883 Definitions
1884 At line 376 in file startup_stm32f427xx.s
1885 Uses
1886 At line 131 in file startup_stm32f427xx.s
1887 At line 287 in file startup_stm32f427xx.s
1888
1889
1890
1891
1892ARM Macro Assembler Page 15 Alphabetic symbol ordering
1893Relocatable symbols
1894
1895UART7_IRQHandler 0000001A
1896
1897Symbol: UART7_IRQHandler
1898 Definitions
1899 At line 404 in file startup_stm32f427xx.s
1900 Uses
1901 At line 160 in file startup_stm32f427xx.s
1902 At line 315 in file startup_stm32f427xx.s
1903
1904UART8_IRQHandler 0000001A
1905
1906Symbol: UART8_IRQHandler
1907 Definitions
1908 At line 405 in file startup_stm32f427xx.s
1909 Uses
1910 At line 161 in file startup_stm32f427xx.s
1911 At line 316 in file startup_stm32f427xx.s
1912
1913USART1_IRQHandler 0000001A
1914
1915Symbol: USART1_IRQHandler
1916 Definitions
1917 At line 360 in file startup_stm32f427xx.s
1918 Uses
1919 At line 115 in file startup_stm32f427xx.s
1920 At line 271 in file startup_stm32f427xx.s
1921
1922USART2_IRQHandler 0000001A
1923
1924Symbol: USART2_IRQHandler
1925 Definitions
1926 At line 361 in file startup_stm32f427xx.s
1927 Uses
1928 At line 116 in file startup_stm32f427xx.s
1929 At line 272 in file startup_stm32f427xx.s
1930
1931USART3_IRQHandler 0000001A
1932
1933Symbol: USART3_IRQHandler
1934 Definitions
1935 At line 362 in file startup_stm32f427xx.s
1936 Uses
1937 At line 117 in file startup_stm32f427xx.s
1938 At line 273 in file startup_stm32f427xx.s
1939
1940USART6_IRQHandler 0000001A
1941
1942Symbol: USART6_IRQHandler
1943 Definitions
1944 At line 394 in file startup_stm32f427xx.s
1945 Uses
1946 At line 149 in file startup_stm32f427xx.s
1947 At line 305 in file startup_stm32f427xx.s
1948
1949UsageFault_Handler 00000010
1950
1951Symbol: UsageFault_Handler
1952 Definitions
1953 At line 210 in file startup_stm32f427xx.s
1954
1955
1956
1957ARM Macro Assembler Page 16 Alphabetic symbol ordering
1958Relocatable symbols
1959
1960 Uses
1961 At line 66 in file startup_stm32f427xx.s
1962 At line 211 in file startup_stm32f427xx.s
1963
1964WWDG_IRQHandler 0000001A
1965
1966Symbol: WWDG_IRQHandler
1967 Definitions
1968 At line 323 in file startup_stm32f427xx.s
1969 Uses
1970 At line 78 in file startup_stm32f427xx.s
1971 At line 234 in file startup_stm32f427xx.s
1972
1973100 symbols
1974
1975
1976
1977ARM Macro Assembler Page 1 Alphabetic symbol ordering
1978Absolute symbols
1979
1980Heap_Size 00002200
1981
1982Symbol: Heap_Size
1983 Definitions
1984 At line 42 in file startup_stm32f427xx.s
1985 Uses
1986 At line 47 in file startup_stm32f427xx.s
1987Comment: Heap_Size used once
1988Stack_Size 00002200
1989
1990Symbol: Stack_Size
1991 Definitions
1992 At line 31 in file startup_stm32f427xx.s
1993 Uses
1994 At line 34 in file startup_stm32f427xx.s
1995Comment: Stack_Size used once
1996__Vectors_Size 000001AC
1997
1998Symbol: __Vectors_Size
1999 Definitions
2000 At line 172 in file startup_stm32f427xx.s
2001 Uses
2002 At line 58 in file startup_stm32f427xx.s
2003Comment: __Vectors_Size used once
20043 symbols
2005
2006
2007
2008ARM Macro Assembler Page 1 Alphabetic symbol ordering
2009External symbols
2010
2011SystemInit 00000000
2012
2013Symbol: SystemInit
2014 Definitions
2015 At line 179 in file startup_stm32f427xx.s
2016 Uses
2017 At line 182 in file startup_stm32f427xx.s
2018Comment: SystemInit used once
2019__main 00000000
2020
2021Symbol: __main
2022 Definitions
2023 At line 180 in file startup_stm32f427xx.s
2024 Uses
2025 At line 184 in file startup_stm32f427xx.s
2026Comment: __main used once
20272 symbols
2028452 symbols in table
Note: See TracBrowser for help on using the repository browser.