Шаблон проекта с моей расширенной библиотекой MyLibs
This commit is contained in:
1961
Listings/startup_k1921vk035.lst
Normal file
1961
Listings/startup_k1921vk035.lst
Normal file
@@ -0,0 +1,1961 @@
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1
|
||||
|
||||
|
||||
1 00000000 ;******************** (C) COPYRIGHT 2018 NIIET *********
|
||||
***********
|
||||
2 00000000 ;* File Name : startup_K1921VK035.s
|
||||
3 00000000 ;* Author : NIIET
|
||||
4 00000000 ;* Version : V1.7
|
||||
5 00000000 ;* Date : 02.05.2018
|
||||
6 00000000 ;* Description : K1921VK035 vector table for MDK-
|
||||
ARM
|
||||
7 00000000 ;* toolchain.
|
||||
8 00000000 ;* This module performs:
|
||||
9 00000000 ;* - Set the initial SP
|
||||
10 00000000 ;* - Set the initial PC == Reset_Ha
|
||||
ndler
|
||||
11 00000000 ;* - Set the vector table entries w
|
||||
ith the exceptions ISR address
|
||||
12 00000000 ;* - Configure the clock system
|
||||
13 00000000 ;* - Branches to __main in the C li
|
||||
brary (which eventually
|
||||
14 00000000 ;* calls main()).
|
||||
15 00000000 ;* After Reset the CortexM4 process
|
||||
or is in Thread mode,
|
||||
16 00000000 ;* priority is Privileged, and the
|
||||
Stack is set to Main.
|
||||
17 00000000 ;* <<< Use Configuration Wizard in Context Menu >>>
|
||||
18 00000000 ;*******************************************************
|
||||
************************
|
||||
19 00000000 ; THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS A
|
||||
T PROVIDING CUSTOMERS
|
||||
20 00000000 ; WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN OR
|
||||
DER FOR THEM TO SAVE TIME.
|
||||
21 00000000 ; AS A RESULT, NIIET SHALL NOT BE HELD LIABLE FOR ANY DI
|
||||
RECT,
|
||||
22 00000000 ; INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY
|
||||
CLAIMS ARISING FROM THE
|
||||
23 00000000 ; CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOM
|
||||
ERS OF THE CODING
|
||||
24 00000000 ; INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR
|
||||
PRODUCTS.
|
||||
25 00000000 ;*******************************************************
|
||||
************************
|
||||
26 00000000
|
||||
27 00000000 ; Amount of memory (in bytes) allocated for Stack
|
||||
28 00000000 ; Tailor this value to your application needs
|
||||
29 00000000 ; <h> Stack Configuration
|
||||
30 00000000 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
|
||||
31 00000000 ; </h>
|
||||
32 00000000
|
||||
33 00000000 00000400
|
||||
Stack_Size
|
||||
EQU 0x00000400
|
||||
34 00000000
|
||||
35 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
|
||||
=3
|
||||
36 00000000 Stack_Mem
|
||||
SPACE Stack_Size
|
||||
37 00000400 __initial_sp
|
||||
38 00000400
|
||||
39 00000400
|
||||
40 00000400 ; <h> Heap Configuration
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2
|
||||
|
||||
|
||||
41 00000400 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
|
||||
42 00000400 ; </h>
|
||||
43 00000400
|
||||
44 00000400 00000200
|
||||
Heap_Size
|
||||
EQU 0x00000200
|
||||
45 00000400
|
||||
46 00000400 AREA HEAP, NOINIT, READWRITE, ALIGN=
|
||||
3
|
||||
47 00000000 __heap_base
|
||||
48 00000000 Heap_Mem
|
||||
SPACE Heap_Size
|
||||
49 00000200 __heap_limit
|
||||
50 00000200
|
||||
51 00000200 PRESERVE8
|
||||
52 00000200 THUMB
|
||||
53 00000200
|
||||
54 00000200
|
||||
55 00000200 ; Vector Table Mapped to Address 0 at Reset
|
||||
56 00000200 AREA RESET, DATA, READONLY
|
||||
57 00000000 EXPORT __Vectors
|
||||
58 00000000 EXPORT __Vectors_End
|
||||
59 00000000 EXPORT __Vectors_Size
|
||||
60 00000000
|
||||
61 00000000 00000000
|
||||
__Vectors
|
||||
DCD __initial_sp ; Top of Stack
|
||||
62 00000004 00000000 DCD Reset_Handler ; Reset Handler
|
||||
63 00000008 00000000 DCD NMI_Handler ; NMI Handler
|
||||
64 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
|
||||
Handler
|
||||
65 00000010 00000000 DCD MemManage_Handler
|
||||
; MPU Fault Handler
|
||||
|
||||
66 00000014 00000000 DCD BusFault_Handler
|
||||
; Bus Fault Handler
|
||||
|
||||
67 00000018 00000000 DCD UsageFault_Handler ; Usage Faul
|
||||
t Handler
|
||||
68 0000001C 00000000 DCD 0 ; Reserved
|
||||
69 00000020 00000000 DCD 0 ; Reserved
|
||||
70 00000024 00000000 DCD 0 ; Reserved
|
||||
71 00000028 00000000 DCD 0 ; Reserved
|
||||
72 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
|
||||
73 00000030 00000000 DCD DebugMon_Handler ; Debug Monito
|
||||
r Handler
|
||||
74 00000034 00000000 DCD 0 ; Reserved
|
||||
75 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
|
||||
|
||||
76 0000003C 00000000 DCD SysTick_Handler
|
||||
; SysTick Handler
|
||||
77 00000040
|
||||
78 00000040 ; External Interrupts
|
||||
79 00000040 00000000 DCD WDT_IRQHandler ; Watchdog timer
|
||||
interrupt
|
||||
80 00000044 00000000 DCD RCU_IRQHandler ; Reset and cloc
|
||||
k unit interrupt
|
||||
81 00000048 00000000 DCD MFLASH_IRQHandler
|
||||
; MFLASH interrupt
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 3
|
||||
|
||||
|
||||
82 0000004C 00000000 DCD GPIOA_IRQHandler
|
||||
; GPIO A interrupt
|
||||
83 00000050 00000000 DCD GPIOB_IRQHandler
|
||||
; GPIO B interrupt
|
||||
84 00000054 00000000 DCD DMA_CH0_IRQHandler ; DMA channe
|
||||
l 0 interrupt
|
||||
85 00000058 00000000 DCD DMA_CH1_IRQHandler ; DMA channe
|
||||
l 1 interrupt
|
||||
86 0000005C 00000000 DCD DMA_CH2_IRQHandler ; DMA channe
|
||||
l 2 interrupt
|
||||
87 00000060 00000000 DCD DMA_CH3_IRQHandler ; DMA channe
|
||||
l 3 interrupt
|
||||
88 00000064 00000000 DCD DMA_CH4_IRQHandler ; DMA channe
|
||||
l 4 interrupt
|
||||
89 00000068 00000000 DCD DMA_CH5_IRQHandler ; DMA channe
|
||||
l 5 interrupt
|
||||
90 0000006C 00000000 DCD DMA_CH6_IRQHandler ; DMA channe
|
||||
l 6 interrupt
|
||||
91 00000070 00000000 DCD DMA_CH7_IRQHandler ; DMA channe
|
||||
l 7 interrupt
|
||||
92 00000074 00000000 DCD DMA_CH8_IRQHandler ; DMA channe
|
||||
l 8 interrupt
|
||||
93 00000078 00000000 DCD DMA_CH9_IRQHandler ; DMA channe
|
||||
l 9 interrupt
|
||||
94 0000007C 00000000 DCD DMA_CH10_IRQHandler ; DMA chann
|
||||
el 10 interrupt
|
||||
95 00000080 00000000 DCD DMA_CH11_IRQHandler ; DMA chann
|
||||
el 11 interrupt
|
||||
96 00000084 00000000 DCD DMA_CH12_IRQHandler ; DMA chann
|
||||
el 12 interrupt
|
||||
97 00000088 00000000 DCD DMA_CH13_IRQHandler ; DMA chann
|
||||
el 13 interrupt
|
||||
98 0000008C 00000000 DCD DMA_CH14_IRQHandler ; DMA chann
|
||||
el 14 interrupt
|
||||
99 00000090 00000000 DCD DMA_CH15_IRQHandler ; DMA chann
|
||||
el 15 interrupt
|
||||
100 00000094 00000000 DCD TMR0_IRQHandler
|
||||
; Timer 0 interrupt
|
||||
|
||||
101 00000098 00000000 DCD TMR1_IRQHandler
|
||||
; Timer 1 interrupt
|
||||
|
||||
102 0000009C 00000000 DCD TMR2_IRQHandler
|
||||
; Timer 2 interrupt
|
||||
|
||||
103 000000A0 00000000 DCD TMR3_IRQHandler
|
||||
; Timer 3 interrupt
|
||||
|
||||
104 000000A4 00000000 DCD UART0_TD_IRQHandler ; UART0 Tra
|
||||
nsmit Done interrup
|
||||
t
|
||||
105 000000A8 00000000 DCD UART0_RX_IRQHandler ; UART0 Rec
|
||||
ieve interrupt
|
||||
106 000000AC 00000000 DCD UART0_TX_IRQHandler ; UART0 Tra
|
||||
nsmit interrupt
|
||||
107 000000B0 00000000 DCD UART0_E_RT_IRQHandler ; UART0 E
|
||||
rror and Receive Ti
|
||||
meout interrupt
|
||||
108 000000B4 00000000 DCD UART1_TD_IRQHandler ; UART1 Tra
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 4
|
||||
|
||||
|
||||
nsmit Done interrup
|
||||
t
|
||||
109 000000B8 00000000 DCD UART1_RX_IRQHandler ; UART1 Rec
|
||||
ieve interrupt
|
||||
110 000000BC 00000000 DCD UART1_TX_IRQHandler ; UART1 Tra
|
||||
nsmit interrupt
|
||||
111 000000C0 00000000 DCD UART1_E_RT_IRQHandler ; UART1 E
|
||||
rror and Receive Ti
|
||||
meout interrupt
|
||||
112 000000C4 00000000 DCD SPI_RO_RT_IRQHandler ; SPI RX F
|
||||
IFO overrun and Rec
|
||||
eive Timeout interr
|
||||
upt
|
||||
113 000000C8 00000000 DCD SPI_RX_IRQHandler ; SPI Receive
|
||||
interrupt
|
||||
114 000000CC 00000000 DCD SPI_TX_IRQHandler ; SPI Transmi
|
||||
t interrupt
|
||||
115 000000D0 00000000 DCD I2C_IRQHandler ; I2C interrupt
|
||||
116 000000D4 00000000 DCD ECAP0_IRQHandler
|
||||
; ECAP0 interrupt
|
||||
117 000000D8 00000000 DCD ECAP1_IRQHandler
|
||||
; ECAP1 interrupt
|
||||
118 000000DC 00000000 DCD ECAP2_IRQHandler
|
||||
; ECAP2 interrupt
|
||||
119 000000E0 00000000 DCD PWM0_IRQHandler
|
||||
; PWM0 interrupt
|
||||
120 000000E4 00000000 DCD PWM0_HD_IRQHandler
|
||||
; PWM0 HD interrupt
|
||||
|
||||
121 000000E8 00000000 DCD PWM0_TZ_IRQHandler
|
||||
; PWM0 TZ interrupt
|
||||
|
||||
122 000000EC 00000000 DCD PWM1_IRQHandler
|
||||
; PWM1 interrupt
|
||||
123 000000F0 00000000 DCD PWM1_HD_IRQHandler
|
||||
; PWM1 HD interrupt
|
||||
|
||||
124 000000F4 00000000 DCD PWM1_TZ_IRQHandler
|
||||
; PWM1 TZ interrupt
|
||||
|
||||
125 000000F8 00000000 DCD PWM2_IRQHandler
|
||||
; PWM2 interrupt
|
||||
126 000000FC 00000000 DCD PWM2_HD_IRQHandler
|
||||
; PWM2 HD interrupt
|
||||
|
||||
127 00000100 00000000 DCD PWM2_TZ_IRQHandler
|
||||
; PWM2 TZ interrupt
|
||||
|
||||
128 00000104 00000000 DCD QEP_IRQHandler ; QEP interrupt
|
||||
129 00000108 00000000 DCD ADC_SEQ0_IRQHandler ; ADC Seque
|
||||
ncer 0 interrupt
|
||||
130 0000010C 00000000 DCD ADC_SEQ1_IRQHandler ; ADC Seque
|
||||
ncer 1 interrupt
|
||||
131 00000110 00000000 DCD ADC_DC_IRQHandler ; ADC Digital
|
||||
Comparator interru
|
||||
pt
|
||||
132 00000114 00000000 DCD CAN0_IRQHandler
|
||||
; CAN0 interrupt
|
||||
133 00000118 00000000 DCD CAN1_IRQHandler
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 5
|
||||
|
||||
|
||||
; CAN1 interrupt
|
||||
134 0000011C 00000000 DCD CAN2_IRQHandler
|
||||
; CAN2 interrupt
|
||||
135 00000120 00000000 DCD CAN3_IRQHandler
|
||||
; CAN3 interrupt
|
||||
136 00000124 00000000 DCD CAN4_IRQHandler
|
||||
; CAN4 interrupt
|
||||
137 00000128 00000000 DCD CAN5_IRQHandler
|
||||
; CAN5 interrupt
|
||||
138 0000012C 00000000 DCD CAN6_IRQHandler
|
||||
; CAN6 interrupt
|
||||
139 00000130 00000000 DCD CAN7_IRQHandler
|
||||
; CAN7 interrupt
|
||||
140 00000134 00000000 DCD CAN8_IRQHandler
|
||||
; CAN8 interrupt
|
||||
141 00000138 00000000 DCD CAN9_IRQHandler
|
||||
; CAN9 interrupt
|
||||
142 0000013C 00000000 DCD CAN10_IRQHandler
|
||||
; CAN10 interrupt
|
||||
143 00000140 00000000 DCD CAN11_IRQHandler
|
||||
; CAN11 interrupt
|
||||
144 00000144 00000000 DCD CAN12_IRQHandler
|
||||
; CAN12 interrupt
|
||||
145 00000148 00000000 DCD CAN13_IRQHandler
|
||||
; CAN13 interrupt
|
||||
146 0000014C 00000000 DCD CAN14_IRQHandler
|
||||
; CAN14 interrupt
|
||||
147 00000150 00000000 DCD CAN15_IRQHandler
|
||||
; CAN15 interrupt
|
||||
148 00000154 00000000 DCD FPU_IRQHandler ; FPU exception
|
||||
interrupt
|
||||
149 00000158
|
||||
150 00000158 __Vectors_End
|
||||
151 00000158
|
||||
152 00000158 00000158
|
||||
__Vectors_Size
|
||||
EQU __Vectors_End - __Vectors
|
||||
153 00000158
|
||||
154 00000158 AREA |.text|, CODE, READONLY
|
||||
155 00000000
|
||||
156 00000000 ; Reset handler
|
||||
157 00000000 Reset_Handler
|
||||
PROC
|
||||
158 00000000 EXPORT Reset_Handler [WEAK
|
||||
]
|
||||
159 00000000 IMPORT __main
|
||||
160 00000000 IMPORT SystemInit
|
||||
161 00000000 4809 LDR R0, =SystemInit
|
||||
162 00000002 4780 BLX R0
|
||||
163 00000004 4809 LDR R0, =__main
|
||||
164 00000006 4700 BX R0
|
||||
165 00000008 ENDP
|
||||
166 00000008
|
||||
167 00000008 ; Dummy Exception Handlers (infinite loops which can be
|
||||
modified)
|
||||
168 00000008
|
||||
169 00000008 NMI_Handler
|
||||
PROC
|
||||
170 00000008 EXPORT NMI_Handler [WEA
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 6
|
||||
|
||||
|
||||
K]
|
||||
171 00000008 E7FE B .
|
||||
172 0000000A ENDP
|
||||
174 0000000A HardFault_Handler
|
||||
PROC
|
||||
175 0000000A EXPORT HardFault_Handler [WEA
|
||||
K]
|
||||
176 0000000A E7FE B .
|
||||
177 0000000C ENDP
|
||||
179 0000000C MemManage_Handler
|
||||
PROC
|
||||
180 0000000C EXPORT MemManage_Handler [WEA
|
||||
K]
|
||||
181 0000000C E7FE B .
|
||||
182 0000000E ENDP
|
||||
184 0000000E BusFault_Handler
|
||||
PROC
|
||||
185 0000000E EXPORT BusFault_Handler [WEA
|
||||
K]
|
||||
186 0000000E E7FE B .
|
||||
187 00000010 ENDP
|
||||
189 00000010 UsageFault_Handler
|
||||
PROC
|
||||
190 00000010 EXPORT UsageFault_Handler [WEA
|
||||
K]
|
||||
191 00000010 E7FE B .
|
||||
192 00000012 ENDP
|
||||
193 00000012 SVC_Handler
|
||||
PROC
|
||||
194 00000012 EXPORT SVC_Handler [WEA
|
||||
K]
|
||||
195 00000012 E7FE B .
|
||||
196 00000014 ENDP
|
||||
198 00000014 DebugMon_Handler
|
||||
PROC
|
||||
199 00000014 EXPORT DebugMon_Handler [WEA
|
||||
K]
|
||||
200 00000014 E7FE B .
|
||||
201 00000016 ENDP
|
||||
202 00000016 PendSV_Handler
|
||||
PROC
|
||||
203 00000016 EXPORT PendSV_Handler [WEA
|
||||
K]
|
||||
204 00000016 E7FE B .
|
||||
205 00000018 ENDP
|
||||
206 00000018 SysTick_Handler
|
||||
PROC
|
||||
207 00000018 EXPORT SysTick_Handler [WEA
|
||||
K]
|
||||
208 00000018 E7FE B .
|
||||
209 0000001A ENDP
|
||||
210 0000001A
|
||||
211 0000001A Default_Handler
|
||||
PROC
|
||||
212 0000001A
|
||||
213 0000001A EXPORT WDT_IRQHandler [WEAK]
|
||||
214 0000001A EXPORT RCU_IRQHandler [WEAK]
|
||||
215 0000001A EXPORT MFLASH_IRQHandler [WE
|
||||
AK]
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 7
|
||||
|
||||
|
||||
216 0000001A EXPORT GPIOA_IRQHandler [WEA
|
||||
K]
|
||||
217 0000001A EXPORT GPIOB_IRQHandler [WEA
|
||||
K]
|
||||
218 0000001A EXPORT DMA_CH0_IRQHandler [W
|
||||
EAK]
|
||||
219 0000001A EXPORT DMA_CH1_IRQHandler [W
|
||||
EAK]
|
||||
220 0000001A EXPORT DMA_CH2_IRQHandler [W
|
||||
EAK]
|
||||
221 0000001A EXPORT DMA_CH3_IRQHandler [W
|
||||
EAK]
|
||||
222 0000001A EXPORT DMA_CH4_IRQHandler [W
|
||||
EAK]
|
||||
223 0000001A EXPORT DMA_CH5_IRQHandler [W
|
||||
EAK]
|
||||
224 0000001A EXPORT DMA_CH6_IRQHandler [W
|
||||
EAK]
|
||||
225 0000001A EXPORT DMA_CH7_IRQHandler [W
|
||||
EAK]
|
||||
226 0000001A EXPORT DMA_CH8_IRQHandler [W
|
||||
EAK]
|
||||
227 0000001A EXPORT DMA_CH9_IRQHandler [W
|
||||
EAK]
|
||||
228 0000001A EXPORT DMA_CH10_IRQHandler [
|
||||
WEAK]
|
||||
229 0000001A EXPORT DMA_CH11_IRQHandler [
|
||||
WEAK]
|
||||
230 0000001A EXPORT DMA_CH12_IRQHandler [
|
||||
WEAK]
|
||||
231 0000001A EXPORT DMA_CH13_IRQHandler [
|
||||
WEAK]
|
||||
232 0000001A EXPORT DMA_CH14_IRQHandler [
|
||||
WEAK]
|
||||
233 0000001A EXPORT DMA_CH15_IRQHandler [
|
||||
WEAK]
|
||||
234 0000001A EXPORT TMR0_IRQHandler [WEAK
|
||||
]
|
||||
235 0000001A EXPORT TMR1_IRQHandler [WEAK
|
||||
]
|
||||
236 0000001A EXPORT TMR2_IRQHandler [WEAK
|
||||
]
|
||||
237 0000001A EXPORT TMR3_IRQHandler [WEAK
|
||||
]
|
||||
238 0000001A EXPORT UART0_TD_IRQHandler [
|
||||
WEAK]
|
||||
239 0000001A EXPORT UART0_RX_IRQHandler [
|
||||
WEAK]
|
||||
240 0000001A EXPORT UART0_TX_IRQHandler [
|
||||
WEAK]
|
||||
241 0000001A EXPORT UART0_E_RT_IRQHandler
|
||||
[WEAK]
|
||||
242 0000001A EXPORT UART1_TD_IRQHandler [
|
||||
WEAK]
|
||||
243 0000001A EXPORT UART1_RX_IRQHandler [
|
||||
WEAK]
|
||||
244 0000001A EXPORT UART1_TX_IRQHandler [
|
||||
WEAK]
|
||||
245 0000001A EXPORT UART1_E_RT_IRQHandler
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 8
|
||||
|
||||
|
||||
[WEAK]
|
||||
246 0000001A EXPORT SPI_RO_RT_IRQHandler
|
||||
[WEAK]
|
||||
247 0000001A EXPORT SPI_RX_IRQHandler [WE
|
||||
AK]
|
||||
248 0000001A EXPORT SPI_TX_IRQHandler [WE
|
||||
AK]
|
||||
249 0000001A EXPORT I2C_IRQHandler [WEAK]
|
||||
250 0000001A EXPORT ECAP0_IRQHandler [WEA
|
||||
K]
|
||||
251 0000001A EXPORT ECAP1_IRQHandler [WEA
|
||||
K]
|
||||
252 0000001A EXPORT ECAP2_IRQHandler [WEA
|
||||
K]
|
||||
253 0000001A EXPORT PWM0_IRQHandler [WEAK
|
||||
]
|
||||
254 0000001A EXPORT PWM0_HD_IRQHandler [W
|
||||
EAK]
|
||||
255 0000001A EXPORT PWM0_TZ_IRQHandler [W
|
||||
EAK]
|
||||
256 0000001A EXPORT PWM1_IRQHandler [WEAK
|
||||
]
|
||||
257 0000001A EXPORT PWM1_HD_IRQHandler [W
|
||||
EAK]
|
||||
258 0000001A EXPORT PWM1_TZ_IRQHandler [W
|
||||
EAK]
|
||||
259 0000001A EXPORT PWM2_IRQHandler [WEAK
|
||||
]
|
||||
260 0000001A EXPORT PWM2_HD_IRQHandler [W
|
||||
EAK]
|
||||
261 0000001A EXPORT PWM2_TZ_IRQHandler [W
|
||||
EAK]
|
||||
262 0000001A EXPORT QEP_IRQHandler [WEAK]
|
||||
263 0000001A EXPORT ADC_SEQ0_IRQHandler [
|
||||
WEAK]
|
||||
264 0000001A EXPORT ADC_SEQ1_IRQHandler [
|
||||
WEAK]
|
||||
265 0000001A EXPORT ADC_DC_IRQHandler [WE
|
||||
AK]
|
||||
266 0000001A EXPORT CAN0_IRQHandler [WEAK
|
||||
]
|
||||
267 0000001A EXPORT CAN1_IRQHandler [WEAK
|
||||
]
|
||||
268 0000001A EXPORT CAN2_IRQHandler [WEAK
|
||||
]
|
||||
269 0000001A EXPORT CAN3_IRQHandler [WEAK
|
||||
]
|
||||
270 0000001A EXPORT CAN4_IRQHandler [WEAK
|
||||
]
|
||||
271 0000001A EXPORT CAN5_IRQHandler [WEAK
|
||||
]
|
||||
272 0000001A EXPORT CAN6_IRQHandler [WEAK
|
||||
]
|
||||
273 0000001A EXPORT CAN7_IRQHandler [WEAK
|
||||
]
|
||||
274 0000001A EXPORT CAN8_IRQHandler [WEAK
|
||||
]
|
||||
275 0000001A EXPORT CAN9_IRQHandler [WEAK
|
||||
]
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 9
|
||||
|
||||
|
||||
276 0000001A EXPORT CAN10_IRQHandler [WEA
|
||||
K]
|
||||
277 0000001A EXPORT CAN11_IRQHandler [WEA
|
||||
K]
|
||||
278 0000001A EXPORT CAN12_IRQHandler [WEA
|
||||
K]
|
||||
279 0000001A EXPORT CAN13_IRQHandler [WEA
|
||||
K]
|
||||
280 0000001A EXPORT CAN14_IRQHandler [WEA
|
||||
K]
|
||||
281 0000001A EXPORT CAN15_IRQHandler [WEA
|
||||
K]
|
||||
282 0000001A EXPORT FPU_IRQHandler [WEAK]
|
||||
283 0000001A
|
||||
284 0000001A
|
||||
285 0000001A
|
||||
286 0000001A WDT_IRQHandler
|
||||
287 0000001A RCU_IRQHandler
|
||||
288 0000001A MFLASH_IRQHandler
|
||||
289 0000001A GPIOA_IRQHandler
|
||||
290 0000001A GPIOB_IRQHandler
|
||||
291 0000001A DMA_CH0_IRQHandler
|
||||
292 0000001A DMA_CH1_IRQHandler
|
||||
293 0000001A DMA_CH2_IRQHandler
|
||||
294 0000001A DMA_CH3_IRQHandler
|
||||
295 0000001A DMA_CH4_IRQHandler
|
||||
296 0000001A DMA_CH5_IRQHandler
|
||||
297 0000001A DMA_CH6_IRQHandler
|
||||
298 0000001A DMA_CH7_IRQHandler
|
||||
299 0000001A DMA_CH8_IRQHandler
|
||||
300 0000001A DMA_CH9_IRQHandler
|
||||
301 0000001A DMA_CH10_IRQHandler
|
||||
302 0000001A DMA_CH11_IRQHandler
|
||||
303 0000001A DMA_CH12_IRQHandler
|
||||
304 0000001A DMA_CH13_IRQHandler
|
||||
305 0000001A DMA_CH14_IRQHandler
|
||||
306 0000001A DMA_CH15_IRQHandler
|
||||
307 0000001A TMR0_IRQHandler
|
||||
308 0000001A TMR1_IRQHandler
|
||||
309 0000001A TMR2_IRQHandler
|
||||
310 0000001A TMR3_IRQHandler
|
||||
311 0000001A UART0_TD_IRQHandler
|
||||
312 0000001A UART0_RX_IRQHandler
|
||||
313 0000001A UART0_TX_IRQHandler
|
||||
314 0000001A UART0_E_RT_IRQHandler
|
||||
315 0000001A UART1_TD_IRQHandler
|
||||
316 0000001A UART1_RX_IRQHandler
|
||||
317 0000001A UART1_TX_IRQHandler
|
||||
318 0000001A UART1_E_RT_IRQHandler
|
||||
319 0000001A SPI_RO_RT_IRQHandler
|
||||
320 0000001A SPI_RX_IRQHandler
|
||||
321 0000001A SPI_TX_IRQHandler
|
||||
322 0000001A I2C_IRQHandler
|
||||
323 0000001A ECAP0_IRQHandler
|
||||
324 0000001A ECAP1_IRQHandler
|
||||
325 0000001A ECAP2_IRQHandler
|
||||
326 0000001A PWM0_IRQHandler
|
||||
327 0000001A PWM0_HD_IRQHandler
|
||||
328 0000001A PWM0_TZ_IRQHandler
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 10
|
||||
|
||||
|
||||
329 0000001A PWM1_IRQHandler
|
||||
330 0000001A PWM1_HD_IRQHandler
|
||||
331 0000001A PWM1_TZ_IRQHandler
|
||||
332 0000001A PWM2_IRQHandler
|
||||
333 0000001A PWM2_HD_IRQHandler
|
||||
334 0000001A PWM2_TZ_IRQHandler
|
||||
335 0000001A QEP_IRQHandler
|
||||
336 0000001A ADC_SEQ0_IRQHandler
|
||||
337 0000001A ADC_SEQ1_IRQHandler
|
||||
338 0000001A ADC_DC_IRQHandler
|
||||
339 0000001A CAN0_IRQHandler
|
||||
340 0000001A CAN1_IRQHandler
|
||||
341 0000001A CAN2_IRQHandler
|
||||
342 0000001A CAN3_IRQHandler
|
||||
343 0000001A CAN4_IRQHandler
|
||||
344 0000001A CAN5_IRQHandler
|
||||
345 0000001A CAN6_IRQHandler
|
||||
346 0000001A CAN7_IRQHandler
|
||||
347 0000001A CAN8_IRQHandler
|
||||
348 0000001A CAN9_IRQHandler
|
||||
349 0000001A CAN10_IRQHandler
|
||||
350 0000001A CAN11_IRQHandler
|
||||
351 0000001A CAN12_IRQHandler
|
||||
352 0000001A CAN13_IRQHandler
|
||||
353 0000001A CAN14_IRQHandler
|
||||
354 0000001A CAN15_IRQHandler
|
||||
355 0000001A FPU_IRQHandler
|
||||
356 0000001A
|
||||
357 0000001A
|
||||
358 0000001A
|
||||
359 0000001A E7FE B .
|
||||
360 0000001C
|
||||
361 0000001C ENDP
|
||||
362 0000001C
|
||||
363 0000001C ALIGN
|
||||
364 0000001C
|
||||
365 0000001C ;*******************************************************
|
||||
************************
|
||||
366 0000001C ; User Stack and Heap initialization
|
||||
367 0000001C ;*******************************************************
|
||||
************************
|
||||
368 0000001C IF :DEF:__MICROLIB
|
||||
375 0000001C
|
||||
376 0000001C IMPORT __use_two_region_memory
|
||||
377 0000001C EXPORT __user_initial_stackheap
|
||||
378 0000001C
|
||||
379 0000001C __user_initial_stackheap
|
||||
380 0000001C
|
||||
381 0000001C 4804 LDR R0, = Heap_Mem
|
||||
382 0000001E 4905 LDR R1, =(Stack_Mem + Stack_Size)
|
||||
383 00000020 4A05 LDR R2, = (Heap_Mem + Heap_Size)
|
||||
384 00000022 4B06 LDR R3, = Stack_Mem
|
||||
385 00000024 4770 BX LR
|
||||
386 00000026
|
||||
387 00000026 00 00 ALIGN
|
||||
388 00000028
|
||||
389 00000028 ENDIF
|
||||
390 00000028
|
||||
391 00000028 END
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 11
|
||||
|
||||
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000400
|
||||
00000200
|
||||
00000000
|
||||
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M4.fp.sp --apcs=
|
||||
interwork --depend=.\objects\startup_k1921vk035.d -o.\objects\startup_k1921vk03
|
||||
5.o -IC:\Users\I\AppData\Local\Arm\Packs\NIIET\K1921VK035_DFP\2.0.6\Device\Incl
|
||||
ude --predefine="__UVISION_VERSION SETA 538" --predefine="K1921VK035 SETA 1" --
|
||||
list=.\listings\startup_k1921vk035.lst platform\Device\NIIET\K1921VK035\Source\
|
||||
ARM\startup_K1921VK035.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
STACK 00000000
|
||||
|
||||
Symbol: STACK
|
||||
Definitions
|
||||
At line 35 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: STACK unused
|
||||
Stack_Mem 00000000
|
||||
|
||||
Symbol: Stack_Mem
|
||||
Definitions
|
||||
At line 36 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
At line 382 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 384 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
__initial_sp 00000400
|
||||
|
||||
Symbol: __initial_sp
|
||||
Definitions
|
||||
At line 37 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
At line 61 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Comment: __initial_sp used once
|
||||
3 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
HEAP 00000000
|
||||
|
||||
Symbol: HEAP
|
||||
Definitions
|
||||
At line 46 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: HEAP unused
|
||||
Heap_Mem 00000000
|
||||
|
||||
Symbol: Heap_Mem
|
||||
Definitions
|
||||
At line 48 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
At line 381 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 383 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
__heap_base 00000000
|
||||
|
||||
Symbol: __heap_base
|
||||
Definitions
|
||||
At line 47 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: __heap_base unused
|
||||
__heap_limit 00000200
|
||||
|
||||
Symbol: __heap_limit
|
||||
Definitions
|
||||
At line 49 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: __heap_limit unused
|
||||
4 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
RESET 00000000
|
||||
|
||||
Symbol: RESET
|
||||
Definitions
|
||||
At line 56 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: RESET unused
|
||||
__Vectors 00000000
|
||||
|
||||
Symbol: __Vectors
|
||||
Definitions
|
||||
At line 61 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
At line 57 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 152 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
__Vectors_End 00000158
|
||||
|
||||
Symbol: __Vectors_End
|
||||
Definitions
|
||||
At line 150 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 58 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 152 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
3 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
.text 00000000
|
||||
|
||||
Symbol: .text
|
||||
Definitions
|
||||
At line 154 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: .text unused
|
||||
ADC_DC_IRQHandler 0000001A
|
||||
|
||||
Symbol: ADC_DC_IRQHandler
|
||||
Definitions
|
||||
At line 338 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 131 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 265 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
ADC_SEQ0_IRQHandler 0000001A
|
||||
|
||||
Symbol: ADC_SEQ0_IRQHandler
|
||||
Definitions
|
||||
At line 336 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 129 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 263 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
ADC_SEQ1_IRQHandler 0000001A
|
||||
|
||||
Symbol: ADC_SEQ1_IRQHandler
|
||||
Definitions
|
||||
At line 337 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 130 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 264 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
BusFault_Handler 0000000E
|
||||
|
||||
Symbol: BusFault_Handler
|
||||
Definitions
|
||||
At line 184 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 66 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 185 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN0_IRQHandler 0000001A
|
||||
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Symbol: CAN0_IRQHandler
|
||||
Definitions
|
||||
At line 339 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 132 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 266 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN10_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN10_IRQHandler
|
||||
Definitions
|
||||
At line 349 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 142 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 276 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN11_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN11_IRQHandler
|
||||
Definitions
|
||||
At line 350 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 143 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 277 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN12_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN12_IRQHandler
|
||||
Definitions
|
||||
At line 351 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 144 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 278 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN13_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN13_IRQHandler
|
||||
Definitions
|
||||
At line 352 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 145 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 279 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN14_IRQHandler 0000001A
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 3 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
|
||||
Symbol: CAN14_IRQHandler
|
||||
Definitions
|
||||
At line 353 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 146 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 280 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN15_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN15_IRQHandler
|
||||
Definitions
|
||||
At line 354 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 147 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 281 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN1_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN1_IRQHandler
|
||||
Definitions
|
||||
At line 340 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 133 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 267 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN2_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN2_IRQHandler
|
||||
Definitions
|
||||
At line 341 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 134 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 268 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN3_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN3_IRQHandler
|
||||
Definitions
|
||||
At line 342 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 135 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 269 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 4 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
CAN4_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN4_IRQHandler
|
||||
Definitions
|
||||
At line 343 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 136 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 270 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN5_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN5_IRQHandler
|
||||
Definitions
|
||||
At line 344 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 137 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 271 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN6_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN6_IRQHandler
|
||||
Definitions
|
||||
At line 345 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 138 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 272 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN7_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN7_IRQHandler
|
||||
Definitions
|
||||
At line 346 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 139 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 273 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
CAN8_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN8_IRQHandler
|
||||
Definitions
|
||||
At line 347 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 140 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 274 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 5 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
|
||||
CAN9_IRQHandler 0000001A
|
||||
|
||||
Symbol: CAN9_IRQHandler
|
||||
Definitions
|
||||
At line 348 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 141 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 275 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH0_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH0_IRQHandler
|
||||
Definitions
|
||||
At line 291 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 84 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 218 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH10_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH10_IRQHandler
|
||||
Definitions
|
||||
At line 301 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 94 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 228 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH11_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH11_IRQHandler
|
||||
Definitions
|
||||
At line 302 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 95 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 229 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH12_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH12_IRQHandler
|
||||
Definitions
|
||||
At line 303 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 96 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 230 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 6 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH13_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH13_IRQHandler
|
||||
Definitions
|
||||
At line 304 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 97 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 231 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH14_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH14_IRQHandler
|
||||
Definitions
|
||||
At line 305 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 98 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 232 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH15_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH15_IRQHandler
|
||||
Definitions
|
||||
At line 306 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 99 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 233 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH1_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH1_IRQHandler
|
||||
Definitions
|
||||
At line 292 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 85 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 219 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH2_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH2_IRQHandler
|
||||
Definitions
|
||||
At line 293 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 86 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 7 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
At line 220 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH3_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH3_IRQHandler
|
||||
Definitions
|
||||
At line 294 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 87 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 221 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH4_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH4_IRQHandler
|
||||
Definitions
|
||||
At line 295 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 88 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 222 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH5_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH5_IRQHandler
|
||||
Definitions
|
||||
At line 296 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 89 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 223 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH6_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH6_IRQHandler
|
||||
Definitions
|
||||
At line 297 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 90 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 224 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH7_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH7_IRQHandler
|
||||
Definitions
|
||||
At line 298 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 91 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 8 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
921VK035.s
|
||||
At line 225 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH8_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH8_IRQHandler
|
||||
Definitions
|
||||
At line 299 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 92 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 226 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DMA_CH9_IRQHandler 0000001A
|
||||
|
||||
Symbol: DMA_CH9_IRQHandler
|
||||
Definitions
|
||||
At line 300 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 93 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 227 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
DebugMon_Handler 00000014
|
||||
|
||||
Symbol: DebugMon_Handler
|
||||
Definitions
|
||||
At line 198 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 73 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 199 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
Default_Handler 0000001A
|
||||
|
||||
Symbol: Default_Handler
|
||||
Definitions
|
||||
At line 211 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: Default_Handler unused
|
||||
ECAP0_IRQHandler 0000001A
|
||||
|
||||
Symbol: ECAP0_IRQHandler
|
||||
Definitions
|
||||
At line 323 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 116 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 250 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 9 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
1921VK035.s
|
||||
|
||||
ECAP1_IRQHandler 0000001A
|
||||
|
||||
Symbol: ECAP1_IRQHandler
|
||||
Definitions
|
||||
At line 324 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 117 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 251 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
ECAP2_IRQHandler 0000001A
|
||||
|
||||
Symbol: ECAP2_IRQHandler
|
||||
Definitions
|
||||
At line 325 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 118 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 252 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
FPU_IRQHandler 0000001A
|
||||
|
||||
Symbol: FPU_IRQHandler
|
||||
Definitions
|
||||
At line 355 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 148 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 282 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
GPIOA_IRQHandler 0000001A
|
||||
|
||||
Symbol: GPIOA_IRQHandler
|
||||
Definitions
|
||||
At line 289 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 82 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 216 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
GPIOB_IRQHandler 0000001A
|
||||
|
||||
Symbol: GPIOB_IRQHandler
|
||||
Definitions
|
||||
At line 290 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 83 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 10 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
At line 217 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
HardFault_Handler 0000000A
|
||||
|
||||
Symbol: HardFault_Handler
|
||||
Definitions
|
||||
At line 174 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 64 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 175 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
I2C_IRQHandler 0000001A
|
||||
|
||||
Symbol: I2C_IRQHandler
|
||||
Definitions
|
||||
At line 322 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 115 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 249 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
MFLASH_IRQHandler 0000001A
|
||||
|
||||
Symbol: MFLASH_IRQHandler
|
||||
Definitions
|
||||
At line 288 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 81 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 215 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
MemManage_Handler 0000000C
|
||||
|
||||
Symbol: MemManage_Handler
|
||||
Definitions
|
||||
At line 179 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 65 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 180 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
NMI_Handler 00000008
|
||||
|
||||
Symbol: NMI_Handler
|
||||
Definitions
|
||||
At line 169 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 63 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 11 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
921VK035.s
|
||||
At line 170 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM0_HD_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM0_HD_IRQHandler
|
||||
Definitions
|
||||
At line 327 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 120 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 254 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM0_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM0_IRQHandler
|
||||
Definitions
|
||||
At line 326 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 119 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 253 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM0_TZ_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM0_TZ_IRQHandler
|
||||
Definitions
|
||||
At line 328 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 121 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 255 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM1_HD_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM1_HD_IRQHandler
|
||||
Definitions
|
||||
At line 330 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 123 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 257 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM1_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM1_IRQHandler
|
||||
Definitions
|
||||
At line 329 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 12 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
At line 122 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 256 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM1_TZ_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM1_TZ_IRQHandler
|
||||
Definitions
|
||||
At line 331 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 124 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 258 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM2_HD_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM2_HD_IRQHandler
|
||||
Definitions
|
||||
At line 333 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 126 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 260 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM2_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM2_IRQHandler
|
||||
Definitions
|
||||
At line 332 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 125 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 259 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PWM2_TZ_IRQHandler 0000001A
|
||||
|
||||
Symbol: PWM2_TZ_IRQHandler
|
||||
Definitions
|
||||
At line 334 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 127 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 261 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
PendSV_Handler 00000016
|
||||
|
||||
Symbol: PendSV_Handler
|
||||
Definitions
|
||||
At line 202 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 13 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Uses
|
||||
At line 75 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 203 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
QEP_IRQHandler 0000001A
|
||||
|
||||
Symbol: QEP_IRQHandler
|
||||
Definitions
|
||||
At line 335 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 128 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 262 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
RCU_IRQHandler 0000001A
|
||||
|
||||
Symbol: RCU_IRQHandler
|
||||
Definitions
|
||||
At line 287 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 80 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 214 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
Reset_Handler 00000000
|
||||
|
||||
Symbol: Reset_Handler
|
||||
Definitions
|
||||
At line 157 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 62 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 158 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
SPI_RO_RT_IRQHandler 0000001A
|
||||
|
||||
Symbol: SPI_RO_RT_IRQHandler
|
||||
Definitions
|
||||
At line 319 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 112 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 246 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
SPI_RX_IRQHandler 0000001A
|
||||
|
||||
Symbol: SPI_RX_IRQHandler
|
||||
Definitions
|
||||
At line 320 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 14 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 113 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 247 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
SPI_TX_IRQHandler 0000001A
|
||||
|
||||
Symbol: SPI_TX_IRQHandler
|
||||
Definitions
|
||||
At line 321 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 114 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 248 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
SVC_Handler 00000012
|
||||
|
||||
Symbol: SVC_Handler
|
||||
Definitions
|
||||
At line 193 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 72 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 194 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
SysTick_Handler 00000018
|
||||
|
||||
Symbol: SysTick_Handler
|
||||
Definitions
|
||||
At line 206 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 76 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 207 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
TMR0_IRQHandler 0000001A
|
||||
|
||||
Symbol: TMR0_IRQHandler
|
||||
Definitions
|
||||
At line 307 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 100 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 234 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
TMR1_IRQHandler 0000001A
|
||||
|
||||
Symbol: TMR1_IRQHandler
|
||||
Definitions
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 15 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
At line 308 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 101 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 235 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
TMR2_IRQHandler 0000001A
|
||||
|
||||
Symbol: TMR2_IRQHandler
|
||||
Definitions
|
||||
At line 309 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 102 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 236 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
TMR3_IRQHandler 0000001A
|
||||
|
||||
Symbol: TMR3_IRQHandler
|
||||
Definitions
|
||||
At line 310 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 103 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 237 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART0_E_RT_IRQHandler 0000001A
|
||||
|
||||
Symbol: UART0_E_RT_IRQHandler
|
||||
Definitions
|
||||
At line 314 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 107 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 241 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART0_RX_IRQHandler 0000001A
|
||||
|
||||
Symbol: UART0_RX_IRQHandler
|
||||
Definitions
|
||||
At line 312 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 105 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 239 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART0_TD_IRQHandler 0000001A
|
||||
|
||||
Symbol: UART0_TD_IRQHandler
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 16 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Definitions
|
||||
At line 311 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 104 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 238 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART0_TX_IRQHandler 0000001A
|
||||
|
||||
Symbol: UART0_TX_IRQHandler
|
||||
Definitions
|
||||
At line 313 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 106 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 240 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART1_E_RT_IRQHandler 0000001A
|
||||
|
||||
Symbol: UART1_E_RT_IRQHandler
|
||||
Definitions
|
||||
At line 318 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 111 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 245 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART1_RX_IRQHandler 0000001A
|
||||
|
||||
Symbol: UART1_RX_IRQHandler
|
||||
Definitions
|
||||
At line 316 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 109 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 243 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART1_TD_IRQHandler 0000001A
|
||||
|
||||
Symbol: UART1_TD_IRQHandler
|
||||
Definitions
|
||||
At line 315 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 108 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 242 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UART1_TX_IRQHandler 0000001A
|
||||
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 17 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Symbol: UART1_TX_IRQHandler
|
||||
Definitions
|
||||
At line 317 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 110 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
At line 244 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
UsageFault_Handler 00000010
|
||||
|
||||
Symbol: UsageFault_Handler
|
||||
Definitions
|
||||
At line 189 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 67 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 190 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
WDT_IRQHandler 0000001A
|
||||
|
||||
Symbol: WDT_IRQHandler
|
||||
Definitions
|
||||
At line 286 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 79 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 213 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
__user_initial_stackheap 0000001C
|
||||
|
||||
Symbol: __user_initial_stackheap
|
||||
Definitions
|
||||
At line 379 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 377 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Comment: __user_initial_stackheap used once
|
||||
83 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Absolute symbols
|
||||
|
||||
Heap_Size 00000200
|
||||
|
||||
Symbol: Heap_Size
|
||||
Definitions
|
||||
At line 44 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
At line 48 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 383 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
Stack_Size 00000400
|
||||
|
||||
Symbol: Stack_Size
|
||||
Definitions
|
||||
At line 33 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
Uses
|
||||
At line 36 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.s
|
||||
At line 382 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
|
||||
__Vectors_Size 00000158
|
||||
|
||||
Symbol: __Vectors_Size
|
||||
Definitions
|
||||
At line 152 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 59 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K1
|
||||
921VK035.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 160 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 161 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Comment: SystemInit used once
|
||||
__main 00000000
|
||||
|
||||
Symbol: __main
|
||||
Definitions
|
||||
At line 159 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
At line 163 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Comment: __main used once
|
||||
__use_two_region_memory 00000000
|
||||
|
||||
Symbol: __use_two_region_memory
|
||||
Definitions
|
||||
At line 376 in file platform\Device\NIIET\K1921VK035\Source\ARM\startup_K
|
||||
1921VK035.s
|
||||
Uses
|
||||
None
|
||||
Comment: __use_two_region_memory unused
|
||||
3 symbols
|
||||
436 symbols in table
|
||||
Reference in New Issue
Block a user