ARM Macro Assembler Page 1
1 00000000 ;******************** (C) COPYRIGHT HKMicroChip ******
**************
2 00000000 ;* File Name : KEIL_Startup_hk32f030m.s
3 00000000 ;* Author : MCD Application Team
4 00000000 ;* Description : hk32f030m devices vector table f
or 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 ; Amount of memory (in bytes) allocated for Stack
17 00000000 ; Tailor this value to your application needs
18 00000000 ; Stack Configuration
19 00000000 ; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
20 00000000 ;
21 00000000
22 00000000 00000120
Stack_Size
EQU 0x00000120
23 00000000
24 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
=3
25 00000000 Stack_Mem
SPACE Stack_Size
26 00000120 __initial_sp
27 00000120
28 00000120
29 00000120 ; Heap Configuration
30 00000120 ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
31 00000120 ;
32 00000120
33 00000120 00000000
Heap_Size
EQU 0x00000000
34 00000120
35 00000120 AREA HEAP, NOINIT, READWRITE, ALIGN=
3
36 00000000 __heap_base
37 00000000 Heap_Mem
SPACE Heap_Size
38 00000000 __heap_limit
39 00000000
40 00000000 PRESERVE8
41 00000000 THUMB
42 00000000
43 00000000
ARM Macro Assembler Page 2
44 00000000 ; Vector Table Mapped to Address 0 at Reset
45 00000000 AREA RESET, DATA, READONLY
46 00000000 EXPORT __Vectors
47 00000000 EXPORT __Vectors_End
48 00000000 EXPORT __Vectors_Size
49 00000000
50 00000000 00000000
__Vectors
DCD __initial_sp ; Top of Stack
51 00000004 00000000 DCD Reset_Handler ; Reset Handler
52 00000008 00000000 DCD NMI_Handler ; NMI Handler
53 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
Handler
54 00000010 00000000 DCD 0 ; Reserved
55 00000014 00000000 DCD 0 ; Reserved
56 00000018 00000000 DCD 0 ; Reserved
57 0000001C 00000000 DCD 0 ; Reserved
58 00000020 00000000 DCD 0 ; Reserved
59 00000024 00000000 DCD 0 ; Reserved
60 00000028 00000000 DCD 0 ; Reserved
61 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
62 00000030 00000000 DCD 0 ; Reserved
63 00000034 00000000 DCD 0 ; Reserved
64 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
65 0000003C 00000000 DCD SysTick_Handler
; SysTick Handler
66 00000040
67 00000040 ; External Interrupts
68 00000040 00000000 DCD WWDG_IRQHandler
; Window Watchdog
69 00000044 00000000 DCD 0 ; Reserved
70 00000048 00000000 DCD EXTI11_IRQHandler ; EXTI Line 1
1 interrupt(AWU_WKP
)
71 0000004C 00000000 DCD FLASH_IRQHandler ; FLASH
72 00000050 00000000 DCD RCC_IRQHandler ; RCC
73 00000054 00000000 DCD EXTI0_IRQHandler ; EXTI Line 0
74 00000058 00000000 DCD EXTI1_IRQHandler ; EXTI Line 1
75 0000005C 00000000 DCD EXTI2_IRQHandler ; EXTI Line 2
76 00000060 00000000 DCD EXTI3_IRQHandler ; EXTI Line 3
77 00000064 00000000 DCD EXTI4_IRQHandler ; EXTI Line 4
78 00000068 00000000 DCD EXTI5_IRQHandler ; EXTI Line 5
79 0000006C 00000000 DCD TIM1_BRK_IRQHandler ; TIM1 brea
k interrupt
80 00000070 00000000 DCD ADC1_IRQHandler ; ADC1 interrup
t(combined with EXT
I line 8)
81 00000074 00000000 DCD TIM1_UP_TRG_COM_IRQHandler ; TI
M1 Update, Trigger
and Commutation
82 00000078 00000000 DCD TIM1_CC_IRQHandler ; TIM1 Captu
re Compare
83 0000007C 00000000 DCD TIM2_IRQHandler ; TIM2
ARM Macro Assembler Page 3
84 00000080 00000000 DCD 0 ; Reserved
85 00000084 00000000 DCD TIM6_IRQHandler ; TIM6
86 00000088 00000000 DCD 0 ; Reserved
87 0000008C 00000000 DCD 0 ; Reserved
88 00000090 00000000 DCD 0 ; Reserved
89 00000094 00000000 DCD EXTI6_IRQHandler ; EXTI Line 6
90 00000098 00000000 DCD EXTI7_IRQHandler ; EXTI Line 7
91 0000009C 00000000 DCD I2C1_IRQHandler ; I2C1(combined
with EXTI line 10)
92 000000A0 00000000 DCD 0 ; Reserved
93 000000A4 00000000 DCD SPI1_IRQHandler ; SPI1
94 000000A8 00000000 DCD 0 ; Reserved
95 000000AC 00000000 DCD USART1_IRQHandler ; USART1(comb
ined with EXTI line
9)
96 000000B0 00000000 DCD 0 ; Reserved
97 000000B4 00000000 DCD 0 ; Reserved
98 000000B8 00000000 DCD 0 ; Reserved
99 000000BC 00000000 DCD 0 ; Reserved
100 000000C0
101 000000C0 __Vectors_End
102 000000C0
103 000000C0 000000C0
__Vectors_Size
EQU __Vectors_End - __Vectors
104 000000C0
105 000000C0 AREA |.text|, CODE, READONLY
106 00000000
107 00000000 ; Reset handler routine
108 00000000 Reset_Handler
PROC
109 00000000 EXPORT Reset_Handler [
WEAK]
110 00000000 IMPORT __main
111 00000000 IMPORT SystemInit
112 00000000 4804 LDR R0, =SystemInit
113 00000002 4780 BLX R0
114 00000004 4804 LDR R0, =__main
115 00000006 4700 BX R0
116 00000008 ENDP
117 00000008
118 00000008 ; Dummy Exception Handlers (infinite loops which can be
modified)
119 00000008
120 00000008 NMI_Handler
PROC
121 00000008 EXPORT NMI_Handler
[WEAK]
122 00000008 E7FE B .
123 0000000A ENDP
125 0000000A HardFault_Handler
PROC
126 0000000A EXPORT HardFault_Handler
[WEAK]
127 0000000A E7FE B .
128 0000000C ENDP
129 0000000C SVC_Handler
ARM Macro Assembler Page 4
PROC
130 0000000C EXPORT SVC_Handler
[WEAK]
131 0000000C E7FE B .
132 0000000E ENDP
133 0000000E PendSV_Handler
PROC
134 0000000E EXPORT PendSV_Handler
[WEAK]
135 0000000E E7FE B .
136 00000010 ENDP
137 00000010 SysTick_Handler
PROC
138 00000010 EXPORT SysTick_Handler
[WEAK]
139 00000010 E7FE B .
140 00000012 ENDP
141 00000012
142 00000012 Default_Handler
PROC
143 00000012
144 00000012 EXPORT WWDG_IRQHandler
[WEAK]
145 00000012 EXPORT EXTI11_IRQHandler
[WEAK]
146 00000012 EXPORT FLASH_IRQHandler
[WEAK]
147 00000012 EXPORT RCC_IRQHandler
[WEAK]
148 00000012 EXPORT EXTI0_IRQHandler
[WEAK]
149 00000012 EXPORT EXTI1_IRQHandler
[WEAK]
150 00000012 EXPORT EXTI2_IRQHandler
[WEAK]
151 00000012 EXPORT EXTI3_IRQHandler
[WEAK]
152 00000012 EXPORT EXTI4_IRQHandler
[WEAK]
153 00000012 EXPORT EXTI5_IRQHandler
[WEAK]
154 00000012 EXPORT TIM1_BRK_IRQHandler
[WEAK]
155 00000012 EXPORT ADC1_IRQHandler
[WEAK]
156 00000012 EXPORT TIM1_UP_TRG_COM_IRQHandler
[WEAK]
157 00000012 EXPORT TIM1_CC_IRQHandler
[WEAK]
158 00000012 EXPORT TIM2_IRQHandler
[WEAK]
159 00000012 EXPORT TIM6_IRQHandler
[WEAK]
160 00000012 EXPORT EXTI6_IRQHandler
[WEAK]
161 00000012 EXPORT EXTI7_IRQHandler
[WEAK]
162 00000012 EXPORT I2C1_IRQHandler
[WEAK]
ARM Macro Assembler Page 5
163 00000012 EXPORT SPI1_IRQHandler
[WEAK]
164 00000012 EXPORT USART1_IRQHandler
[WEAK]
165 00000012
166 00000012 WWDG_IRQHandler
167 00000012 EXTI11_IRQHandler
168 00000012 FLASH_IRQHandler
169 00000012 RCC_IRQHandler
170 00000012 EXTI0_IRQHandler
171 00000012 EXTI1_IRQHandler
172 00000012 EXTI2_IRQHandler
173 00000012 EXTI3_IRQHandler
174 00000012 EXTI4_IRQHandler
175 00000012 EXTI5_IRQHandler
176 00000012 TIM1_BRK_IRQHandler
177 00000012 ADC1_IRQHandler
178 00000012 TIM1_UP_TRG_COM_IRQHandler
179 00000012 TIM1_CC_IRQHandler
180 00000012 TIM2_IRQHandler
181 00000012 TIM6_IRQHandler
182 00000012 EXTI6_IRQHandler
183 00000012 EXTI7_IRQHandler
184 00000012 I2C1_IRQHandler
185 00000012 SPI1_IRQHandler
186 00000012 USART1_IRQHandler
187 00000012
188 00000012
189 00000012 E7FE B .
190 00000014
191 00000014 ENDP
192 00000014
193 00000014 ALIGN
194 00000014
195 00000014 ;*******************************************************
************************
196 00000014 ; User Stack and Heap initialization
197 00000014 ;*******************************************************
************************
198 00000014 IF :DEF:__MICROLIB
199 00000014
200 00000014 EXPORT __initial_sp
201 00000014 EXPORT __heap_base
202 00000014 EXPORT __heap_limit
203 00000014
204 00000014 ELSE
219 ENDIF
220 00000014
221 00000014 END
00000000
00000000
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
ork --depend=.\objects\keil_startup_hk32f030m.d -o.\objects\keil_startup_hk32f0
30m.o -IC:\Users\³ÂÒÝ·²1\Desktop\HK32F030SDK\Project\RTE -IC:\Keil_v5\ARM\CMSIS
\Include --predefine="__MICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 52
1" --list=.\listings\keil_startup_hk32f030m.lst ..\Source\Libraries\CMSIS\HK32F
030M\Source\KEIL_Startup_hk32f030m.s
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
STACK 00000000
Symbol: STACK
Definitions
At line 24 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
None
Comment: STACK unused
Stack_Mem 00000000
Symbol: Stack_Mem
Definitions
At line 25 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
None
Comment: Stack_Mem unused
__initial_sp 00000120
Symbol: __initial_sp
Definitions
At line 26 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
At line 50 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 200 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
3 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
HEAP 00000000
Symbol: HEAP
Definitions
At line 35 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
None
Comment: HEAP unused
Heap_Mem 00000000
Symbol: Heap_Mem
Definitions
At line 37 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
None
Comment: Heap_Mem unused
__heap_base 00000000
Symbol: __heap_base
Definitions
At line 36 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
At line 201 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Comment: __heap_base used once
__heap_limit 00000000
Symbol: __heap_limit
Definitions
At line 38 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
At line 202 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.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 45 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
None
Comment: RESET unused
__Vectors 00000000
Symbol: __Vectors
Definitions
At line 50 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
At line 46 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 103 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
__Vectors_End 000000C0
Symbol: __Vectors_End
Definitions
At line 101 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 47 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 103 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
3 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
.text 00000000
Symbol: .text
Definitions
At line 105 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
None
Comment: .text unused
ADC1_IRQHandler 00000012
Symbol: ADC1_IRQHandler
Definitions
At line 177 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 80 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 155 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Default_Handler 00000012
Symbol: Default_Handler
Definitions
At line 142 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
None
Comment: Default_Handler unused
EXTI0_IRQHandler 00000012
Symbol: EXTI0_IRQHandler
Definitions
At line 170 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 73 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 148 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI11_IRQHandler 00000012
Symbol: EXTI11_IRQHandler
Definitions
At line 167 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 70 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 145 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI1_IRQHandler 00000012
Symbol: EXTI1_IRQHandler
Definitions
At line 171 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
ARM Macro Assembler Page 2 Alphabetic symbol ordering
Relocatable symbols
up_hk32f030m.s
Uses
At line 74 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 149 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI2_IRQHandler 00000012
Symbol: EXTI2_IRQHandler
Definitions
At line 172 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 75 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 150 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI3_IRQHandler 00000012
Symbol: EXTI3_IRQHandler
Definitions
At line 173 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 76 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 151 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI4_IRQHandler 00000012
Symbol: EXTI4_IRQHandler
Definitions
At line 174 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 77 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 152 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI5_IRQHandler 00000012
Symbol: EXTI5_IRQHandler
Definitions
At line 175 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 78 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 153 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI6_IRQHandler 00000012
Symbol: EXTI6_IRQHandler
Definitions
ARM Macro Assembler Page 3 Alphabetic symbol ordering
Relocatable symbols
At line 182 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 89 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 160 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
EXTI7_IRQHandler 00000012
Symbol: EXTI7_IRQHandler
Definitions
At line 183 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 90 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 161 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
FLASH_IRQHandler 00000012
Symbol: FLASH_IRQHandler
Definitions
At line 168 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 71 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 146 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
HardFault_Handler 0000000A
Symbol: HardFault_Handler
Definitions
At line 125 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 53 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 126 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
I2C1_IRQHandler 00000012
Symbol: I2C1_IRQHandler
Definitions
At line 184 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 91 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 162 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
NMI_Handler 00000008
Symbol: NMI_Handler
ARM Macro Assembler Page 4 Alphabetic symbol ordering
Relocatable symbols
Definitions
At line 120 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 52 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 121 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
PendSV_Handler 0000000E
Symbol: PendSV_Handler
Definitions
At line 133 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 64 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 134 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
RCC_IRQHandler 00000012
Symbol: RCC_IRQHandler
Definitions
At line 169 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 72 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 147 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Reset_Handler 00000000
Symbol: Reset_Handler
Definitions
At line 108 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 51 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 109 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
SPI1_IRQHandler 00000012
Symbol: SPI1_IRQHandler
Definitions
At line 185 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 93 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 163 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
SVC_Handler 0000000C
ARM Macro Assembler Page 5 Alphabetic symbol ordering
Relocatable symbols
Symbol: SVC_Handler
Definitions
At line 129 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 61 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 130 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
SysTick_Handler 00000010
Symbol: SysTick_Handler
Definitions
At line 137 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 65 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 138 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
TIM1_BRK_IRQHandler 00000012
Symbol: TIM1_BRK_IRQHandler
Definitions
At line 176 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 79 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 154 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
TIM1_CC_IRQHandler 00000012
Symbol: TIM1_CC_IRQHandler
Definitions
At line 179 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 82 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 157 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
TIM1_UP_TRG_COM_IRQHandler 00000012
Symbol: TIM1_UP_TRG_COM_IRQHandler
Definitions
At line 178 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 81 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 156 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
TIM2_IRQHandler 00000012
ARM Macro Assembler Page 6 Alphabetic symbol ordering
Relocatable symbols
Symbol: TIM2_IRQHandler
Definitions
At line 180 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 83 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 158 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
TIM6_IRQHandler 00000012
Symbol: TIM6_IRQHandler
Definitions
At line 181 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 85 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 159 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
USART1_IRQHandler 00000012
Symbol: USART1_IRQHandler
Definitions
At line 186 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 95 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 164 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
WWDG_IRQHandler 00000012
Symbol: WWDG_IRQHandler
Definitions
At line 166 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 68 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
At line 144 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
29 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Absolute symbols
Heap_Size 00000000
Symbol: Heap_Size
Definitions
At line 33 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
At line 37 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Comment: Heap_Size used once
Stack_Size 00000120
Symbol: Stack_Size
Definitions
At line 22 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Uses
At line 25 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.s
Comment: Stack_Size used once
__Vectors_Size 000000C0
Symbol: __Vectors_Size
Definitions
At line 103 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 48 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Startu
p_hk32f030m.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 111 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 112 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Comment: SystemInit used once
__main 00000000
Symbol: __main
Definitions
At line 110 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Uses
At line 114 in file ..\Source\Libraries\CMSIS\HK32F030M\Source\KEIL_Start
up_hk32f030m.s
Comment: __main used once
2 symbols
378 symbols in table