QuakeGod
2022-12-10 0fe6b074f3f3994d87af195f37e349a83e27882c
提交 | 用户 | age
bfc108 1
Q 2
3
4 ARM Macro Assembler    Page 1 
5
6
7     1 00000000         ;******************** (C) COPYRIGHT 2016 STMicroelectron
8                        ics ********************
9     2 00000000         ;* File Name          : startup_stm32f030xc.s
10     3 00000000         ;* Author             : MCD Application Team
11     4 00000000         ;* Description        : STM32F030xc/STM32F030xb devices 
12                        vector table 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         ;*                      - Branches to __main in the C li
20                        brary (which eventually
21    10 00000000         ;*                        calls main()).
22    11 00000000         ;*                      After Reset the CortexM0 process
23                        or is in Thread mode,
24    12 00000000         ;*                      priority is Privileged, and the 
25                        Stack is set to Main.
26    13 00000000         ;* <<< Use Configuration Wizard in Context Menu >>>
27    14 00000000         ;*******************************************************
28                        ************************
29    15 00000000         ;*
30    16 00000000         ;* Redistribution and use in source and binary forms, wi
31                        th or without modification,
32    17 00000000         ;* are permitted provided that the following conditions 
33                        are met:
34    18 00000000         ;*   1. Redistributions of source code must retain the a
35                        bove copyright notice,
36    19 00000000         ;*      this list of conditions and the following discla
37                        imer.
38    20 00000000         ;*   2. Redistributions in binary form must reproduce th
39                        e above copyright notice,
40    21 00000000         ;*      this list of conditions and the following discla
41                        imer in the documentation
42    22 00000000         ;*      and/or other materials provided with the distrib
43                        ution.
44    23 00000000         ;*   3. Neither the name of STMicroelectronics nor the n
45                        ames of its contributors
46    24 00000000         ;*      may be used to endorse or promote products deriv
47                        ed from this software
48    25 00000000         ;*      without specific prior written permission.
49    26 00000000         ;*
50    27 00000000         ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AN
51                        D CONTRIBUTORS "AS IS"
52    28 00000000         ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
53                         NOT LIMITED TO, THE
54    29 00000000         ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55                         A PARTICULAR PURPOSE ARE
56    30 00000000         ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
57                         CONTRIBUTORS BE LIABLE
58    31 00000000         ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPL
59                        ARY, OR CONSEQUENTIAL
60    32 00000000         ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT O
61                        F SUBSTITUTE GOODS OR
62    33 00000000         ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
63                        INTERRUPTION) HOWEVER
64    34 00000000         ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CON
65                        TRACT, STRICT LIABILITY,
66
67
68
69 ARM Macro Assembler    Page 2 
70
71
72    35 00000000         ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING I
73                        N ANY WAY OUT OF THE USE
74    36 00000000         ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
75                        OF SUCH DAMAGE.
76    37 00000000         ;
77    38 00000000         ;*******************************************************
78                        ************************
79    39 00000000         
80    40 00000000         ; Amount of memory (in bytes) allocated for Stack
81    41 00000000         ; Tailor this value to your application needs
82    42 00000000         ; <h> Stack Configuration
83    43 00000000         ;   <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
84    44 00000000         ; </h>
85    45 00000000         
86    46 00000000 00000400 
87                        Stack_Size
88                                EQU              0x00000400
89    47 00000000         
90    48 00000000                 AREA             STACK, NOINIT, READWRITE, ALIGN
91 =3
92    49 00000000         Stack_Mem
93                                SPACE            Stack_Size
94    50 00000400         __initial_sp
95    51 00000400         
96    52 00000400         
97    53 00000400         ; <h> Heap Configuration
98    54 00000400         ;   <o>  Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
99    55 00000400         ; </h>
100    56 00000400         
101    57 00000400 00000200 
102                        Heap_Size
103                                EQU              0x00000200
104    58 00000400         
105    59 00000400                 AREA             HEAP, NOINIT, READWRITE, ALIGN=
106 3
107    60 00000000         __heap_base
108    61 00000000         Heap_Mem
109                                SPACE            Heap_Size
110    62 00000200         __heap_limit
111    63 00000200         
112    64 00000200                 PRESERVE8
113    65 00000200                 THUMB
114    66 00000200         
115    67 00000200         
116    68 00000200         ; Vector Table Mapped to Address 0 at Reset
117    69 00000200                 AREA             RESET, DATA, READONLY
118    70 00000000                 EXPORT           __Vectors
119    71 00000000                 EXPORT           __Vectors_End
120    72 00000000                 EXPORT           __Vectors_Size
121    73 00000000         
122    74 00000000 00000000 
123                        __Vectors
124                                DCD              __initial_sp ; Top of Stack
125    75 00000004 00000000        DCD              Reset_Handler ; Reset Handler
126    76 00000008 00000000        DCD              NMI_Handler ; NMI Handler
127    77 0000000C 00000000        DCD              HardFault_Handler ; Hard Fault 
128                                                             Handler
129    78 00000010 00000000        DCD              0           ; Reserved
130    79 00000014 00000000        DCD              0           ; Reserved
131
132
133
134 ARM Macro Assembler    Page 3 
135
136
137    80 00000018 00000000        DCD              0           ; Reserved
138    81 0000001C 00000000        DCD              0           ; Reserved
139    82 00000020 00000000        DCD              0           ; Reserved
140    83 00000024 00000000        DCD              0           ; Reserved
141    84 00000028 00000000        DCD              0           ; Reserved
142    85 0000002C 00000000        DCD              SVC_Handler ; SVCall Handler
143    86 00000030 00000000        DCD              0           ; Reserved
144    87 00000034 00000000        DCD              0           ; Reserved
145    88 00000038 00000000        DCD              PendSV_Handler ; PendSV Handler
146                                                             
147    89 0000003C 00000000        DCD              SysTick_Handler 
148                                                             ; SysTick Handler
149    90 00000040         
150    91 00000040         ; External Interrupts
151    92 00000040 00000000        DCD              WWDG_IRQHandler 
152                                                             ; Window Watchdog
153    93 00000044 00000000        DCD              0           ; Reserved
154    94 00000048 00000000        DCD              RTC_IRQHandler ; RTC through EX
155                                                             TI Line
156    95 0000004C 00000000        DCD              FLASH_IRQHandler ; FLASH
157    96 00000050 00000000        DCD              RCC_IRQHandler ; RCC
158    97 00000054 00000000        DCD              EXTI0_1_IRQHandler 
159                                                             ; EXTI Line 0 and 1
160                                                             
161    98 00000058 00000000        DCD              EXTI2_3_IRQHandler 
162                                                             ; EXTI Line 2 and 3
163                                                             
164    99 0000005C 00000000        DCD              EXTI4_15_IRQHandler 
165                                                             ; EXTI Line 4 to 15
166                                                             
167   100 00000060 00000000        DCD              0           ; Reserved
168   101 00000064 00000000        DCD              DMA1_Channel1_IRQHandler 
169                                                             ; DMA1 Channel 1
170   102 00000068 00000000        DCD              DMA1_Channel2_3_IRQHandler ; DM
171                                                             A1 Channel 2 and Ch
172                                                             annel 3
173   103 0000006C 00000000        DCD              DMA1_Channel4_5_IRQHandler ; DM
174                                                             A1 Channel 4 and Ch
175                                                             annel 5
176   104 00000070 00000000        DCD              ADC1_IRQHandler ; ADC1 
177   105 00000074 00000000        DCD              TIM1_BRK_UP_TRG_COM_IRQHandler 
178                                                             ; TIM1 Break, Updat
179                                                             e, Trigger and Comm
180                                                             utation
181   106 00000078 00000000        DCD              TIM1_CC_IRQHandler ; TIM1 Captu
182                                                             re Compare
183   107 0000007C 00000000        DCD              0           ; Reserved
184   108 00000080 00000000        DCD              TIM3_IRQHandler ; TIM3
185   109 00000084 00000000        DCD              TIM6_IRQHandler ; TIM6
186   110 00000088 00000000        DCD              TIM7_IRQHandler ; TIM7
187   111 0000008C 00000000        DCD              TIM14_IRQHandler ; TIM14
188   112 00000090 00000000        DCD              TIM15_IRQHandler ; TIM15
189   113 00000094 00000000        DCD              TIM16_IRQHandler ; TIM16
190   114 00000098 00000000        DCD              TIM17_IRQHandler ; TIM17
191   115 0000009C 00000000        DCD              I2C1_IRQHandler ; I2C1
192   116 000000A0 00000000        DCD              I2C2_IRQHandler ; I2C2
193   117 000000A4 00000000        DCD              SPI1_IRQHandler ; SPI1
194   118 000000A8 00000000        DCD              SPI2_IRQHandler ; SPI2
195   119 000000AC 00000000        DCD              USART1_IRQHandler ; USART1
196
197
198
199 ARM Macro Assembler    Page 4 
200
201
202   120 000000B0 00000000        DCD              USART2_IRQHandler ; USART2
203   121 000000B4 00000000        DCD              USART3_6_IRQHandler ; USART3, U
204                                                             SART4, USART5, USAR
205                                                             T6
206   122 000000B8         
207   123 000000B8         __Vectors_End
208   124 000000B8         
209   125 000000B8 000000B8 
210                        __Vectors_Size
211                                EQU              __Vectors_End - __Vectors
212   126 000000B8         
213   127 000000B8                 AREA             |.text|, CODE, READONLY
214   128 00000000         
215   129 00000000         ; Reset handler routine
216   130 00000000         Reset_Handler
217                                PROC
218   131 00000000                 EXPORT           Reset_Handler                 [
219 WEAK]
220   132 00000000                 IMPORT           __main
221   133 00000000                 IMPORT           SystemInit
222   134 00000000 4804            LDR              R0, =SystemInit
223   135 00000002 4780            BLX              R0
224   136 00000004 4804            LDR              R0, =__main
225   137 00000006 4700            BX               R0
226   138 00000008                 ENDP
227   139 00000008         
228   140 00000008         ; Dummy Exception Handlers (infinite loops which can be 
229                        modified)
230   141 00000008         
231   142 00000008         NMI_Handler
232                                PROC
233   143 00000008                 EXPORT           NMI_Handler                    
234 [WEAK]
235   144 00000008 E7FE            B                .
236   145 0000000A                 ENDP
237   147 0000000A         HardFault_Handler
238                                PROC
239   148 0000000A                 EXPORT           HardFault_Handler              
240 [WEAK]
241   149 0000000A E7FE            B                .
242   150 0000000C                 ENDP
243   151 0000000C         SVC_Handler
244                                PROC
245   152 0000000C                 EXPORT           SVC_Handler                    
246 [WEAK]
247   153 0000000C E7FE            B                .
248   154 0000000E                 ENDP
249   155 0000000E         PendSV_Handler
250                                PROC
251   156 0000000E                 EXPORT           PendSV_Handler                 
252 [WEAK]
253   157 0000000E E7FE            B                .
254   158 00000010                 ENDP
255   159 00000010         SysTick_Handler
256                                PROC
257   160 00000010                 EXPORT           SysTick_Handler                
258 [WEAK]
259   161 00000010 E7FE            B                .
260   162 00000012                 ENDP
261
262
263
264 ARM Macro Assembler    Page 5 
265
266
267   163 00000012         
268   164 00000012         Default_Handler
269                                PROC
270   165 00000012         
271   166 00000012                 EXPORT           WWDG_IRQHandler                
272 [WEAK]
273   167 00000012                 EXPORT           RTC_IRQHandler                 
274 [WEAK]
275   168 00000012                 EXPORT           FLASH_IRQHandler               
276 [WEAK]
277   169 00000012                 EXPORT           RCC_IRQHandler                 
278 [WEAK]
279   170 00000012                 EXPORT           EXTI0_1_IRQHandler             
280 [WEAK]
281   171 00000012                 EXPORT           EXTI2_3_IRQHandler             
282 [WEAK]
283   172 00000012                 EXPORT           EXTI4_15_IRQHandler            
284 [WEAK]
285   173 00000012                 EXPORT           DMA1_Channel1_IRQHandler       
286 [WEAK]
287   174 00000012                 EXPORT           DMA1_Channel2_3_IRQHandler     
288 [WEAK]
289   175 00000012                 EXPORT           DMA1_Channel4_5_IRQHandler     
290 [WEAK]
291   176 00000012                 EXPORT           ADC1_IRQHandler                
292 [WEAK]
293   177 00000012                 EXPORT           TIM1_BRK_UP_TRG_COM_IRQHandler 
294 [WEAK]
295   178 00000012                 EXPORT           TIM1_CC_IRQHandler             
296 [WEAK]
297   179 00000012                 EXPORT           TIM3_IRQHandler                
298 [WEAK]
299   180 00000012                 EXPORT           TIM6_IRQHandler                
300 [WEAK]
301   181 00000012                 EXPORT           TIM7_IRQHandler                
302 [WEAK]
303   182 00000012                 EXPORT           TIM14_IRQHandler               
304 [WEAK]
305   183 00000012                 EXPORT           TIM15_IRQHandler               
306 [WEAK]
307   184 00000012                 EXPORT           TIM16_IRQHandler               
308 [WEAK]
309   185 00000012                 EXPORT           TIM17_IRQHandler               
310 [WEAK]
311   186 00000012                 EXPORT           I2C1_IRQHandler                
312 [WEAK]
313   187 00000012                 EXPORT           I2C2_IRQHandler                
314 [WEAK]
315   188 00000012                 EXPORT           SPI1_IRQHandler                
316 [WEAK]
317   189 00000012                 EXPORT           SPI2_IRQHandler                
318 [WEAK]
319   190 00000012                 EXPORT           USART1_IRQHandler              
320 [WEAK]
321   191 00000012                 EXPORT           USART2_IRQHandler              
322 [WEAK]
323   192 00000012                 EXPORT           USART3_6_IRQHandler            
324 [WEAK]
325   193 00000012         
326
327
328
329 ARM Macro Assembler    Page 6 
330
331
332   194 00000012         
333   195 00000012         WWDG_IRQHandler
334   196 00000012         RTC_IRQHandler
335   197 00000012         FLASH_IRQHandler
336   198 00000012         RCC_IRQHandler
337   199 00000012         EXTI0_1_IRQHandler
338   200 00000012         EXTI2_3_IRQHandler
339   201 00000012         EXTI4_15_IRQHandler
340   202 00000012         DMA1_Channel1_IRQHandler
341   203 00000012         DMA1_Channel2_3_IRQHandler
342   204 00000012         DMA1_Channel4_5_IRQHandler
343   205 00000012         ADC1_IRQHandler
344   206 00000012         TIM1_BRK_UP_TRG_COM_IRQHandler
345   207 00000012         TIM1_CC_IRQHandler
346   208 00000012         TIM3_IRQHandler
347   209 00000012         TIM6_IRQHandler
348   210 00000012         TIM7_IRQHandler
349   211 00000012         TIM14_IRQHandler
350   212 00000012         TIM15_IRQHandler
351   213 00000012         TIM16_IRQHandler
352   214 00000012         TIM17_IRQHandler
353   215 00000012         I2C1_IRQHandler
354   216 00000012         I2C2_IRQHandler
355   217 00000012         SPI1_IRQHandler
356   218 00000012         SPI2_IRQHandler
357   219 00000012         USART1_IRQHandler
358   220 00000012         USART2_IRQHandler
359   221 00000012         USART3_6_IRQHandler
360   222 00000012         
361   223 00000012 E7FE            B                .
362   224 00000014         
363   225 00000014                 ENDP
364   226 00000014         
365   227 00000014                 ALIGN
366   228 00000014         
367   229 00000014         ;*******************************************************
368                        ************************
369   230 00000014         ; User Stack and Heap initialization
370   231 00000014         ;*******************************************************
371                        ************************
372   232 00000014                 IF               :DEF:__MICROLIB
373   233 00000014         
374   234 00000014                 EXPORT           __initial_sp
375   235 00000014                 EXPORT           __heap_base
376   236 00000014                 EXPORT           __heap_limit
377   237 00000014         
378   238 00000014                 ELSE
379   253                          ENDIF
380   254 00000014         
381   255 00000014                 END
382               00000000 
383               00000000 
384 Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
385 ork --depend=f030cct6_test2\startup_stm32f030xc.d -of030cct6_test2\startup_stm3
386 2f030xc.o -I.\RTE\_F030CCT6_Test2 -Id:\Keil_v5\ARM\PACK\ARM\CMSIS\5.7.0\CMSIS\C
387 ore\Include -Id:\Keil_v5\ARM\PACK\Keil\STM32F0xx_DFP\2.1.0\Drivers\CMSIS\Device
388 \ST\STM32F0xx\Include --predefine="__MICROLIB SETA 1" --predefine="__UVISION_VE
389 RSION SETA 523" --predefine="_RTE_ SETA 1" --predefine="STM32F030x8 SETA 1" --l
390 ist=startup_stm32f030xc.lst startup_stm32f030xc.s
391
392
393
394 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
395 Relocatable symbols
396
397 STACK 00000000
398
399 Symbol: STACK
400    Definitions
401       At line 48 in file startup_stm32f030xc.s
402    Uses
403       None
404 Comment: STACK unused
405 Stack_Mem 00000000
406
407 Symbol: Stack_Mem
408    Definitions
409       At line 49 in file startup_stm32f030xc.s
410    Uses
411       None
412 Comment: Stack_Mem unused
413 __initial_sp 00000400
414
415 Symbol: __initial_sp
416    Definitions
417       At line 50 in file startup_stm32f030xc.s
418    Uses
419       At line 74 in file startup_stm32f030xc.s
420       At line 234 in file startup_stm32f030xc.s
421
422 3 symbols
423
424
425
426 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
427 Relocatable symbols
428
429 HEAP 00000000
430
431 Symbol: HEAP
432    Definitions
433       At line 59 in file startup_stm32f030xc.s
434    Uses
435       None
436 Comment: HEAP unused
437 Heap_Mem 00000000
438
439 Symbol: Heap_Mem
440    Definitions
441       At line 61 in file startup_stm32f030xc.s
442    Uses
443       None
444 Comment: Heap_Mem unused
445 __heap_base 00000000
446
447 Symbol: __heap_base
448    Definitions
449       At line 60 in file startup_stm32f030xc.s
450    Uses
451       At line 235 in file startup_stm32f030xc.s
452 Comment: __heap_base used once
453 __heap_limit 00000200
454
455 Symbol: __heap_limit
456    Definitions
457       At line 62 in file startup_stm32f030xc.s
458    Uses
459       At line 236 in file startup_stm32f030xc.s
460 Comment: __heap_limit used once
461 4 symbols
462
463
464
465 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
466 Relocatable symbols
467
468 RESET 00000000
469
470 Symbol: RESET
471    Definitions
472       At line 69 in file startup_stm32f030xc.s
473    Uses
474       None
475 Comment: RESET unused
476 __Vectors 00000000
477
478 Symbol: __Vectors
479    Definitions
480       At line 74 in file startup_stm32f030xc.s
481    Uses
482       At line 70 in file startup_stm32f030xc.s
483       At line 125 in file startup_stm32f030xc.s
484
485 __Vectors_End 000000B8
486
487 Symbol: __Vectors_End
488    Definitions
489       At line 123 in file startup_stm32f030xc.s
490    Uses
491       At line 71 in file startup_stm32f030xc.s
492       At line 125 in file startup_stm32f030xc.s
493
494 3 symbols
495
496
497
498 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
499 Relocatable symbols
500
501 .text 00000000
502
503 Symbol: .text
504    Definitions
505       At line 127 in file startup_stm32f030xc.s
506    Uses
507       None
508 Comment: .text unused
509 ADC1_IRQHandler 00000012
510
511 Symbol: ADC1_IRQHandler
512    Definitions
513       At line 205 in file startup_stm32f030xc.s
514    Uses
515       At line 104 in file startup_stm32f030xc.s
516       At line 176 in file startup_stm32f030xc.s
517
518 DMA1_Channel1_IRQHandler 00000012
519
520 Symbol: DMA1_Channel1_IRQHandler
521    Definitions
522       At line 202 in file startup_stm32f030xc.s
523    Uses
524       At line 101 in file startup_stm32f030xc.s
525       At line 173 in file startup_stm32f030xc.s
526
527 DMA1_Channel2_3_IRQHandler 00000012
528
529 Symbol: DMA1_Channel2_3_IRQHandler
530    Definitions
531       At line 203 in file startup_stm32f030xc.s
532    Uses
533       At line 102 in file startup_stm32f030xc.s
534       At line 174 in file startup_stm32f030xc.s
535
536 DMA1_Channel4_5_IRQHandler 00000012
537
538 Symbol: DMA1_Channel4_5_IRQHandler
539    Definitions
540       At line 204 in file startup_stm32f030xc.s
541    Uses
542       At line 103 in file startup_stm32f030xc.s
543       At line 175 in file startup_stm32f030xc.s
544
545 Default_Handler 00000012
546
547 Symbol: Default_Handler
548    Definitions
549       At line 164 in file startup_stm32f030xc.s
550    Uses
551       None
552 Comment: Default_Handler unused
553 EXTI0_1_IRQHandler 00000012
554
555 Symbol: EXTI0_1_IRQHandler
556    Definitions
557       At line 199 in file startup_stm32f030xc.s
558    Uses
559       At line 97 in file startup_stm32f030xc.s
560
561
562
563 ARM Macro Assembler    Page 2 Alphabetic symbol ordering
564 Relocatable symbols
565
566       At line 170 in file startup_stm32f030xc.s
567
568 EXTI2_3_IRQHandler 00000012
569
570 Symbol: EXTI2_3_IRQHandler
571    Definitions
572       At line 200 in file startup_stm32f030xc.s
573    Uses
574       At line 98 in file startup_stm32f030xc.s
575       At line 171 in file startup_stm32f030xc.s
576
577 EXTI4_15_IRQHandler 00000012
578
579 Symbol: EXTI4_15_IRQHandler
580    Definitions
581       At line 201 in file startup_stm32f030xc.s
582    Uses
583       At line 99 in file startup_stm32f030xc.s
584       At line 172 in file startup_stm32f030xc.s
585
586 FLASH_IRQHandler 00000012
587
588 Symbol: FLASH_IRQHandler
589    Definitions
590       At line 197 in file startup_stm32f030xc.s
591    Uses
592       At line 95 in file startup_stm32f030xc.s
593       At line 168 in file startup_stm32f030xc.s
594
595 HardFault_Handler 0000000A
596
597 Symbol: HardFault_Handler
598    Definitions
599       At line 147 in file startup_stm32f030xc.s
600    Uses
601       At line 77 in file startup_stm32f030xc.s
602       At line 148 in file startup_stm32f030xc.s
603
604 I2C1_IRQHandler 00000012
605
606 Symbol: I2C1_IRQHandler
607    Definitions
608       At line 215 in file startup_stm32f030xc.s
609    Uses
610       At line 115 in file startup_stm32f030xc.s
611       At line 186 in file startup_stm32f030xc.s
612
613 I2C2_IRQHandler 00000012
614
615 Symbol: I2C2_IRQHandler
616    Definitions
617       At line 216 in file startup_stm32f030xc.s
618    Uses
619       At line 116 in file startup_stm32f030xc.s
620       At line 187 in file startup_stm32f030xc.s
621
622 NMI_Handler 00000008
623
624 Symbol: NMI_Handler
625
626
627
628 ARM Macro Assembler    Page 3 Alphabetic symbol ordering
629 Relocatable symbols
630
631    Definitions
632       At line 142 in file startup_stm32f030xc.s
633    Uses
634       At line 76 in file startup_stm32f030xc.s
635       At line 143 in file startup_stm32f030xc.s
636
637 PendSV_Handler 0000000E
638
639 Symbol: PendSV_Handler
640    Definitions
641       At line 155 in file startup_stm32f030xc.s
642    Uses
643       At line 88 in file startup_stm32f030xc.s
644       At line 156 in file startup_stm32f030xc.s
645
646 RCC_IRQHandler 00000012
647
648 Symbol: RCC_IRQHandler
649    Definitions
650       At line 198 in file startup_stm32f030xc.s
651    Uses
652       At line 96 in file startup_stm32f030xc.s
653       At line 169 in file startup_stm32f030xc.s
654
655 RTC_IRQHandler 00000012
656
657 Symbol: RTC_IRQHandler
658    Definitions
659       At line 196 in file startup_stm32f030xc.s
660    Uses
661       At line 94 in file startup_stm32f030xc.s
662       At line 167 in file startup_stm32f030xc.s
663
664 Reset_Handler 00000000
665
666 Symbol: Reset_Handler
667    Definitions
668       At line 130 in file startup_stm32f030xc.s
669    Uses
670       At line 75 in file startup_stm32f030xc.s
671       At line 131 in file startup_stm32f030xc.s
672
673 SPI1_IRQHandler 00000012
674
675 Symbol: SPI1_IRQHandler
676    Definitions
677       At line 217 in file startup_stm32f030xc.s
678    Uses
679       At line 117 in file startup_stm32f030xc.s
680       At line 188 in file startup_stm32f030xc.s
681
682 SPI2_IRQHandler 00000012
683
684 Symbol: SPI2_IRQHandler
685    Definitions
686       At line 218 in file startup_stm32f030xc.s
687    Uses
688       At line 118 in file startup_stm32f030xc.s
689       At line 189 in file startup_stm32f030xc.s
690
691
692
693 ARM Macro Assembler    Page 4 Alphabetic symbol ordering
694 Relocatable symbols
695
696
697 SVC_Handler 0000000C
698
699 Symbol: SVC_Handler
700    Definitions
701       At line 151 in file startup_stm32f030xc.s
702    Uses
703       At line 85 in file startup_stm32f030xc.s
704       At line 152 in file startup_stm32f030xc.s
705
706 SysTick_Handler 00000010
707
708 Symbol: SysTick_Handler
709    Definitions
710       At line 159 in file startup_stm32f030xc.s
711    Uses
712       At line 89 in file startup_stm32f030xc.s
713       At line 160 in file startup_stm32f030xc.s
714
715 TIM14_IRQHandler 00000012
716
717 Symbol: TIM14_IRQHandler
718    Definitions
719       At line 211 in file startup_stm32f030xc.s
720    Uses
721       At line 111 in file startup_stm32f030xc.s
722       At line 182 in file startup_stm32f030xc.s
723
724 TIM15_IRQHandler 00000012
725
726 Symbol: TIM15_IRQHandler
727    Definitions
728       At line 212 in file startup_stm32f030xc.s
729    Uses
730       At line 112 in file startup_stm32f030xc.s
731       At line 183 in file startup_stm32f030xc.s
732
733 TIM16_IRQHandler 00000012
734
735 Symbol: TIM16_IRQHandler
736    Definitions
737       At line 213 in file startup_stm32f030xc.s
738    Uses
739       At line 113 in file startup_stm32f030xc.s
740       At line 184 in file startup_stm32f030xc.s
741
742 TIM17_IRQHandler 00000012
743
744 Symbol: TIM17_IRQHandler
745    Definitions
746       At line 214 in file startup_stm32f030xc.s
747    Uses
748       At line 114 in file startup_stm32f030xc.s
749       At line 185 in file startup_stm32f030xc.s
750
751 TIM1_BRK_UP_TRG_COM_IRQHandler 00000012
752
753 Symbol: TIM1_BRK_UP_TRG_COM_IRQHandler
754    Definitions
755
756
757
758 ARM Macro Assembler    Page 5 Alphabetic symbol ordering
759 Relocatable symbols
760
761       At line 206 in file startup_stm32f030xc.s
762    Uses
763       At line 105 in file startup_stm32f030xc.s
764       At line 177 in file startup_stm32f030xc.s
765
766 TIM1_CC_IRQHandler 00000012
767
768 Symbol: TIM1_CC_IRQHandler
769    Definitions
770       At line 207 in file startup_stm32f030xc.s
771    Uses
772       At line 106 in file startup_stm32f030xc.s
773       At line 178 in file startup_stm32f030xc.s
774
775 TIM3_IRQHandler 00000012
776
777 Symbol: TIM3_IRQHandler
778    Definitions
779       At line 208 in file startup_stm32f030xc.s
780    Uses
781       At line 108 in file startup_stm32f030xc.s
782       At line 179 in file startup_stm32f030xc.s
783
784 TIM6_IRQHandler 00000012
785
786 Symbol: TIM6_IRQHandler
787    Definitions
788       At line 209 in file startup_stm32f030xc.s
789    Uses
790       At line 109 in file startup_stm32f030xc.s
791       At line 180 in file startup_stm32f030xc.s
792
793 TIM7_IRQHandler 00000012
794
795 Symbol: TIM7_IRQHandler
796    Definitions
797       At line 210 in file startup_stm32f030xc.s
798    Uses
799       At line 110 in file startup_stm32f030xc.s
800       At line 181 in file startup_stm32f030xc.s
801
802 USART1_IRQHandler 00000012
803
804 Symbol: USART1_IRQHandler
805    Definitions
806       At line 219 in file startup_stm32f030xc.s
807    Uses
808       At line 119 in file startup_stm32f030xc.s
809       At line 190 in file startup_stm32f030xc.s
810
811 USART2_IRQHandler 00000012
812
813 Symbol: USART2_IRQHandler
814    Definitions
815       At line 220 in file startup_stm32f030xc.s
816    Uses
817       At line 120 in file startup_stm32f030xc.s
818       At line 191 in file startup_stm32f030xc.s
819
820
821
822
823 ARM Macro Assembler    Page 6 Alphabetic symbol ordering
824 Relocatable symbols
825
826 USART3_6_IRQHandler 00000012
827
828 Symbol: USART3_6_IRQHandler
829    Definitions
830       At line 221 in file startup_stm32f030xc.s
831    Uses
832       At line 121 in file startup_stm32f030xc.s
833       At line 192 in file startup_stm32f030xc.s
834
835 WWDG_IRQHandler 00000012
836
837 Symbol: WWDG_IRQHandler
838    Definitions
839       At line 195 in file startup_stm32f030xc.s
840    Uses
841       At line 92 in file startup_stm32f030xc.s
842       At line 166 in file startup_stm32f030xc.s
843
844 35 symbols
845
846
847
848 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
849 Absolute symbols
850
851 Heap_Size 00000200
852
853 Symbol: Heap_Size
854    Definitions
855       At line 57 in file startup_stm32f030xc.s
856    Uses
857       At line 61 in file startup_stm32f030xc.s
858 Comment: Heap_Size used once
859 Stack_Size 00000400
860
861 Symbol: Stack_Size
862    Definitions
863       At line 46 in file startup_stm32f030xc.s
864    Uses
865       At line 49 in file startup_stm32f030xc.s
866 Comment: Stack_Size used once
867 __Vectors_Size 000000B8
868
869 Symbol: __Vectors_Size
870    Definitions
871       At line 125 in file startup_stm32f030xc.s
872    Uses
873       At line 72 in file startup_stm32f030xc.s
874 Comment: __Vectors_Size used once
875 3 symbols
876
877
878
879 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
880 External symbols
881
882 SystemInit 00000000
883
884 Symbol: SystemInit
885    Definitions
886       At line 133 in file startup_stm32f030xc.s
887    Uses
888       At line 134 in file startup_stm32f030xc.s
889 Comment: SystemInit used once
890 __main 00000000
891
892 Symbol: __main
893    Definitions
894       At line 132 in file startup_stm32f030xc.s
895    Uses
896       At line 136 in file startup_stm32f030xc.s
897 Comment: __main used once
898 2 symbols
899 386 symbols in table