QuakeGod
2023-02-01 c5764186c3ec23eb954463495b8fbd77e32b268c
提交 | 用户 | 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_stm32f030x6.s
10     3 00000000         ;* Author             : MCD Application Team
11     4 00000000         ;* Description        : STM32F030x4/STM32F030x6 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              0x400
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              0x200
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              0           ; Reserved
186   110 00000088 00000000        DCD              0           ; Reserved
187   111 0000008C 00000000        DCD              TIM14_IRQHandler ; TIM14
188   112 00000090 00000000        DCD              0           ; Reserved
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              0           ; Reserved
193   117 000000A4 00000000        DCD              SPI1_IRQHandler ; SPI1
194   118 000000A8 00000000        DCD              0           ; Reserved
195   119 000000AC 00000000        DCD              USART1_IRQHandler ; USART1
196
197
198
199 ARM Macro Assembler    Page 4 
200
201
202   120 000000B0         
203   121 000000B0         
204   122 000000B0         __Vectors_End
205   123 000000B0         
206   124 000000B0 000000B0 
207                        __Vectors_Size
208                                EQU              __Vectors_End - __Vectors
209   125 000000B0         
210   126 000000B0                 AREA             |.text|, CODE, READONLY
211   127 00000000         
212   128 00000000         ; Reset handler routine
213   129 00000000         Reset_Handler
214                                PROC
215   130 00000000                 EXPORT           Reset_Handler                 [
216 WEAK]
217   131 00000000                 IMPORT           __main
218   132 00000000                 IMPORT           SystemInit
219   133 00000000 4804            LDR              R0, =SystemInit
220   134 00000002 4780            BLX              R0
221   135 00000004 4804            LDR              R0, =__main
222   136 00000006 4700            BX               R0
223   137 00000008                 ENDP
224   138 00000008         
225   139 00000008         ; Dummy Exception Handlers (infinite loops which can be 
226                        modified)
227   140 00000008         
228   141 00000008         NMI_Handler
229                                PROC
230   142 00000008                 EXPORT           NMI_Handler                    
231 [WEAK]
232   143 00000008 E7FE            B                .
233   144 0000000A                 ENDP
234   146 0000000A         HardFault_Handler
235                                PROC
236   147 0000000A                 EXPORT           HardFault_Handler              
237 [WEAK]
238   148 0000000A E7FE            B                .
239   149 0000000C                 ENDP
240   150 0000000C         SVC_Handler
241                                PROC
242   151 0000000C                 EXPORT           SVC_Handler                    
243 [WEAK]
244   152 0000000C E7FE            B                .
245   153 0000000E                 ENDP
246   154 0000000E         PendSV_Handler
247                                PROC
248   155 0000000E                 EXPORT           PendSV_Handler                 
249 [WEAK]
250   156 0000000E E7FE            B                .
251   157 00000010                 ENDP
252   158 00000010         SysTick_Handler
253                                PROC
254   159 00000010                 EXPORT           SysTick_Handler                
255 [WEAK]
256   160 00000010 E7FE            B                .
257   161 00000012                 ENDP
258   162 00000012         
259   163 00000012         Default_Handler
260                                PROC
261
262
263
264 ARM Macro Assembler    Page 5 
265
266
267   164 00000012         
268   165 00000012                 EXPORT           WWDG_IRQHandler                
269 [WEAK]
270   166 00000012                 EXPORT           RTC_IRQHandler                 
271 [WEAK]
272   167 00000012                 EXPORT           FLASH_IRQHandler               
273 [WEAK]
274   168 00000012                 EXPORT           RCC_IRQHandler                 
275 [WEAK]
276   169 00000012                 EXPORT           EXTI0_1_IRQHandler             
277 [WEAK]
278   170 00000012                 EXPORT           EXTI2_3_IRQHandler             
279 [WEAK]
280   171 00000012                 EXPORT           EXTI4_15_IRQHandler            
281 [WEAK]
282   172 00000012                 EXPORT           DMA1_Channel1_IRQHandler       
283 [WEAK]
284   173 00000012                 EXPORT           DMA1_Channel2_3_IRQHandler     
285 [WEAK]
286   174 00000012                 EXPORT           DMA1_Channel4_5_IRQHandler     
287 [WEAK]
288   175 00000012                 EXPORT           ADC1_IRQHandler                
289 [WEAK]
290   176 00000012                 EXPORT           TIM1_BRK_UP_TRG_COM_IRQHandler 
291 [WEAK]
292   177 00000012                 EXPORT           TIM1_CC_IRQHandler             
293 [WEAK]
294   178 00000012                 EXPORT           TIM3_IRQHandler                
295 [WEAK]
296   179 00000012                 EXPORT           TIM14_IRQHandler               
297 [WEAK]
298   180 00000012                 EXPORT           TIM16_IRQHandler               
299 [WEAK]
300   181 00000012                 EXPORT           TIM17_IRQHandler               
301 [WEAK]
302   182 00000012                 EXPORT           I2C1_IRQHandler                
303 [WEAK]
304   183 00000012                 EXPORT           SPI1_IRQHandler                
305 [WEAK]
306   184 00000012                 EXPORT           USART1_IRQHandler              
307 [WEAK]
308   185 00000012         
309   186 00000012         
310   187 00000012         WWDG_IRQHandler
311   188 00000012         RTC_IRQHandler
312   189 00000012         FLASH_IRQHandler
313   190 00000012         RCC_IRQHandler
314   191 00000012         EXTI0_1_IRQHandler
315   192 00000012         EXTI2_3_IRQHandler
316   193 00000012         EXTI4_15_IRQHandler
317   194 00000012         DMA1_Channel1_IRQHandler
318   195 00000012         DMA1_Channel2_3_IRQHandler
319   196 00000012         DMA1_Channel4_5_IRQHandler
320   197 00000012         ADC1_IRQHandler
321   198 00000012         TIM1_BRK_UP_TRG_COM_IRQHandler
322   199 00000012         TIM1_CC_IRQHandler
323   200 00000012         TIM3_IRQHandler
324   201 00000012         TIM14_IRQHandler
325   202 00000012         TIM16_IRQHandler
326
327
328
329 ARM Macro Assembler    Page 6 
330
331
332   203 00000012         TIM17_IRQHandler
333   204 00000012         I2C1_IRQHandler
334   205 00000012         SPI1_IRQHandler
335   206 00000012         USART1_IRQHandler
336   207 00000012         
337   208 00000012 E7FE            B                .
338   209 00000014         
339   210 00000014                 ENDP
340   211 00000014         
341   212 00000014                 ALIGN
342   213 00000014         
343   214 00000014         ;*******************************************************
344                        ************************
345   215 00000014         ; User Stack and Heap initialization
346   216 00000014         ;*******************************************************
347                        ************************
348   217 00000014                 IF               :DEF:__MICROLIB
349   218 00000014         
350   219 00000014                 EXPORT           __initial_sp
351   220 00000014                 EXPORT           __heap_base
352   221 00000014                 EXPORT           __heap_limit
353   222 00000014         
354   223 00000014                 ELSE
355   238                          ENDIF
356   239 00000014         
357   240 00000014                 END
358               00000000 
359               00000000 
360 Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
361 ork --depend=f030c8t6_test1\startup_stm32f030x6.d -of030c8t6_test1\startup_stm3
362 2f030x6.o -IE:\WORK\电路和单片机\分布IO\STM32F030\F030C8T6_test1\MDK-ARM\RTE\_F
363 030C8T6_Test1 -ID:\Keil_v5\ARM\PACK\ARM\CMSIS\5.3.0\CMSIS\Include -ID:\Keil_v5\
364 ARM\PACK\Keil\STM32F0xx_DFP\2.0.0\Drivers\CMSIS\Device\ST\STM32F0xx\Include --p
365 redefine="__MICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 522" --predefi
366 ne="_RTE_ SETA 1" --predefine="STM32F030x8 SETA 1" --list=startup_stm32f030x6.l
367 st startup_stm32f030x6.s
368
369
370
371 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
372 Relocatable symbols
373
374 STACK 00000000
375
376 Symbol: STACK
377    Definitions
378       At line 48 in file startup_stm32f030x6.s
379    Uses
380       None
381 Comment: STACK unused
382 Stack_Mem 00000000
383
384 Symbol: Stack_Mem
385    Definitions
386       At line 49 in file startup_stm32f030x6.s
387    Uses
388       None
389 Comment: Stack_Mem unused
390 __initial_sp 00000400
391
392 Symbol: __initial_sp
393    Definitions
394       At line 50 in file startup_stm32f030x6.s
395    Uses
396       At line 74 in file startup_stm32f030x6.s
397       At line 219 in file startup_stm32f030x6.s
398
399 3 symbols
400
401
402
403 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
404 Relocatable symbols
405
406 HEAP 00000000
407
408 Symbol: HEAP
409    Definitions
410       At line 59 in file startup_stm32f030x6.s
411    Uses
412       None
413 Comment: HEAP unused
414 Heap_Mem 00000000
415
416 Symbol: Heap_Mem
417    Definitions
418       At line 61 in file startup_stm32f030x6.s
419    Uses
420       None
421 Comment: Heap_Mem unused
422 __heap_base 00000000
423
424 Symbol: __heap_base
425    Definitions
426       At line 60 in file startup_stm32f030x6.s
427    Uses
428       At line 220 in file startup_stm32f030x6.s
429 Comment: __heap_base used once
430 __heap_limit 00000200
431
432 Symbol: __heap_limit
433    Definitions
434       At line 62 in file startup_stm32f030x6.s
435    Uses
436       At line 221 in file startup_stm32f030x6.s
437 Comment: __heap_limit used once
438 4 symbols
439
440
441
442 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
443 Relocatable symbols
444
445 RESET 00000000
446
447 Symbol: RESET
448    Definitions
449       At line 69 in file startup_stm32f030x6.s
450    Uses
451       None
452 Comment: RESET unused
453 __Vectors 00000000
454
455 Symbol: __Vectors
456    Definitions
457       At line 74 in file startup_stm32f030x6.s
458    Uses
459       At line 70 in file startup_stm32f030x6.s
460       At line 124 in file startup_stm32f030x6.s
461
462 __Vectors_End 000000B0
463
464 Symbol: __Vectors_End
465    Definitions
466       At line 122 in file startup_stm32f030x6.s
467    Uses
468       At line 71 in file startup_stm32f030x6.s
469       At line 124 in file startup_stm32f030x6.s
470
471 3 symbols
472
473
474
475 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
476 Relocatable symbols
477
478 .text 00000000
479
480 Symbol: .text
481    Definitions
482       At line 126 in file startup_stm32f030x6.s
483    Uses
484       None
485 Comment: .text unused
486 ADC1_IRQHandler 00000012
487
488 Symbol: ADC1_IRQHandler
489    Definitions
490       At line 197 in file startup_stm32f030x6.s
491    Uses
492       At line 104 in file startup_stm32f030x6.s
493       At line 175 in file startup_stm32f030x6.s
494
495 DMA1_Channel1_IRQHandler 00000012
496
497 Symbol: DMA1_Channel1_IRQHandler
498    Definitions
499       At line 194 in file startup_stm32f030x6.s
500    Uses
501       At line 101 in file startup_stm32f030x6.s
502       At line 172 in file startup_stm32f030x6.s
503
504 DMA1_Channel2_3_IRQHandler 00000012
505
506 Symbol: DMA1_Channel2_3_IRQHandler
507    Definitions
508       At line 195 in file startup_stm32f030x6.s
509    Uses
510       At line 102 in file startup_stm32f030x6.s
511       At line 173 in file startup_stm32f030x6.s
512
513 DMA1_Channel4_5_IRQHandler 00000012
514
515 Symbol: DMA1_Channel4_5_IRQHandler
516    Definitions
517       At line 196 in file startup_stm32f030x6.s
518    Uses
519       At line 103 in file startup_stm32f030x6.s
520       At line 174 in file startup_stm32f030x6.s
521
522 Default_Handler 00000012
523
524 Symbol: Default_Handler
525    Definitions
526       At line 163 in file startup_stm32f030x6.s
527    Uses
528       None
529 Comment: Default_Handler unused
530 EXTI0_1_IRQHandler 00000012
531
532 Symbol: EXTI0_1_IRQHandler
533    Definitions
534       At line 191 in file startup_stm32f030x6.s
535    Uses
536       At line 97 in file startup_stm32f030x6.s
537
538
539
540 ARM Macro Assembler    Page 2 Alphabetic symbol ordering
541 Relocatable symbols
542
543       At line 169 in file startup_stm32f030x6.s
544
545 EXTI2_3_IRQHandler 00000012
546
547 Symbol: EXTI2_3_IRQHandler
548    Definitions
549       At line 192 in file startup_stm32f030x6.s
550    Uses
551       At line 98 in file startup_stm32f030x6.s
552       At line 170 in file startup_stm32f030x6.s
553
554 EXTI4_15_IRQHandler 00000012
555
556 Symbol: EXTI4_15_IRQHandler
557    Definitions
558       At line 193 in file startup_stm32f030x6.s
559    Uses
560       At line 99 in file startup_stm32f030x6.s
561       At line 171 in file startup_stm32f030x6.s
562
563 FLASH_IRQHandler 00000012
564
565 Symbol: FLASH_IRQHandler
566    Definitions
567       At line 189 in file startup_stm32f030x6.s
568    Uses
569       At line 95 in file startup_stm32f030x6.s
570       At line 167 in file startup_stm32f030x6.s
571
572 HardFault_Handler 0000000A
573
574 Symbol: HardFault_Handler
575    Definitions
576       At line 146 in file startup_stm32f030x6.s
577    Uses
578       At line 77 in file startup_stm32f030x6.s
579       At line 147 in file startup_stm32f030x6.s
580
581 I2C1_IRQHandler 00000012
582
583 Symbol: I2C1_IRQHandler
584    Definitions
585       At line 204 in file startup_stm32f030x6.s
586    Uses
587       At line 115 in file startup_stm32f030x6.s
588       At line 182 in file startup_stm32f030x6.s
589
590 NMI_Handler 00000008
591
592 Symbol: NMI_Handler
593    Definitions
594       At line 141 in file startup_stm32f030x6.s
595    Uses
596       At line 76 in file startup_stm32f030x6.s
597       At line 142 in file startup_stm32f030x6.s
598
599 PendSV_Handler 0000000E
600
601 Symbol: PendSV_Handler
602
603
604
605 ARM Macro Assembler    Page 3 Alphabetic symbol ordering
606 Relocatable symbols
607
608    Definitions
609       At line 154 in file startup_stm32f030x6.s
610    Uses
611       At line 88 in file startup_stm32f030x6.s
612       At line 155 in file startup_stm32f030x6.s
613
614 RCC_IRQHandler 00000012
615
616 Symbol: RCC_IRQHandler
617    Definitions
618       At line 190 in file startup_stm32f030x6.s
619    Uses
620       At line 96 in file startup_stm32f030x6.s
621       At line 168 in file startup_stm32f030x6.s
622
623 RTC_IRQHandler 00000012
624
625 Symbol: RTC_IRQHandler
626    Definitions
627       At line 188 in file startup_stm32f030x6.s
628    Uses
629       At line 94 in file startup_stm32f030x6.s
630       At line 166 in file startup_stm32f030x6.s
631
632 Reset_Handler 00000000
633
634 Symbol: Reset_Handler
635    Definitions
636       At line 129 in file startup_stm32f030x6.s
637    Uses
638       At line 75 in file startup_stm32f030x6.s
639       At line 130 in file startup_stm32f030x6.s
640
641 SPI1_IRQHandler 00000012
642
643 Symbol: SPI1_IRQHandler
644    Definitions
645       At line 205 in file startup_stm32f030x6.s
646    Uses
647       At line 117 in file startup_stm32f030x6.s
648       At line 183 in file startup_stm32f030x6.s
649
650 SVC_Handler 0000000C
651
652 Symbol: SVC_Handler
653    Definitions
654       At line 150 in file startup_stm32f030x6.s
655    Uses
656       At line 85 in file startup_stm32f030x6.s
657       At line 151 in file startup_stm32f030x6.s
658
659 SysTick_Handler 00000010
660
661 Symbol: SysTick_Handler
662    Definitions
663       At line 158 in file startup_stm32f030x6.s
664    Uses
665       At line 89 in file startup_stm32f030x6.s
666       At line 159 in file startup_stm32f030x6.s
667
668
669
670 ARM Macro Assembler    Page 4 Alphabetic symbol ordering
671 Relocatable symbols
672
673
674 TIM14_IRQHandler 00000012
675
676 Symbol: TIM14_IRQHandler
677    Definitions
678       At line 201 in file startup_stm32f030x6.s
679    Uses
680       At line 111 in file startup_stm32f030x6.s
681       At line 179 in file startup_stm32f030x6.s
682
683 TIM16_IRQHandler 00000012
684
685 Symbol: TIM16_IRQHandler
686    Definitions
687       At line 202 in file startup_stm32f030x6.s
688    Uses
689       At line 113 in file startup_stm32f030x6.s
690       At line 180 in file startup_stm32f030x6.s
691
692 TIM17_IRQHandler 00000012
693
694 Symbol: TIM17_IRQHandler
695    Definitions
696       At line 203 in file startup_stm32f030x6.s
697    Uses
698       At line 114 in file startup_stm32f030x6.s
699       At line 181 in file startup_stm32f030x6.s
700
701 TIM1_BRK_UP_TRG_COM_IRQHandler 00000012
702
703 Symbol: TIM1_BRK_UP_TRG_COM_IRQHandler
704    Definitions
705       At line 198 in file startup_stm32f030x6.s
706    Uses
707       At line 105 in file startup_stm32f030x6.s
708       At line 176 in file startup_stm32f030x6.s
709
710 TIM1_CC_IRQHandler 00000012
711
712 Symbol: TIM1_CC_IRQHandler
713    Definitions
714       At line 199 in file startup_stm32f030x6.s
715    Uses
716       At line 106 in file startup_stm32f030x6.s
717       At line 177 in file startup_stm32f030x6.s
718
719 TIM3_IRQHandler 00000012
720
721 Symbol: TIM3_IRQHandler
722    Definitions
723       At line 200 in file startup_stm32f030x6.s
724    Uses
725       At line 108 in file startup_stm32f030x6.s
726       At line 178 in file startup_stm32f030x6.s
727
728 USART1_IRQHandler 00000012
729
730 Symbol: USART1_IRQHandler
731    Definitions
732
733
734
735 ARM Macro Assembler    Page 5 Alphabetic symbol ordering
736 Relocatable symbols
737
738       At line 206 in file startup_stm32f030x6.s
739    Uses
740       At line 119 in file startup_stm32f030x6.s
741       At line 184 in file startup_stm32f030x6.s
742
743 WWDG_IRQHandler 00000012
744
745 Symbol: WWDG_IRQHandler
746    Definitions
747       At line 187 in file startup_stm32f030x6.s
748    Uses
749       At line 92 in file startup_stm32f030x6.s
750       At line 165 in file startup_stm32f030x6.s
751
752 28 symbols
753
754
755
756 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
757 Absolute symbols
758
759 Heap_Size 00000200
760
761 Symbol: Heap_Size
762    Definitions
763       At line 57 in file startup_stm32f030x6.s
764    Uses
765       At line 61 in file startup_stm32f030x6.s
766 Comment: Heap_Size used once
767 Stack_Size 00000400
768
769 Symbol: Stack_Size
770    Definitions
771       At line 46 in file startup_stm32f030x6.s
772    Uses
773       At line 49 in file startup_stm32f030x6.s
774 Comment: Stack_Size used once
775 __Vectors_Size 000000B0
776
777 Symbol: __Vectors_Size
778    Definitions
779       At line 124 in file startup_stm32f030x6.s
780    Uses
781       At line 72 in file startup_stm32f030x6.s
782 Comment: __Vectors_Size used once
783 3 symbols
784
785
786
787 ARM Macro Assembler    Page 1 Alphabetic symbol ordering
788 External symbols
789
790 SystemInit 00000000
791
792 Symbol: SystemInit
793    Definitions
794       At line 132 in file startup_stm32f030x6.s
795    Uses
796       At line 133 in file startup_stm32f030x6.s
797 Comment: SystemInit used once
798 __main 00000000
799
800 Symbol: __main
801    Definitions
802       At line 131 in file startup_stm32f030x6.s
803    Uses
804       At line 135 in file startup_stm32f030x6.s
805 Comment: __main used once
806 2 symbols
807 379 symbols in table