ARM Macro Assembler Page 1
1 00000000 ; /* Copyright Statement:
2 00000000 ; *
3 00000000 ; * This software/firmware and related documentation ("A
utoChips Software") are
4 00000000 ; * protected under relevant copyright laws. The informa
tion contained herein is
5 00000000 ; * confidential and proprietary to AutoChips Inc. and/o
r its licensors. Without
6 00000000 ; * the prior written permission of AutoChips inc. and/o
r its licensors, any
7 00000000 ; * reproduction, modification, use or disclosure of Aut
oChips Software, and
8 00000000 ; * information contained herein, in whole or in part, s
hall be strictly
9 00000000 ; * prohibited.
10 00000000 ; *
11 00000000 ; * AutoChips Inc. (C) 2020. All rights reserved.
12 00000000 ; *
13 00000000 ; * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY
ACKNOWLEDGES AND AGREES
14 00000000 ; * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("
AUTOCHIPS SOFTWARE")
15 00000000 ; * RECEIVED FROM AUTOCHIPS AND/OR ITS REPRESENTATIVES A
RE PROVIDED TO RECEIVER
16 00000000 ; * ON AN "AS-IS" BASIS ONLY. AUTOCHIPS EXPRESSLY DISCLA
IMS ANY AND ALL
17 00000000 ; * WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LI
MITED TO THE IMPLIED
18 00000000 ; * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICU
LAR PURPOSE OR
19 00000000 ; * NONINFRINGEMENT. NEITHER DOES AUTOCHIPS PROVIDE ANY
WARRANTY WHATSOEVER WITH
20 00000000 ; * RESPECT TO THE SOFTWARE OF ANY THIRD PARTY WHICH MAY
BE USED BY,
21 00000000 ; * INCORPORATED IN, OR SUPPLIED WITH THE AUTOCHIPS SOFT
WARE, AND RECEIVER AGREES
22 00000000 ; * TO LOOK ONLY TO SUCH THIRD PARTY FOR ANY WARRANTY CL
AIM RELATING THERETO.
23 00000000 ; * RECEIVER EXPRESSLY ACKNOWLEDGES THAT IT IS RECEIVER'
S SOLE RESPONSIBILITY TO
24 00000000 ; * OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES CONT
AINED IN AUTOCHIPS
25 00000000 ; * SOFTWARE. AUTOCHIPS SHALL ALSO NOT BE RESPONSIBLE FO
R ANY AUTOCHIPS SOFTWARE
26 00000000 ; * RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONF
ORM TO A PARTICULAR
27 00000000 ; * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIV
E REMEDY AND AUTOCHIPS'S
28 00000000 ; * ENTIRE AND CUMULATIVE LIABILITY WITH RESPECT TO THE
AUTOCHIPS SOFTWARE
29 00000000 ; * RELEASED HEREUNDER WILL BE, AT AUTOCHIPS'S OPTION, T
O REVISE OR REPLACE THE
30 00000000 ; * AUTOCHIPS SOFTWARE AT ISSUE, OR REFUND ANY SOFTWARE
LICENSE FEES OR SERVICE
31 00000000 ; * CHARGE PAID BY RECEIVER TO AUTOCHIPS FOR SUCH AUTOCH
IPS SOFTWARE AT ISSUE.
32 00000000 ; */
33 00000000
34 00000000 ;/*
ARM Macro Assembler Page 2
35 00000000 ;//-------- <<< Use Configuration Wizard in Context Menu
>>> ------------------
36 00000000 ;*/
37 00000000
38 00000000
39 00000000 ; Stack Configuration
40 00000000 ; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
41 00000000 ;
42 00000000
43 00000000 00000400
Stack_Size
EQU 0x00000400
44 00000000
45 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
=3
46 00000000 Stack_Mem
SPACE Stack_Size
47 00000400 __initial_sp
48 00000400
49 00000400
50 00000400 ; Heap Configuration
51 00000400 ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
52 00000400 ;
53 00000400
54 00000400 00000000
Heap_Size
EQU 0x00000000
55 00000400
56 00000400 AREA HEAP, NOINIT, READWRITE, ALIGN=
3
57 00000000 __heap_base
58 00000000 Heap_Mem
SPACE Heap_Size
59 00000000 __heap_limit
60 00000000
61 00000000
62 00000000 PRESERVE8
63 00000000 THUMB
64 00000000
65 00000000
66 00000000 ; Vector Table Mapped to Address 0 at Reset
67 00000000
68 00000000 AREA RESET, DATA, READONLY
69 00000000 EXPORT __Vectors
70 00000000 EXPORT __Vectors_End
71 00000000 EXPORT __Vectors_Size
72 00000000
73 00000000 00000000
__Vectors
DCD __initial_sp ; Top of Stack
74 00000004 00000000 DCD Reset_Handler ; Reset Handler
75 00000008 00000000 DCD NMI_Handler ; NMI Handler
76 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
Handler
77 00000010 00000000 DCD 0 ; Reserved
78 00000014 00000000 DCD 0 ; Reserved
79 00000018 00000000 DCD 0 ; Reserved
80 0000001C 00000000 DCD 0 ; Reserved
81 00000020 00000000 DCD 0 ; Reserved
ARM Macro Assembler Page 3
82 00000024 00000000 DCD 0 ; Reserved
83 00000028 00000000 DCD 0 ; Reserved
84 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
85 00000030 00000000 DCD 0 ; Reserved
86 00000034 00000000 DCD 0 ; Reserved
87 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
88 0000003C 00000000 DCD SysTick_Handler
; SysTick Handler
89 00000040
90 00000040 ; External Interrupts
91 00000040 00000000 DCD PWDT0_IRQHandler ; 0: PWDT0 in
terrupt
92 00000044 00000000 DCD PWDT1_IRQHandler ; 1: PWDT1 in
terrupt
93 00000048 00000000 DCD PWM0_IRQHandler ; 2: PWM0 inte
rrupt
94 0000004C 00000000 DCD PWM1_IRQHandler ; 3: PWM1 inte
rrupt
95 00000050 00000000 DCD ACMP0_IRQHandler ; 4: ACMP0 in
terrupt
96 00000054 00000000 DCD UART0_IRQHandler ; 5: UART0 in
terrupt
97 00000058 00000000 DCD UART1_IRQHandler ; 6: UART1 in
terrupt
98 0000005C 00000000 DCD UART2_IRQHandler ; 7: UART2 in
terrupt
99 00000060 00000000 DCD WDG_IRQHandler
; 8: WDG interrupt
100 00000064 00000000 DCD SPI0_IRQHandler ; 9: SPI0 inte
rrupt
101 00000068 00000000 DCD SPI1_IRQHandler ; 10: SPI1 inte
rrupt
102 0000006C 00000000 DCD I2C0_IRQHandler ; 11: I2C0 Inte
rrupt
103 00000070 00000000 DCD I2C1_IRQHandler ; 12: I2C1 Inte
rrupt
104 00000074 00000000 DCD DMA0_Channel0_IRQHandler ; 13:
DMA0 channel 0 inte
rrupt
105 00000078 00000000 DCD DMA0_Channel1_IRQHandler ; 14:
DMA0 channel 1 inte
rrupt
106 0000007C 00000000 DCD DMA0_Channel2_IRQHandler ; 15:
DMA0 channel 2 inte
rrupt
107 00000080 00000000 DCD DMA0_Channel3_IRQHandler ; 16:
DMA0 channel 3 inte
rrupt
108 00000084 00000000 DCD TIMER_Channel0_IRQHandler ; 17:
TIMER channel 0 in
terrupt
109 00000088 00000000 DCD TIMER_Channel1_IRQHandler ; 18:
TIMER channel 1 in
terrupt
110 0000008C 00000000 DCD TIMER_Channel2_IRQHandler ; 19:
TIMER channel 2 in
terrupt
ARM Macro Assembler Page 4
111 00000090 00000000 DCD TIMER_Channel3_IRQHandler ; 20:
TIMER channel 3 in
terrupt
112 00000094 00000000 DCD RTC_IRQHandler
; 21: RTC Interrupt
113 00000098 00000000 DCD PVD_IRQHandler
; 22: PVD Interrupt
114 0000009C 00000000 DCD SPM_IRQHandler
; 23: SPM interrupt
115 000000A0 00000000 DCD CAN0_Handler ; 24: CAN0 interru
pt
116 000000A4 00000000 DCD ADC0_IRQHandler ; 25: ADC0 inte
rrupt
117 000000A8 00000000 DCD ECC_SRAM_IRQHandler ; 26: ECC S
RAM interrupt
118 000000AC 00000000 DCD EXTI0_IRQHandler ; 27: GPIOx PI
N0 external interru
pt
119 000000B0 00000000 DCD EXTI1_IRQHandler ; 28: GPIOx PI
N1 external interru
pt
120 000000B4 00000000 DCD EXTI2_IRQHandler ; 29: GPIOx PI
N2 external interru
pt
121 000000B8 00000000 DCD EXTI3_8_IRQHandler ; 30: GPIOx
PIN3~8 external int
errupt
122 000000BC 00000000 DCD EXTI9_15_IRQHandler ; 31: GPIOx
PIN9~15 external i
nterrupt
123 000000C0 __Vectors_End
124 000000C0
125 000000C0 000000C0
__Vectors_Size
EQU __Vectors_End - __Vectors
126 000000C0
127 000000C0 AREA |.text|, CODE, READONLY
128 00000000
129 00000000
130 00000000 ; Reset Handler
131 00000000
132 00000000 Reset_Handler
PROC
133 00000000 EXPORT Reset_Handler [WEAK
]
134 00000000 IMPORT SystemInit
135 00000000 IMPORT __main
136 00000000
137 00000000 480F LDR R0, =SystemInit
138 00000002 4780 BLX R0
139 00000004
140 00000004 480F LDR R0, =0x40008810
141 00000006 4910 LDR R1, =0x000C0000
142 00000008 6001 STR R1, [R0]
143 0000000A
144 0000000A 4810 LDR R0, =0x40008850
ARM Macro Assembler Page 5
145 0000000C 4910 LDR R1, =0x01C00000
146 0000000E 6001 STR R1, [R0]
147 00000010
148 00000010 4810 LDR R0, =0x20080014
149 00000012 4911 LDR R1, =0xFFFF
150 00000014 8001 STRH R1, [R0]
151 00000016
152 00000016 4811 LDR R0, =0x20080044
153 00000018 490F LDR R1, =0xFFFF
154 0000001A 8001 STRH R1, [R0]
155 0000001C
156 0000001C 4810 LDR R0, =0x20080074
157 0000001E 4911 LDR R1, =0x3FF
158 00000020 8001 STRH R1, [R0]
159 00000022
160 00000022 4811 LDR R0, =__main
161 00000024 4700 BX R0
162 00000026 ENDP
163 00000026
164 00000026
165 00000026 ; Dummy Exception Handlers (infinite loops which can be
modified)
166 00000026
167 00000026 NMI_Handler
PROC
168 00000026 EXPORT NMI_Handler [WEAK
]
169 00000026 E7FE B .
170 00000028 ENDP
172 00000028 HardFault_Handler
PROC
173 00000028 EXPORT HardFault_Handler [WEAK
]
174 00000028 E7FE B .
175 0000002A ENDP
176 0000002A SVC_Handler
PROC
177 0000002A EXPORT SVC_Handler [WEAK
]
178 0000002A E7FE B .
179 0000002C ENDP
180 0000002C PendSV_Handler
PROC
181 0000002C EXPORT PendSV_Handler [WEAK
]
182 0000002C E7FE B .
183 0000002E ENDP
184 0000002E SysTick_Handler
PROC
185 0000002E EXPORT SysTick_Handler [WEAK
]
186 0000002E E7FE B .
187 00000030 ENDP
188 00000030
189 00000030 Default_Handler
PROC
190 00000030
191 00000030 EXPORT PWDT0_IRQHandler [WEA
K]
ARM Macro Assembler Page 6
192 00000030 EXPORT PWDT1_IRQHandler [WEA
K]
193 00000030 EXPORT PWM0_IRQHandler [WEA
K]
194 00000030 EXPORT PWM1_IRQHandler [WEA
K]
195 00000030 EXPORT ACMP0_IRQHandler [WEA
K]
196 00000030 EXPORT UART0_IRQHandler [WEA
K]
197 00000030 EXPORT UART1_IRQHandler [WEA
K]
198 00000030 EXPORT UART2_IRQHandler [WEA
K]
199 00000030 EXPORT WDG_IRQHandler [WEA
K]
200 00000030 EXPORT SPI0_IRQHandler [WEA
K]
201 00000030 EXPORT SPI1_IRQHandler [WEA
K]
202 00000030 EXPORT I2C0_IRQHandler [WEA
K]
203 00000030 EXPORT I2C1_IRQHandler [WEA
K]
204 00000030 EXPORT DMA0_Channel0_IRQHandler [WEA
K]
205 00000030 EXPORT DMA0_Channel1_IRQHandler [WEA
K]
206 00000030 EXPORT DMA0_Channel2_IRQHandler [WEA
K]
207 00000030 EXPORT DMA0_Channel3_IRQHandler [WEA
K]
208 00000030 EXPORT TIMER_Channel0_IRQHandler [WEA
K]
209 00000030 EXPORT TIMER_Channel1_IRQHandler [WEA
K]
210 00000030 EXPORT TIMER_Channel2_IRQHandler [WEA
K]
211 00000030 EXPORT TIMER_Channel3_IRQHandler [WEA
K]
212 00000030 EXPORT RTC_IRQHandler [WEA
K]
213 00000030 EXPORT PVD_IRQHandler [WEA
K]
214 00000030 EXPORT SPM_IRQHandler [WEA
K]
215 00000030 EXPORT CAN0_Handler [WEA
K]
216 00000030 EXPORT ADC0_IRQHandler [WEA
K]
217 00000030 EXPORT ECC_SRAM_IRQHandler [WEA
K]
218 00000030 EXPORT EXTI0_IRQHandler [WEA
K]
219 00000030 EXPORT EXTI1_IRQHandler [WEA
K]
220 00000030 EXPORT EXTI2_IRQHandler [WEA
K]
221 00000030 EXPORT EXTI3_8_IRQHandler [WEA
ARM Macro Assembler Page 7
K]
222 00000030 EXPORT EXTI9_15_IRQHandler [WEA
K]
223 00000030
224 00000030 PWDT0_IRQHandler
225 00000030 PWDT1_IRQHandler
226 00000030 PWM0_IRQHandler
227 00000030 PWM1_IRQHandler
228 00000030 ACMP0_IRQHandler
229 00000030 UART0_IRQHandler
230 00000030 UART1_IRQHandler
231 00000030 UART2_IRQHandler
232 00000030 WDG_IRQHandler
233 00000030 SPI0_IRQHandler
234 00000030 SPI1_IRQHandler
235 00000030 I2C0_IRQHandler
236 00000030 I2C1_IRQHandler
237 00000030 DMA0_Channel0_IRQHandler
238 00000030 DMA0_Channel1_IRQHandler
239 00000030 DMA0_Channel2_IRQHandler
240 00000030 DMA0_Channel3_IRQHandler
241 00000030 TIMER_Channel0_IRQHandler
242 00000030 TIMER_Channel1_IRQHandler
243 00000030 TIMER_Channel2_IRQHandler
244 00000030 TIMER_Channel3_IRQHandler
245 00000030 RTC_IRQHandler
246 00000030 PVD_IRQHandler
247 00000030 SPM_IRQHandler
248 00000030 CAN0_Handler
249 00000030 ADC0_IRQHandler
250 00000030 ECC_SRAM_IRQHandler
251 00000030 EXTI0_IRQHandler
252 00000030 EXTI1_IRQHandler
253 00000030 EXTI2_IRQHandler
254 00000030 EXTI3_8_IRQHandler
255 00000030 EXTI9_15_IRQHandler
256 00000030 E7FE B .
257 00000032
258 00000032 ENDP
259 00000032
260 00000032
261 00000032 00 00 ALIGN
262 00000034
263 00000034
264 00000034 ; User Initial Stack & Heap
265 00000034
266 00000034 IF :DEF:__MICROLIB
273 00000034
274 00000034 IMPORT __use_two_region_memory
275 00000034 EXPORT __user_initial_stackheap
276 00000034
277 00000034 __user_initial_stackheap
PROC
278 00000034 480D LDR R0, = Heap_Mem
279 00000036 490E LDR R1, =(Stack_Mem + Stack_Size)
280 00000038 4A0C LDR R2, = (Heap_Mem + Heap_Size)
281 0000003A 4B0E LDR R3, = Stack_Mem
282 0000003C 4770 BX LR
283 0000003E ENDP
ARM Macro Assembler Page 8
284 0000003E
285 0000003E 00 00 ALIGN
286 00000040
287 00000040 ENDIF
288 00000040
289 00000040
290 00000040 END
00000000
40008810
000C0000
40008850
01C00000
20080014
0000FFFF
20080044
20080074
000003FF
00000000
00000000
00000400
00000000
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0+ --apcs=inter
work --depend=.\objects\startup_ac780x.d -o.\objects\startup_ac780x.o -I.\RTE\D
evice\AC78013MDQA -I.\RTE\_AirControlValve -ID:\installed_software\Kiel_v5\Pack
s\ARM\CMSIS\5.9.0\CMSIS\Core\Include -ID:\installed_software\Kiel_v5\Packs\Auto
Chips\AC780x_DFP\1.0.6\ATC_Driver\inc -ID:\installed_software\Kiel_v5\Packs\Aut
oChips\AC780x_DFP\1.0.6\Device\Include --predefine="__UVISION_VERSION SETA 537"
--predefine="_RTE_ SETA 1" --predefine="_RTE_ SETA 1" --list=.\listings\startu
p_ac780x.lst RTE/Device/AC78013MDQA/startup_ac780x.s
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
STACK 00000000
Symbol: STACK
Definitions
At line 45 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
None
Comment: STACK unused
Stack_Mem 00000000
Symbol: Stack_Mem
Definitions
At line 46 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 279 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 281 in file RTE/Device/AC78013MDQA/startup_ac780x.s
__initial_sp 00000400
Symbol: __initial_sp
Definitions
At line 47 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 73 in file RTE/Device/AC78013MDQA/startup_ac780x.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 56 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
None
Comment: HEAP unused
Heap_Mem 00000000
Symbol: Heap_Mem
Definitions
At line 58 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 278 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 280 in file RTE/Device/AC78013MDQA/startup_ac780x.s
__heap_base 00000000
Symbol: __heap_base
Definitions
At line 57 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
None
Comment: __heap_base unused
__heap_limit 00000000
Symbol: __heap_limit
Definitions
At line 59 in file RTE/Device/AC78013MDQA/startup_ac780x.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 68 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
None
Comment: RESET unused
__Vectors 00000000
Symbol: __Vectors
Definitions
At line 73 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 69 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 125 in file RTE/Device/AC78013MDQA/startup_ac780x.s
__Vectors_End 000000C0
Symbol: __Vectors_End
Definitions
At line 123 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 70 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 125 in file RTE/Device/AC78013MDQA/startup_ac780x.s
3 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Relocatable symbols
.text 00000000
Symbol: .text
Definitions
At line 127 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
None
Comment: .text unused
ACMP0_IRQHandler 00000030
Symbol: ACMP0_IRQHandler
Definitions
At line 228 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 95 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 195 in file RTE/Device/AC78013MDQA/startup_ac780x.s
ADC0_IRQHandler 00000030
Symbol: ADC0_IRQHandler
Definitions
At line 249 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 116 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 216 in file RTE/Device/AC78013MDQA/startup_ac780x.s
CAN0_Handler 00000030
Symbol: CAN0_Handler
Definitions
At line 248 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 115 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 215 in file RTE/Device/AC78013MDQA/startup_ac780x.s
DMA0_Channel0_IRQHandler 00000030
Symbol: DMA0_Channel0_IRQHandler
Definitions
At line 237 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 104 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 204 in file RTE/Device/AC78013MDQA/startup_ac780x.s
DMA0_Channel1_IRQHandler 00000030
Symbol: DMA0_Channel1_IRQHandler
Definitions
At line 238 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 105 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 205 in file RTE/Device/AC78013MDQA/startup_ac780x.s
DMA0_Channel2_IRQHandler 00000030
Symbol: DMA0_Channel2_IRQHandler
Definitions
At line 239 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
ARM Macro Assembler Page 2 Alphabetic symbol ordering
Relocatable symbols
At line 106 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 206 in file RTE/Device/AC78013MDQA/startup_ac780x.s
DMA0_Channel3_IRQHandler 00000030
Symbol: DMA0_Channel3_IRQHandler
Definitions
At line 240 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 107 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 207 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Default_Handler 00000030
Symbol: Default_Handler
Definitions
At line 189 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
None
Comment: Default_Handler unused
ECC_SRAM_IRQHandler 00000030
Symbol: ECC_SRAM_IRQHandler
Definitions
At line 250 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 117 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 217 in file RTE/Device/AC78013MDQA/startup_ac780x.s
EXTI0_IRQHandler 00000030
Symbol: EXTI0_IRQHandler
Definitions
At line 251 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 118 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 218 in file RTE/Device/AC78013MDQA/startup_ac780x.s
EXTI1_IRQHandler 00000030
Symbol: EXTI1_IRQHandler
Definitions
At line 252 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 119 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 219 in file RTE/Device/AC78013MDQA/startup_ac780x.s
EXTI2_IRQHandler 00000030
Symbol: EXTI2_IRQHandler
Definitions
At line 253 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 120 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 220 in file RTE/Device/AC78013MDQA/startup_ac780x.s
EXTI3_8_IRQHandler 00000030
Symbol: EXTI3_8_IRQHandler
ARM Macro Assembler Page 3 Alphabetic symbol ordering
Relocatable symbols
Definitions
At line 254 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 121 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 221 in file RTE/Device/AC78013MDQA/startup_ac780x.s
EXTI9_15_IRQHandler 00000030
Symbol: EXTI9_15_IRQHandler
Definitions
At line 255 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 122 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 222 in file RTE/Device/AC78013MDQA/startup_ac780x.s
HardFault_Handler 00000028
Symbol: HardFault_Handler
Definitions
At line 172 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 76 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 173 in file RTE/Device/AC78013MDQA/startup_ac780x.s
I2C0_IRQHandler 00000030
Symbol: I2C0_IRQHandler
Definitions
At line 235 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 102 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 202 in file RTE/Device/AC78013MDQA/startup_ac780x.s
I2C1_IRQHandler 00000030
Symbol: I2C1_IRQHandler
Definitions
At line 236 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 103 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 203 in file RTE/Device/AC78013MDQA/startup_ac780x.s
NMI_Handler 00000026
Symbol: NMI_Handler
Definitions
At line 167 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 75 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 168 in file RTE/Device/AC78013MDQA/startup_ac780x.s
PVD_IRQHandler 00000030
Symbol: PVD_IRQHandler
Definitions
At line 246 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 113 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 213 in file RTE/Device/AC78013MDQA/startup_ac780x.s
ARM Macro Assembler Page 4 Alphabetic symbol ordering
Relocatable symbols
PWDT0_IRQHandler 00000030
Symbol: PWDT0_IRQHandler
Definitions
At line 224 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 91 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 191 in file RTE/Device/AC78013MDQA/startup_ac780x.s
PWDT1_IRQHandler 00000030
Symbol: PWDT1_IRQHandler
Definitions
At line 225 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 92 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 192 in file RTE/Device/AC78013MDQA/startup_ac780x.s
PWM0_IRQHandler 00000030
Symbol: PWM0_IRQHandler
Definitions
At line 226 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 93 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 193 in file RTE/Device/AC78013MDQA/startup_ac780x.s
PWM1_IRQHandler 00000030
Symbol: PWM1_IRQHandler
Definitions
At line 227 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 94 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 194 in file RTE/Device/AC78013MDQA/startup_ac780x.s
PendSV_Handler 0000002C
Symbol: PendSV_Handler
Definitions
At line 180 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 87 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 181 in file RTE/Device/AC78013MDQA/startup_ac780x.s
RTC_IRQHandler 00000030
Symbol: RTC_IRQHandler
Definitions
At line 245 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 112 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 212 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Reset_Handler 00000000
Symbol: Reset_Handler
Definitions
ARM Macro Assembler Page 5 Alphabetic symbol ordering
Relocatable symbols
At line 132 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 74 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 133 in file RTE/Device/AC78013MDQA/startup_ac780x.s
SPI0_IRQHandler 00000030
Symbol: SPI0_IRQHandler
Definitions
At line 233 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 100 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 200 in file RTE/Device/AC78013MDQA/startup_ac780x.s
SPI1_IRQHandler 00000030
Symbol: SPI1_IRQHandler
Definitions
At line 234 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 101 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 201 in file RTE/Device/AC78013MDQA/startup_ac780x.s
SPM_IRQHandler 00000030
Symbol: SPM_IRQHandler
Definitions
At line 247 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 114 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 214 in file RTE/Device/AC78013MDQA/startup_ac780x.s
SVC_Handler 0000002A
Symbol: SVC_Handler
Definitions
At line 176 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 84 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 177 in file RTE/Device/AC78013MDQA/startup_ac780x.s
SysTick_Handler 0000002E
Symbol: SysTick_Handler
Definitions
At line 184 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 88 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 185 in file RTE/Device/AC78013MDQA/startup_ac780x.s
TIMER_Channel0_IRQHandler 00000030
Symbol: TIMER_Channel0_IRQHandler
Definitions
At line 241 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 108 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 208 in file RTE/Device/AC78013MDQA/startup_ac780x.s
ARM Macro Assembler Page 6 Alphabetic symbol ordering
Relocatable symbols
TIMER_Channel1_IRQHandler 00000030
Symbol: TIMER_Channel1_IRQHandler
Definitions
At line 242 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 109 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 209 in file RTE/Device/AC78013MDQA/startup_ac780x.s
TIMER_Channel2_IRQHandler 00000030
Symbol: TIMER_Channel2_IRQHandler
Definitions
At line 243 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 110 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 210 in file RTE/Device/AC78013MDQA/startup_ac780x.s
TIMER_Channel3_IRQHandler 00000030
Symbol: TIMER_Channel3_IRQHandler
Definitions
At line 244 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 111 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 211 in file RTE/Device/AC78013MDQA/startup_ac780x.s
UART0_IRQHandler 00000030
Symbol: UART0_IRQHandler
Definitions
At line 229 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 96 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 196 in file RTE/Device/AC78013MDQA/startup_ac780x.s
UART1_IRQHandler 00000030
Symbol: UART1_IRQHandler
Definitions
At line 230 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 97 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 197 in file RTE/Device/AC78013MDQA/startup_ac780x.s
UART2_IRQHandler 00000030
Symbol: UART2_IRQHandler
Definitions
At line 231 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 98 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 198 in file RTE/Device/AC78013MDQA/startup_ac780x.s
WDG_IRQHandler 00000030
Symbol: WDG_IRQHandler
Definitions
At line 232 in file RTE/Device/AC78013MDQA/startup_ac780x.s
ARM Macro Assembler Page 7 Alphabetic symbol ordering
Relocatable symbols
Uses
At line 99 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 199 in file RTE/Device/AC78013MDQA/startup_ac780x.s
__user_initial_stackheap 00000034
Symbol: __user_initial_stackheap
Definitions
At line 277 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 275 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Comment: __user_initial_stackheap used once
41 symbols
ARM Macro Assembler Page 1 Alphabetic symbol ordering
Absolute symbols
Heap_Size 00000000
Symbol: Heap_Size
Definitions
At line 54 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 58 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 280 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Stack_Size 00000400
Symbol: Stack_Size
Definitions
At line 43 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 46 in file RTE/Device/AC78013MDQA/startup_ac780x.s
At line 279 in file RTE/Device/AC78013MDQA/startup_ac780x.s
__Vectors_Size 000000C0
Symbol: __Vectors_Size
Definitions
At line 125 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 71 in file RTE/Device/AC78013MDQA/startup_ac780x.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 134 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 137 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Comment: SystemInit used once
__main 00000000
Symbol: __main
Definitions
At line 135 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
At line 160 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Comment: __main used once
__use_two_region_memory 00000000
Symbol: __use_two_region_memory
Definitions
At line 274 in file RTE/Device/AC78013MDQA/startup_ac780x.s
Uses
None
Comment: __use_two_region_memory unused
3 symbols
393 symbols in table