mirror of
https://github.com/dekuNukem/USB4VC.git
synced 2025-10-31 11:26:46 -07:00
956 lines
31 KiB
Plaintext
956 lines
31 KiB
Plaintext
|
|
|
|
|
|
ARM Macro Assembler Page 1
|
|
|
|
|
|
1 00000000 ;******************** (C) COPYRIGHT 2016 STMicroelectron
|
|
ics ********************
|
|
2 00000000 ;* File Name : startup_stm32f042x6.s
|
|
3 00000000 ;* Author : MCD Application Team
|
|
4 00000000 ;* Description : STM32F042x4/STM32F042x6 devices
|
|
vector table for MDK-ARM toolchain.
|
|
5 00000000 ;* This module performs:
|
|
6 00000000 ;* - Set the initial SP
|
|
7 00000000 ;* - Set the initial PC == Reset_Ha
|
|
ndler
|
|
8 00000000 ;* - Set the vector table entries w
|
|
ith the exceptions ISR address
|
|
9 00000000 ;* - Branches to __main in the C li
|
|
brary (which eventually
|
|
10 00000000 ;* calls main()).
|
|
11 00000000 ;* After Reset the CortexM0 process
|
|
or is in Thread mode,
|
|
12 00000000 ;* priority is Privileged, and the
|
|
Stack is set to Main.
|
|
13 00000000 ;* <<< Use Configuration Wizard in Context Menu >>>
|
|
14 00000000 ;*******************************************************
|
|
************************
|
|
15 00000000 ;*
|
|
16 00000000 ;* Redistribution and use in source and binary forms, wi
|
|
th or without modification,
|
|
17 00000000 ;* are permitted provided that the following conditions
|
|
are met:
|
|
18 00000000 ;* 1. Redistributions of source code must retain the a
|
|
bove copyright notice,
|
|
19 00000000 ;* this list of conditions and the following discla
|
|
imer.
|
|
20 00000000 ;* 2. Redistributions in binary form must reproduce th
|
|
e above copyright notice,
|
|
21 00000000 ;* this list of conditions and the following discla
|
|
imer in the documentation
|
|
22 00000000 ;* and/or other materials provided with the distrib
|
|
ution.
|
|
23 00000000 ;* 3. Neither the name of STMicroelectronics nor the n
|
|
ames of its contributors
|
|
24 00000000 ;* may be used to endorse or promote products deriv
|
|
ed from this software
|
|
25 00000000 ;* without specific prior written permission.
|
|
26 00000000 ;*
|
|
27 00000000 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AN
|
|
D CONTRIBUTORS "AS IS"
|
|
28 00000000 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
|
|
NOT LIMITED TO, THE
|
|
29 00000000 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE
|
|
30 00000000 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
CONTRIBUTORS BE LIABLE
|
|
31 00000000 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPL
|
|
ARY, OR CONSEQUENTIAL
|
|
32 00000000 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT O
|
|
F SUBSTITUTE GOODS OR
|
|
33 00000000 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
INTERRUPTION) HOWEVER
|
|
34 00000000 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CON
|
|
TRACT, STRICT LIABILITY,
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 2
|
|
|
|
|
|
35 00000000 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING I
|
|
N ANY WAY OUT OF THE USE
|
|
36 00000000 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
|
OF SUCH DAMAGE.
|
|
37 00000000 ;
|
|
38 00000000 ;*******************************************************
|
|
************************
|
|
39 00000000
|
|
40 00000000 ; Amount of memory (in bytes) allocated for Stack
|
|
41 00000000 ; Tailor this value to your application needs
|
|
42 00000000 ; <h> Stack Configuration
|
|
43 00000000 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
|
|
44 00000000 ; </h>
|
|
45 00000000
|
|
46 00000000 00000400
|
|
Stack_Size
|
|
EQU 0x400
|
|
47 00000000
|
|
48 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
|
|
=3
|
|
49 00000000 Stack_Mem
|
|
SPACE Stack_Size
|
|
50 00000400 __initial_sp
|
|
51 00000400
|
|
52 00000400
|
|
53 00000400 ; <h> Heap Configuration
|
|
54 00000400 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
|
|
55 00000400 ; </h>
|
|
56 00000400
|
|
57 00000400 00000200
|
|
Heap_Size
|
|
EQU 0x200
|
|
58 00000400
|
|
59 00000400 AREA HEAP, NOINIT, READWRITE, ALIGN=
|
|
3
|
|
60 00000000 __heap_base
|
|
61 00000000 Heap_Mem
|
|
SPACE Heap_Size
|
|
62 00000200 __heap_limit
|
|
63 00000200
|
|
64 00000200 PRESERVE8
|
|
65 00000200 THUMB
|
|
66 00000200
|
|
67 00000200
|
|
68 00000200 ; Vector Table Mapped to Address 0 at Reset
|
|
69 00000200 AREA RESET, DATA, READONLY
|
|
70 00000000 EXPORT __Vectors
|
|
71 00000000 EXPORT __Vectors_End
|
|
72 00000000 EXPORT __Vectors_Size
|
|
73 00000000
|
|
74 00000000 00000000
|
|
__Vectors
|
|
DCD __initial_sp ; Top of Stack
|
|
75 00000004 00000000 DCD Reset_Handler ; Reset Handler
|
|
76 00000008 00000000 DCD NMI_Handler ; NMI Handler
|
|
77 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
|
|
Handler
|
|
78 00000010 00000000 DCD 0 ; Reserved
|
|
79 00000014 00000000 DCD 0 ; Reserved
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 3
|
|
|
|
|
|
80 00000018 00000000 DCD 0 ; Reserved
|
|
81 0000001C 00000000 DCD 0 ; Reserved
|
|
82 00000020 00000000 DCD 0 ; Reserved
|
|
83 00000024 00000000 DCD 0 ; Reserved
|
|
84 00000028 00000000 DCD 0 ; Reserved
|
|
85 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
|
|
86 00000030 00000000 DCD 0 ; Reserved
|
|
87 00000034 00000000 DCD 0 ; Reserved
|
|
88 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
|
|
|
|
89 0000003C 00000000 DCD SysTick_Handler
|
|
; SysTick Handler
|
|
90 00000040
|
|
91 00000040 ; External Interrupts
|
|
92 00000040 00000000 DCD WWDG_IRQHandler
|
|
; Window Watchdog
|
|
93 00000044 00000000 DCD PVD_VDDIO2_IRQHandler ; PVD thr
|
|
ough EXTI Line dete
|
|
ct
|
|
94 00000048 00000000 DCD RTC_IRQHandler ; RTC through EX
|
|
TI Line
|
|
95 0000004C 00000000 DCD FLASH_IRQHandler ; FLASH
|
|
96 00000050 00000000 DCD RCC_CRS_IRQHandler
|
|
; RCC and CRS
|
|
97 00000054 00000000 DCD EXTI0_1_IRQHandler
|
|
; EXTI Line 0 and 1
|
|
|
|
98 00000058 00000000 DCD EXTI2_3_IRQHandler
|
|
; EXTI Line 2 and 3
|
|
|
|
99 0000005C 00000000 DCD EXTI4_15_IRQHandler
|
|
; EXTI Line 4 to 15
|
|
|
|
100 00000060 00000000 DCD TSC_IRQHandler ; TS
|
|
101 00000064 00000000 DCD DMA1_Channel1_IRQHandler
|
|
; DMA1 Channel 1
|
|
102 00000068 00000000 DCD DMA1_Channel2_3_IRQHandler ; DM
|
|
A1 Channel 2 and Ch
|
|
annel 3
|
|
103 0000006C 00000000 DCD DMA1_Channel4_5_IRQHandler ; DM
|
|
A1 Channel 4 and Ch
|
|
annel 5
|
|
104 00000070 00000000 DCD ADC1_IRQHandler ; ADC1
|
|
105 00000074 00000000 DCD TIM1_BRK_UP_TRG_COM_IRQHandler
|
|
; TIM1 Break, Updat
|
|
e, Trigger and Comm
|
|
utation
|
|
106 00000078 00000000 DCD TIM1_CC_IRQHandler ; TIM1 Captu
|
|
re Compare
|
|
107 0000007C 00000000 DCD TIM2_IRQHandler ; TIM2
|
|
108 00000080 00000000 DCD TIM3_IRQHandler ; TIM3
|
|
109 00000084 00000000 DCD 0 ; Reserved
|
|
110 00000088 00000000 DCD 0 ; Reserved
|
|
111 0000008C 00000000 DCD TIM14_IRQHandler ; TIM14
|
|
112 00000090 00000000 DCD 0 ; Reserved
|
|
113 00000094 00000000 DCD TIM16_IRQHandler ; TIM16
|
|
114 00000098 00000000 DCD TIM17_IRQHandler ; TIM17
|
|
115 0000009C 00000000 DCD I2C1_IRQHandler ; I2C1
|
|
116 000000A0 00000000 DCD 0 ; Reserved
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 4
|
|
|
|
|
|
117 000000A4 00000000 DCD SPI1_IRQHandler ; SPI1
|
|
118 000000A8 00000000 DCD SPI2_IRQHandler ; SPI2
|
|
119 000000AC 00000000 DCD USART1_IRQHandler ; USART1
|
|
120 000000B0 00000000 DCD USART2_IRQHandler ; USART2
|
|
121 000000B4 00000000 DCD 0 ; Reserved
|
|
122 000000B8 00000000 DCD CEC_CAN_IRQHandler
|
|
; CEC and CAN
|
|
123 000000BC 00000000 DCD USB_IRQHandler ; USB
|
|
124 000000C0
|
|
125 000000C0 __Vectors_End
|
|
126 000000C0
|
|
127 000000C0 000000C0
|
|
__Vectors_Size
|
|
EQU __Vectors_End - __Vectors
|
|
128 000000C0
|
|
129 000000C0 AREA |.text|, CODE, READONLY
|
|
130 00000000
|
|
131 00000000 ; Reset handler routine
|
|
132 00000000 Reset_Handler
|
|
PROC
|
|
133 00000000 EXPORT Reset_Handler [
|
|
WEAK]
|
|
134 00000000 IMPORT __main
|
|
135 00000000 IMPORT SystemInit
|
|
136 00000000
|
|
137 00000000
|
|
138 00000000
|
|
139 00000000 480C LDR R0, =__initial_sp ; set stack p
|
|
ointer
|
|
140 00000002 F380 8808 MSR MSP, R0
|
|
141 00000006
|
|
142 00000006 ;;Check if boot space corresponds to test memory
|
|
143 00000006
|
|
144 00000006 480C LDR R0,=0x00000004
|
|
145 00000008 6801 LDR R1, [R0]
|
|
146 0000000A 0E09 LSRS R1, R1, #24
|
|
147 0000000C 4A0B LDR R2,=0x1F
|
|
148 0000000E 4291 CMP R1, R2
|
|
149 00000010
|
|
150 00000010 D105 BNE ApplicationStart
|
|
151 00000012
|
|
152 00000012 ;; SYSCFG clock enable
|
|
153 00000012
|
|
154 00000012 480B LDR R0,=0x40021018
|
|
155 00000014 490B LDR R1,=0x00000001
|
|
156 00000016 6001 STR R1, [R0]
|
|
157 00000018
|
|
158 00000018 ;; Set CFGR1 register with flash memory remap at address
|
|
0
|
|
159 00000018
|
|
160 00000018 480B LDR R0,=0x40010000
|
|
161 0000001A 490C LDR R1,=0x00000000
|
|
162 0000001C 6001 STR R1, [R0]
|
|
163 0000001E ApplicationStart
|
|
164 0000001E 480C LDR R0, =SystemInit
|
|
165 00000020 4780 BLX R0
|
|
166 00000022 480C LDR R0, =__main
|
|
167 00000024 4700 BX R0
|
|
168 00000026 ENDP
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 5
|
|
|
|
|
|
169 00000026
|
|
170 00000026 ; Dummy Exception Handlers (infinite loops which can be
|
|
modified)
|
|
171 00000026
|
|
172 00000026 NMI_Handler
|
|
PROC
|
|
173 00000026 EXPORT NMI_Handler
|
|
[WEAK]
|
|
174 00000026 E7FE B .
|
|
175 00000028 ENDP
|
|
177 00000028 HardFault_Handler
|
|
PROC
|
|
178 00000028 EXPORT HardFault_Handler
|
|
[WEAK]
|
|
179 00000028 E7FE B .
|
|
180 0000002A ENDP
|
|
181 0000002A SVC_Handler
|
|
PROC
|
|
182 0000002A EXPORT SVC_Handler
|
|
[WEAK]
|
|
183 0000002A E7FE B .
|
|
184 0000002C ENDP
|
|
185 0000002C PendSV_Handler
|
|
PROC
|
|
186 0000002C EXPORT PendSV_Handler
|
|
[WEAK]
|
|
187 0000002C E7FE B .
|
|
188 0000002E ENDP
|
|
189 0000002E SysTick_Handler
|
|
PROC
|
|
190 0000002E EXPORT SysTick_Handler
|
|
[WEAK]
|
|
191 0000002E E7FE B .
|
|
192 00000030 ENDP
|
|
193 00000030
|
|
194 00000030 Default_Handler
|
|
PROC
|
|
195 00000030
|
|
196 00000030 EXPORT WWDG_IRQHandler
|
|
[WEAK]
|
|
197 00000030 EXPORT PVD_VDDIO2_IRQHandler
|
|
[WEAK]
|
|
198 00000030 EXPORT RTC_IRQHandler
|
|
[WEAK]
|
|
199 00000030 EXPORT FLASH_IRQHandler
|
|
[WEAK]
|
|
200 00000030 EXPORT RCC_CRS_IRQHandler
|
|
[WEAK]
|
|
201 00000030 EXPORT EXTI0_1_IRQHandler
|
|
[WEAK]
|
|
202 00000030 EXPORT EXTI2_3_IRQHandler
|
|
[WEAK]
|
|
203 00000030 EXPORT EXTI4_15_IRQHandler
|
|
[WEAK]
|
|
204 00000030 EXPORT TSC_IRQHandler
|
|
[WEAK]
|
|
205 00000030 EXPORT DMA1_Channel1_IRQHandler
|
|
[WEAK]
|
|
206 00000030 EXPORT DMA1_Channel2_3_IRQHandler
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 6
|
|
|
|
|
|
[WEAK]
|
|
207 00000030 EXPORT DMA1_Channel4_5_IRQHandler [WEA
|
|
K]
|
|
208 00000030 EXPORT ADC1_IRQHandler [WEAK
|
|
]
|
|
209 00000030 EXPORT TIM1_BRK_UP_TRG_COM_IRQHandler
|
|
[WEAK]
|
|
210 00000030 EXPORT TIM1_CC_IRQHandler
|
|
[WEAK]
|
|
211 00000030 EXPORT TIM2_IRQHandler
|
|
[WEAK]
|
|
212 00000030 EXPORT TIM3_IRQHandler
|
|
[WEAK]
|
|
213 00000030 EXPORT TIM14_IRQHandler
|
|
[WEAK]
|
|
214 00000030 EXPORT TIM16_IRQHandler
|
|
[WEAK]
|
|
215 00000030 EXPORT TIM17_IRQHandler
|
|
[WEAK]
|
|
216 00000030 EXPORT I2C1_IRQHandler
|
|
[WEAK]
|
|
217 00000030 EXPORT SPI1_IRQHandler
|
|
[WEAK]
|
|
218 00000030 EXPORT SPI2_IRQHandler
|
|
[WEAK]
|
|
219 00000030 EXPORT USART1_IRQHandler
|
|
[WEAK]
|
|
220 00000030 EXPORT USART2_IRQHandler
|
|
[WEAK]
|
|
221 00000030 EXPORT CEC_CAN_IRQHandler
|
|
[WEAK]
|
|
222 00000030 EXPORT USB_IRQHandler
|
|
[WEAK]
|
|
223 00000030
|
|
224 00000030
|
|
225 00000030 WWDG_IRQHandler
|
|
226 00000030 PVD_VDDIO2_IRQHandler
|
|
227 00000030 RTC_IRQHandler
|
|
228 00000030 FLASH_IRQHandler
|
|
229 00000030 RCC_CRS_IRQHandler
|
|
230 00000030 EXTI0_1_IRQHandler
|
|
231 00000030 EXTI2_3_IRQHandler
|
|
232 00000030 EXTI4_15_IRQHandler
|
|
233 00000030 TSC_IRQHandler
|
|
234 00000030 DMA1_Channel1_IRQHandler
|
|
235 00000030 DMA1_Channel2_3_IRQHandler
|
|
236 00000030 DMA1_Channel4_5_IRQHandler
|
|
237 00000030 ADC1_IRQHandler
|
|
238 00000030 TIM1_BRK_UP_TRG_COM_IRQHandler
|
|
239 00000030 TIM1_CC_IRQHandler
|
|
240 00000030 TIM2_IRQHandler
|
|
241 00000030 TIM3_IRQHandler
|
|
242 00000030 TIM14_IRQHandler
|
|
243 00000030 TIM16_IRQHandler
|
|
244 00000030 TIM17_IRQHandler
|
|
245 00000030 I2C1_IRQHandler
|
|
246 00000030 SPI1_IRQHandler
|
|
247 00000030 SPI2_IRQHandler
|
|
248 00000030 USART1_IRQHandler
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 7
|
|
|
|
|
|
249 00000030 USART2_IRQHandler
|
|
250 00000030 CEC_CAN_IRQHandler
|
|
251 00000030 USB_IRQHandler
|
|
252 00000030
|
|
253 00000030 E7FE B .
|
|
254 00000032
|
|
255 00000032 ENDP
|
|
256 00000032
|
|
257 00000032 00 00 ALIGN
|
|
258 00000034
|
|
259 00000034 ;*******************************************************
|
|
************************
|
|
260 00000034 ; User Stack and Heap initialization
|
|
261 00000034 ;*******************************************************
|
|
************************
|
|
262 00000034 IF :DEF:__MICROLIB
|
|
263 00000034
|
|
264 00000034 EXPORT __initial_sp
|
|
265 00000034 EXPORT __heap_base
|
|
266 00000034 EXPORT __heap_limit
|
|
267 00000034
|
|
268 00000034 ELSE
|
|
283 ENDIF
|
|
284 00000034
|
|
285 00000034 END
|
|
00000000
|
|
00000004
|
|
0000001F
|
|
40021018
|
|
00000001
|
|
40010000
|
|
00000000
|
|
00000000
|
|
00000000
|
|
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
|
|
ork --depend=my_adb\startup_stm32f042x6.d -omy_adb\startup_stm32f042x6.o -I.\RT
|
|
E\_my_adb -IC:\Users\allen\AppData\Local\Arm\Packs\ARM\CMSIS\5.6.0\CMSIS\Core\I
|
|
nclude -IC:\Users\allen\AppData\Local\Arm\Packs\Keil\STM32F0xx_DFP\2.0.0\Driver
|
|
s\CMSIS\Device\ST\STM32F0xx\Include --predefine="__MICROLIB SETA 1" --predefine
|
|
="__UVISION_VERSION SETA 529" --predefine="_RTE_ SETA 1" --predefine="STM32F042
|
|
x6 SETA 1" --list=startup_stm32f042x6.lst startup_stm32f042x6.s
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
STACK 00000000
|
|
|
|
Symbol: STACK
|
|
Definitions
|
|
At line 48 in file startup_stm32f042x6.s
|
|
Uses
|
|
None
|
|
Comment: STACK unused
|
|
Stack_Mem 00000000
|
|
|
|
Symbol: Stack_Mem
|
|
Definitions
|
|
At line 49 in file startup_stm32f042x6.s
|
|
Uses
|
|
None
|
|
Comment: Stack_Mem unused
|
|
__initial_sp 00000400
|
|
|
|
Symbol: __initial_sp
|
|
Definitions
|
|
At line 50 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 74 in file startup_stm32f042x6.s
|
|
At line 139 in file startup_stm32f042x6.s
|
|
At line 264 in file startup_stm32f042x6.s
|
|
|
|
3 symbols
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
HEAP 00000000
|
|
|
|
Symbol: HEAP
|
|
Definitions
|
|
At line 59 in file startup_stm32f042x6.s
|
|
Uses
|
|
None
|
|
Comment: HEAP unused
|
|
Heap_Mem 00000000
|
|
|
|
Symbol: Heap_Mem
|
|
Definitions
|
|
At line 61 in file startup_stm32f042x6.s
|
|
Uses
|
|
None
|
|
Comment: Heap_Mem unused
|
|
__heap_base 00000000
|
|
|
|
Symbol: __heap_base
|
|
Definitions
|
|
At line 60 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 265 in file startup_stm32f042x6.s
|
|
Comment: __heap_base used once
|
|
__heap_limit 00000200
|
|
|
|
Symbol: __heap_limit
|
|
Definitions
|
|
At line 62 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 266 in file startup_stm32f042x6.s
|
|
Comment: __heap_limit used once
|
|
4 symbols
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
RESET 00000000
|
|
|
|
Symbol: RESET
|
|
Definitions
|
|
At line 69 in file startup_stm32f042x6.s
|
|
Uses
|
|
None
|
|
Comment: RESET unused
|
|
__Vectors 00000000
|
|
|
|
Symbol: __Vectors
|
|
Definitions
|
|
At line 74 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 70 in file startup_stm32f042x6.s
|
|
At line 127 in file startup_stm32f042x6.s
|
|
|
|
__Vectors_End 000000C0
|
|
|
|
Symbol: __Vectors_End
|
|
Definitions
|
|
At line 125 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 71 in file startup_stm32f042x6.s
|
|
At line 127 in file startup_stm32f042x6.s
|
|
|
|
3 symbols
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
.text 00000000
|
|
|
|
Symbol: .text
|
|
Definitions
|
|
At line 129 in file startup_stm32f042x6.s
|
|
Uses
|
|
None
|
|
Comment: .text unused
|
|
ADC1_IRQHandler 00000030
|
|
|
|
Symbol: ADC1_IRQHandler
|
|
Definitions
|
|
At line 237 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 104 in file startup_stm32f042x6.s
|
|
At line 208 in file startup_stm32f042x6.s
|
|
|
|
ApplicationStart 0000001E
|
|
|
|
Symbol: ApplicationStart
|
|
Definitions
|
|
At line 163 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 150 in file startup_stm32f042x6.s
|
|
Comment: ApplicationStart used once
|
|
CEC_CAN_IRQHandler 00000030
|
|
|
|
Symbol: CEC_CAN_IRQHandler
|
|
Definitions
|
|
At line 250 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 122 in file startup_stm32f042x6.s
|
|
At line 221 in file startup_stm32f042x6.s
|
|
|
|
DMA1_Channel1_IRQHandler 00000030
|
|
|
|
Symbol: DMA1_Channel1_IRQHandler
|
|
Definitions
|
|
At line 234 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 101 in file startup_stm32f042x6.s
|
|
At line 205 in file startup_stm32f042x6.s
|
|
|
|
DMA1_Channel2_3_IRQHandler 00000030
|
|
|
|
Symbol: DMA1_Channel2_3_IRQHandler
|
|
Definitions
|
|
At line 235 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 102 in file startup_stm32f042x6.s
|
|
At line 206 in file startup_stm32f042x6.s
|
|
|
|
DMA1_Channel4_5_IRQHandler 00000030
|
|
|
|
Symbol: DMA1_Channel4_5_IRQHandler
|
|
Definitions
|
|
At line 236 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 103 in file startup_stm32f042x6.s
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
At line 207 in file startup_stm32f042x6.s
|
|
|
|
Default_Handler 00000030
|
|
|
|
Symbol: Default_Handler
|
|
Definitions
|
|
At line 194 in file startup_stm32f042x6.s
|
|
Uses
|
|
None
|
|
Comment: Default_Handler unused
|
|
EXTI0_1_IRQHandler 00000030
|
|
|
|
Symbol: EXTI0_1_IRQHandler
|
|
Definitions
|
|
At line 230 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 97 in file startup_stm32f042x6.s
|
|
At line 201 in file startup_stm32f042x6.s
|
|
|
|
EXTI2_3_IRQHandler 00000030
|
|
|
|
Symbol: EXTI2_3_IRQHandler
|
|
Definitions
|
|
At line 231 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 98 in file startup_stm32f042x6.s
|
|
At line 202 in file startup_stm32f042x6.s
|
|
|
|
EXTI4_15_IRQHandler 00000030
|
|
|
|
Symbol: EXTI4_15_IRQHandler
|
|
Definitions
|
|
At line 232 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 99 in file startup_stm32f042x6.s
|
|
At line 203 in file startup_stm32f042x6.s
|
|
|
|
FLASH_IRQHandler 00000030
|
|
|
|
Symbol: FLASH_IRQHandler
|
|
Definitions
|
|
At line 228 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 95 in file startup_stm32f042x6.s
|
|
At line 199 in file startup_stm32f042x6.s
|
|
|
|
HardFault_Handler 00000028
|
|
|
|
Symbol: HardFault_Handler
|
|
Definitions
|
|
At line 177 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 77 in file startup_stm32f042x6.s
|
|
At line 178 in file startup_stm32f042x6.s
|
|
|
|
I2C1_IRQHandler 00000030
|
|
|
|
Symbol: I2C1_IRQHandler
|
|
Definitions
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 3 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
At line 245 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 115 in file startup_stm32f042x6.s
|
|
At line 216 in file startup_stm32f042x6.s
|
|
|
|
NMI_Handler 00000026
|
|
|
|
Symbol: NMI_Handler
|
|
Definitions
|
|
At line 172 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 76 in file startup_stm32f042x6.s
|
|
At line 173 in file startup_stm32f042x6.s
|
|
|
|
PVD_VDDIO2_IRQHandler 00000030
|
|
|
|
Symbol: PVD_VDDIO2_IRQHandler
|
|
Definitions
|
|
At line 226 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 93 in file startup_stm32f042x6.s
|
|
At line 197 in file startup_stm32f042x6.s
|
|
|
|
PendSV_Handler 0000002C
|
|
|
|
Symbol: PendSV_Handler
|
|
Definitions
|
|
At line 185 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 88 in file startup_stm32f042x6.s
|
|
At line 186 in file startup_stm32f042x6.s
|
|
|
|
RCC_CRS_IRQHandler 00000030
|
|
|
|
Symbol: RCC_CRS_IRQHandler
|
|
Definitions
|
|
At line 229 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 96 in file startup_stm32f042x6.s
|
|
At line 200 in file startup_stm32f042x6.s
|
|
|
|
RTC_IRQHandler 00000030
|
|
|
|
Symbol: RTC_IRQHandler
|
|
Definitions
|
|
At line 227 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 94 in file startup_stm32f042x6.s
|
|
At line 198 in file startup_stm32f042x6.s
|
|
|
|
Reset_Handler 00000000
|
|
|
|
Symbol: Reset_Handler
|
|
Definitions
|
|
At line 132 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 75 in file startup_stm32f042x6.s
|
|
At line 133 in file startup_stm32f042x6.s
|
|
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 4 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
SPI1_IRQHandler 00000030
|
|
|
|
Symbol: SPI1_IRQHandler
|
|
Definitions
|
|
At line 246 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 117 in file startup_stm32f042x6.s
|
|
At line 217 in file startup_stm32f042x6.s
|
|
|
|
SPI2_IRQHandler 00000030
|
|
|
|
Symbol: SPI2_IRQHandler
|
|
Definitions
|
|
At line 247 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 118 in file startup_stm32f042x6.s
|
|
At line 218 in file startup_stm32f042x6.s
|
|
|
|
SVC_Handler 0000002A
|
|
|
|
Symbol: SVC_Handler
|
|
Definitions
|
|
At line 181 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 85 in file startup_stm32f042x6.s
|
|
At line 182 in file startup_stm32f042x6.s
|
|
|
|
SysTick_Handler 0000002E
|
|
|
|
Symbol: SysTick_Handler
|
|
Definitions
|
|
At line 189 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 89 in file startup_stm32f042x6.s
|
|
At line 190 in file startup_stm32f042x6.s
|
|
|
|
TIM14_IRQHandler 00000030
|
|
|
|
Symbol: TIM14_IRQHandler
|
|
Definitions
|
|
At line 242 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 111 in file startup_stm32f042x6.s
|
|
At line 213 in file startup_stm32f042x6.s
|
|
|
|
TIM16_IRQHandler 00000030
|
|
|
|
Symbol: TIM16_IRQHandler
|
|
Definitions
|
|
At line 243 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 113 in file startup_stm32f042x6.s
|
|
At line 214 in file startup_stm32f042x6.s
|
|
|
|
TIM17_IRQHandler 00000030
|
|
|
|
Symbol: TIM17_IRQHandler
|
|
Definitions
|
|
At line 244 in file startup_stm32f042x6.s
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 5 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
Uses
|
|
At line 114 in file startup_stm32f042x6.s
|
|
At line 215 in file startup_stm32f042x6.s
|
|
|
|
TIM1_BRK_UP_TRG_COM_IRQHandler 00000030
|
|
|
|
Symbol: TIM1_BRK_UP_TRG_COM_IRQHandler
|
|
Definitions
|
|
At line 238 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 105 in file startup_stm32f042x6.s
|
|
At line 209 in file startup_stm32f042x6.s
|
|
|
|
TIM1_CC_IRQHandler 00000030
|
|
|
|
Symbol: TIM1_CC_IRQHandler
|
|
Definitions
|
|
At line 239 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 106 in file startup_stm32f042x6.s
|
|
At line 210 in file startup_stm32f042x6.s
|
|
|
|
TIM2_IRQHandler 00000030
|
|
|
|
Symbol: TIM2_IRQHandler
|
|
Definitions
|
|
At line 240 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 107 in file startup_stm32f042x6.s
|
|
At line 211 in file startup_stm32f042x6.s
|
|
|
|
TIM3_IRQHandler 00000030
|
|
|
|
Symbol: TIM3_IRQHandler
|
|
Definitions
|
|
At line 241 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 108 in file startup_stm32f042x6.s
|
|
At line 212 in file startup_stm32f042x6.s
|
|
|
|
TSC_IRQHandler 00000030
|
|
|
|
Symbol: TSC_IRQHandler
|
|
Definitions
|
|
At line 233 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 100 in file startup_stm32f042x6.s
|
|
At line 204 in file startup_stm32f042x6.s
|
|
|
|
USART1_IRQHandler 00000030
|
|
|
|
Symbol: USART1_IRQHandler
|
|
Definitions
|
|
At line 248 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 119 in file startup_stm32f042x6.s
|
|
At line 219 in file startup_stm32f042x6.s
|
|
|
|
USART2_IRQHandler 00000030
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 6 Alphabetic symbol ordering
|
|
Relocatable symbols
|
|
|
|
|
|
Symbol: USART2_IRQHandler
|
|
Definitions
|
|
At line 249 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 120 in file startup_stm32f042x6.s
|
|
At line 220 in file startup_stm32f042x6.s
|
|
|
|
USB_IRQHandler 00000030
|
|
|
|
Symbol: USB_IRQHandler
|
|
Definitions
|
|
At line 251 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 123 in file startup_stm32f042x6.s
|
|
At line 222 in file startup_stm32f042x6.s
|
|
|
|
WWDG_IRQHandler 00000030
|
|
|
|
Symbol: WWDG_IRQHandler
|
|
Definitions
|
|
At line 225 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 92 in file startup_stm32f042x6.s
|
|
At line 196 in file startup_stm32f042x6.s
|
|
|
|
36 symbols
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
|
Absolute symbols
|
|
|
|
Heap_Size 00000200
|
|
|
|
Symbol: Heap_Size
|
|
Definitions
|
|
At line 57 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 61 in file startup_stm32f042x6.s
|
|
Comment: Heap_Size used once
|
|
Stack_Size 00000400
|
|
|
|
Symbol: Stack_Size
|
|
Definitions
|
|
At line 46 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 49 in file startup_stm32f042x6.s
|
|
Comment: Stack_Size used once
|
|
__Vectors_Size 000000C0
|
|
|
|
Symbol: __Vectors_Size
|
|
Definitions
|
|
At line 127 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 72 in file startup_stm32f042x6.s
|
|
Comment: __Vectors_Size used once
|
|
3 symbols
|
|
|
|
|
|
|
|
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
|
External symbols
|
|
|
|
SystemInit 00000000
|
|
|
|
Symbol: SystemInit
|
|
Definitions
|
|
At line 135 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 164 in file startup_stm32f042x6.s
|
|
Comment: SystemInit used once
|
|
__main 00000000
|
|
|
|
Symbol: __main
|
|
Definitions
|
|
At line 134 in file startup_stm32f042x6.s
|
|
Uses
|
|
At line 166 in file startup_stm32f042x6.s
|
|
Comment: __main used once
|
|
2 symbols
|
|
387 symbols in table
|