You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

774 lines
27 KiB

4 years ago
  1. ARM Macro Assembler Page 1
  2. 1 00000000 ;*******************************************************
  3. ************************
  4. 2 00000000
  5. 3 00000000 ; *author : Eastsoft MCU Software Team
  6. 4 00000000 ; *version : V0.01
  7. 5 00000000 ; *data : 5/28/2021
  8. 6 00000000 ;
  9. 7 00000000 ; *Copyright (C) 2021 Shanghai Eastsoft Microelectronics
  10. Co., Ltd.
  11. 8 00000000 ; *
  12. 9 00000000 ; * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, W
  13. HETHER EXPRESS, IMPLIED
  14. 10 00000000 ; * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED
  15. WARRANTIES OF
  16. 11 00000000 ; * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. APPLY TO THIS SOFTWARE.
  18. 12 00000000 ; * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR S
  19. PECIAL, INCIDENTAL, OR
  20. 13 00000000 ; * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
  21. 14 00000000 ;*******************************************************
  22. ************************
  23. 15 00000000
  24. 16 00000000
  25. 17 00000000 ; <h> Stack Configuration
  26. 18 00000000 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
  27. 19 00000000 ; </h>
  28. 20 00000000
  29. 21 00000000 00000400
  30. Stack_Size
  31. EQU 0x00000400
  32. 22 00000000
  33. 23 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
  34. =3
  35. 24 00000000 Stack_Mem
  36. SPACE Stack_Size
  37. 25 00000400 __initial_sp
  38. 26 00000400
  39. 27 00000400
  40. 28 00000400 ; <h> Heap Configuration
  41. 29 00000400 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
  42. 30 00000400 ; </h>
  43. 31 00000400
  44. 32 00000400 00000000
  45. Heap_Size
  46. EQU 0x00000000
  47. 33 00000400
  48. 34 00000400 AREA HEAP, NOINIT, READWRITE, ALIGN=
  49. 3
  50. 35 00000000 __heap_base
  51. 36 00000000 Heap_Mem
  52. SPACE Heap_Size
  53. 37 00000000 __heap_limit
  54. 38 00000000
  55. 39 00000000 PRESERVE8
  56. 40 00000000 THUMB
  57. 41 00000000
  58. 42 00000000 ; Vector Table Mapped to Address 0 at Reset
  59. 43 00000000
  60. 44 00000000 AREA RESET, DATA, READONLY
  61. ARM Macro Assembler Page 2
  62. 45 00000000 EXPORT __Vectors
  63. 46 00000000
  64. 47 00000000 00000000
  65. __Vectors
  66. DCD __initial_sp ;0, Top of Stack
  67. 48 00000004 00000000 DCD Reset_IRQHandler
  68. ;1, Reset Handler
  69. 49 00000008 00000000 DCD NMI_IRQHandler ;2, NMI Handler
  70. 50 0000000C 00000000 DCD HardFault_IRQHandler ;3, HardF
  71. ault Handler
  72. 51 00000010 00000000 DCD 0 ;4, Reserved
  73. 52 00000014 00000000 DCD 0 ;5, Reserved
  74. 53 00000018 00000000 DCD 0 ;6, Reserved
  75. 54 0000001C 00000000 DCD 0 ;7, Reserved
  76. 55 00000020 00000000 DCD 0 ;8, Reserved
  77. 56 00000024 00000000 DCD 0 ;9, Reserved
  78. 57 00000028 00000000 DCD 0 ;10, Reserved
  79. 58 0000002C 00000000 DCD SVC_IRQHandler
  80. ;11, SVCall Handler
  81. 59 00000030 00000000 DCD 0 ;12, Reserved
  82. 60 00000034 00000000 DCD 0 ;13, Reserved
  83. 61 00000038 00000000 DCD PendSV_IRQHandler
  84. ;14, PendSV Handler
  85. 62 0000003C 00000000 DCD SysTick_IRQHandler ;15, SysTick
  86. Handler
  87. 63 00000040
  88. 64 00000040 ; External Interrupts
  89. 65 00000040 00000000 DCD PINT0_IRQHandler ;16, PINT0 IRQ
  90. Handler
  91. 66 00000044 00000000 DCD PINT1_IRQHandler ;17, PINT1 IRQ
  92. Handler
  93. 67 00000048 00000000 DCD PINT2_IRQHandler ;18, PINT2 IRQ
  94. Handler
  95. 68 0000004C 00000000 DCD PINT3_IRQHandler ;19, PINT3 IRQ
  96. Handler
  97. 69 00000050 00000000 DCD PINT4_IRQHandler ;20, PINT4 IRQ
  98. Handler
  99. 70 00000054 00000000 DCD PINT5_IRQHandler ;21, PINT5 IRQ
  100. Handler
  101. 71 00000058 00000000 DCD PINT6_IRQHandler ;22, PINT6 IRQ
  102. Handler
  103. 72 0000005C 00000000 DCD PINT7_IRQHandler ;23, PINT7 IRQ
  104. Handler
  105. 73 00000060 00000000 DCD T16N0_IRQHandler ;24, T16N0 IRQ
  106. Handler
  107. 74 00000064 00000000 DCD T16N1_IRQHandler ;25, T16N1 IRQ
  108. Handler
  109. 75 00000068 00000000 DCD T16N2_IRQHandler ;26, T16N2 IRQ
  110. Handler
  111. 76 0000006C 00000000 DCD T16N3_IRQHandler ;27, T16N3 IRQ
  112. Handler
  113. 77 00000070 00000000 DCD T32N0_IRQHandler ;28, T32N0 IRQ
  114. Handler
  115. 78 00000074 00000000 DCD 0 ;29, Reserved
  116. 79 00000078 00000000 DCD 0 ;30, Reserved
  117. 80 0000007C 00000000 DCD WWDT_IRQHandler ;31, WWDT IRQHa
  118. ARM Macro Assembler Page 3
  119. ndler
  120. 81 00000080 00000000 DCD IWDT_IRQHandler ;32, IWDT IRQHa
  121. ndler
  122. 82 00000084 00000000 DCD 0 ;33, Reserved
  123. 83 00000088 00000000 DCD KINT_IRQHandler ;34, KINT IRQHa
  124. ndler
  125. 84 0000008C 00000000 DCD ADC_IRQHandler
  126. ;35, ADC IRQHandler
  127. 85 00000090 00000000 DCD 0 ;36, Reserved
  128. 86 00000094 00000000 DCD LVD_IRQHandler
  129. ;37, LVD IRQHandler
  130. 87 00000098 00000000 DCD 0 ;38, Reserved
  131. 88 0000009C 00000000 DCD UART0_IRQHandler ;39, UART0 IRQ
  132. Handler
  133. 89 000000A0 00000000 DCD UART1_IRQHandler ;40, UART1 IRQ
  134. Handler
  135. 90 000000A4 00000000 DCD UART2_IRQHandler ;41, UART2 IRQ
  136. Handler
  137. 91 000000A8 00000000 DCD 0 ;42, Reserved
  138. 92 000000AC 00000000 DCD 0 ;43, Reserved
  139. 93 000000B0 00000000 DCD SPI1_IRQHandler ;44, SPI1 IRQHa
  140. ndler
  141. 94 000000B4 00000000 DCD I2C0_IRQHandler ;45, I2C0 IRQHa
  142. ndler
  143. 95 000000B8 00000000 DCD 0 ;46, Reserved
  144. 96 000000BC 00000000 DCD CCM_IRQHandler
  145. ;47, CCM IRQHandler
  146. 97 000000C0
  147. 98 000000C0 AREA |.text|, CODE, READONLY
  148. 99 00000000
  149. 100 00000000 ; Reset Handler
  150. 101 00000000
  151. 102 00000000 Reset_IRQHandler
  152. PROC
  153. 103 00000000 EXPORT Reset_IRQHandler [W
  154. EAK]
  155. 104 00000000 IMPORT __main
  156. 105 00000000 IMPORT SystemInit
  157. 106 00000000 4804 LDR R0, =SystemInit
  158. 107 00000002 4780 BLX R0
  159. 108 00000004 4804 LDR R0, =__main
  160. 109 00000006 4700 BX R0
  161. 110 00000008 ENDP
  162. 111 00000008
  163. 112 00000008 ; Dummy Exception IRQHandlers (infinite loops which can
  164. be modified)
  165. 113 00000008
  166. 114 00000008 NMI_IRQHandler
  167. PROC
  168. 115 00000008 EXPORT NMI_IRQHandler [W
  169. EAK]
  170. 116 00000008 E7FE B .
  171. 117 0000000A ENDP
  172. 118 0000000A HardFault_IRQHandler
  173. PROC
  174. 119 0000000A EXPORT HardFault_IRQHandler [W
  175. ARM Macro Assembler Page 4
  176. EAK]
  177. 120 0000000A E7FE B .
  178. 121 0000000C ENDP
  179. 122 0000000C SVC_IRQHandler
  180. PROC
  181. 123 0000000C EXPORT SVC_IRQHandler [W
  182. EAK]
  183. 124 0000000C E7FE B .
  184. 125 0000000E ENDP
  185. 126 0000000E PendSV_IRQHandler
  186. PROC
  187. 127 0000000E EXPORT PendSV_IRQHandler [W
  188. EAK]
  189. 128 0000000E E7FE B .
  190. 129 00000010 ENDP
  191. 130 00000010 SysTick_IRQHandler
  192. PROC
  193. 131 00000010 EXPORT SysTick_IRQHandler [W
  194. EAK]
  195. 132 00000010 E7FE B .
  196. 133 00000012 ENDP
  197. 134 00000012
  198. 135 00000012 Default_IRQHandler
  199. PROC
  200. 136 00000012 EXPORT PINT0_IRQHandler [WEAK]
  201. 137 00000012 EXPORT PINT1_IRQHandler [WEAK]
  202. 138 00000012 EXPORT PINT2_IRQHandler [WEAK]
  203. 139 00000012 EXPORT PINT3_IRQHandler [WEAK]
  204. 140 00000012 EXPORT PINT4_IRQHandler [WEAK]
  205. 141 00000012 EXPORT PINT5_IRQHandler [WEAK]
  206. 142 00000012 EXPORT PINT6_IRQHandler [WEAK]
  207. 143 00000012 EXPORT PINT7_IRQHandler [WEAK]
  208. 144 00000012 EXPORT T16N0_IRQHandler [WEAK]
  209. 145 00000012 EXPORT T16N1_IRQHandler [WEAK]
  210. 146 00000012 EXPORT T16N2_IRQHandler [WEAK]
  211. 147 00000012 EXPORT T16N3_IRQHandler [WEAK]
  212. 148 00000012 EXPORT T32N0_IRQHandler [WEAK]
  213. 149 00000012 EXPORT WWDT_IRQHandler [WEAK]
  214. 150 00000012 EXPORT IWDT_IRQHandler [WEAK]
  215. 151 00000012 EXPORT RTC_IRQHandler [WEAK]
  216. 152 00000012 EXPORT KINT_IRQHandler [WEAK]
  217. 153 00000012 EXPORT ADC_IRQHandler [WEAK]
  218. 154 00000012 EXPORT LVD_IRQHandler [WEAK]
  219. 155 00000012 EXPORT UART0_IRQHandler [WEAK]
  220. 156 00000012 EXPORT UART1_IRQHandler [WEAK]
  221. 157 00000012 EXPORT UART2_IRQHandler [WEAK]
  222. 158 00000012 EXPORT SPI1_IRQHandler [WEAK]
  223. 159 00000012 EXPORT I2C0_IRQHandler [WEAK]
  224. 160 00000012 EXPORT CCM_IRQHandler [WEAK]
  225. 161 00000012
  226. 162 00000012 PINT0_IRQHandler
  227. 163 00000012 PINT1_IRQHandler
  228. 164 00000012 PINT2_IRQHandler
  229. 165 00000012 PINT3_IRQHandler
  230. 166 00000012 PINT4_IRQHandler
  231. 167 00000012 PINT5_IRQHandler
  232. 168 00000012 PINT6_IRQHandler
  233. 169 00000012 PINT7_IRQHandler
  234. 170 00000012 T16N0_IRQHandler
  235. ARM Macro Assembler Page 5
  236. 171 00000012 T16N1_IRQHandler
  237. 172 00000012 T16N2_IRQHandler
  238. 173 00000012 T16N3_IRQHandler
  239. 174 00000012 T32N0_IRQHandler
  240. 175 00000012 WWDT_IRQHandler
  241. 176 00000012 IWDT_IRQHandler
  242. 177 00000012 RTC_IRQHandler
  243. 178 00000012 KINT_IRQHandler
  244. 179 00000012 ADC_IRQHandler
  245. 180 00000012 LVD_IRQHandler
  246. 181 00000012 UART0_IRQHandler
  247. 182 00000012 UART1_IRQHandler
  248. 183 00000012 UART2_IRQHandler
  249. 184 00000012 SPI1_IRQHandler
  250. 185 00000012 I2C0_IRQHandler
  251. 186 00000012 CCM_IRQHandler
  252. 187 00000012
  253. 188 00000012 E7FE B .
  254. 189 00000014
  255. 190 00000014 ENDP
  256. 191 00000014
  257. 192 00000014 ALIGN
  258. 193 00000014
  259. 194 00000014 ; User Initial Stack & Heap
  260. 195 00000014
  261. 196 00000014 IF :DEF:__MICROLIB
  262. 197 00000014
  263. 198 00000014 EXPORT __initial_sp
  264. 199 00000014 EXPORT __heap_base
  265. 200 00000014 EXPORT __heap_limit
  266. 201 00000014
  267. 202 00000014 ELSE
  268. 216 ENDIF
  269. 217 00000014
  270. 218 00000014 END
  271. 00000000
  272. 00000000
  273. Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
  274. ork --depend=.\objects\startup_es8p5066.d -o.\objects\startup_es8p5066.o -IC:\K
  275. eil_v5\ARM\RV31\INC -IC:\Keil_v5\ARM\CMSIS\Include -IC:\Keil_v5\ARM\INC\HR --pr
  276. edefine="__MICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 527" --list=.\l
  277. istings\startup_es8p5066.lst ..\MDK_StartUp\startup_ES8P5066.s
  278. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  279. Relocatable symbols
  280. STACK 00000000
  281. Symbol: STACK
  282. Definitions
  283. At line 23 in file ..\MDK_StartUp\startup_ES8P5066.s
  284. Uses
  285. None
  286. Comment: STACK unused
  287. Stack_Mem 00000000
  288. Symbol: Stack_Mem
  289. Definitions
  290. At line 24 in file ..\MDK_StartUp\startup_ES8P5066.s
  291. Uses
  292. None
  293. Comment: Stack_Mem unused
  294. __initial_sp 00000400
  295. Symbol: __initial_sp
  296. Definitions
  297. At line 25 in file ..\MDK_StartUp\startup_ES8P5066.s
  298. Uses
  299. At line 47 in file ..\MDK_StartUp\startup_ES8P5066.s
  300. At line 198 in file ..\MDK_StartUp\startup_ES8P5066.s
  301. 3 symbols
  302. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  303. Relocatable symbols
  304. HEAP 00000000
  305. Symbol: HEAP
  306. Definitions
  307. At line 34 in file ..\MDK_StartUp\startup_ES8P5066.s
  308. Uses
  309. None
  310. Comment: HEAP unused
  311. Heap_Mem 00000000
  312. Symbol: Heap_Mem
  313. Definitions
  314. At line 36 in file ..\MDK_StartUp\startup_ES8P5066.s
  315. Uses
  316. None
  317. Comment: Heap_Mem unused
  318. __heap_base 00000000
  319. Symbol: __heap_base
  320. Definitions
  321. At line 35 in file ..\MDK_StartUp\startup_ES8P5066.s
  322. Uses
  323. At line 199 in file ..\MDK_StartUp\startup_ES8P5066.s
  324. Comment: __heap_base used once
  325. __heap_limit 00000000
  326. Symbol: __heap_limit
  327. Definitions
  328. At line 37 in file ..\MDK_StartUp\startup_ES8P5066.s
  329. Uses
  330. At line 200 in file ..\MDK_StartUp\startup_ES8P5066.s
  331. Comment: __heap_limit used once
  332. 4 symbols
  333. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  334. Relocatable symbols
  335. RESET 00000000
  336. Symbol: RESET
  337. Definitions
  338. At line 44 in file ..\MDK_StartUp\startup_ES8P5066.s
  339. Uses
  340. None
  341. Comment: RESET unused
  342. __Vectors 00000000
  343. Symbol: __Vectors
  344. Definitions
  345. At line 47 in file ..\MDK_StartUp\startup_ES8P5066.s
  346. Uses
  347. At line 45 in file ..\MDK_StartUp\startup_ES8P5066.s
  348. Comment: __Vectors used once
  349. 2 symbols
  350. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  351. Relocatable symbols
  352. .text 00000000
  353. Symbol: .text
  354. Definitions
  355. At line 98 in file ..\MDK_StartUp\startup_ES8P5066.s
  356. Uses
  357. None
  358. Comment: .text unused
  359. ADC_IRQHandler 00000012
  360. Symbol: ADC_IRQHandler
  361. Definitions
  362. At line 179 in file ..\MDK_StartUp\startup_ES8P5066.s
  363. Uses
  364. At line 84 in file ..\MDK_StartUp\startup_ES8P5066.s
  365. At line 153 in file ..\MDK_StartUp\startup_ES8P5066.s
  366. CCM_IRQHandler 00000012
  367. Symbol: CCM_IRQHandler
  368. Definitions
  369. At line 186 in file ..\MDK_StartUp\startup_ES8P5066.s
  370. Uses
  371. At line 96 in file ..\MDK_StartUp\startup_ES8P5066.s
  372. At line 160 in file ..\MDK_StartUp\startup_ES8P5066.s
  373. Default_IRQHandler 00000012
  374. Symbol: Default_IRQHandler
  375. Definitions
  376. At line 135 in file ..\MDK_StartUp\startup_ES8P5066.s
  377. Uses
  378. None
  379. Comment: Default_IRQHandler unused
  380. HardFault_IRQHandler 0000000A
  381. Symbol: HardFault_IRQHandler
  382. Definitions
  383. At line 118 in file ..\MDK_StartUp\startup_ES8P5066.s
  384. Uses
  385. At line 50 in file ..\MDK_StartUp\startup_ES8P5066.s
  386. At line 119 in file ..\MDK_StartUp\startup_ES8P5066.s
  387. I2C0_IRQHandler 00000012
  388. Symbol: I2C0_IRQHandler
  389. Definitions
  390. At line 185 in file ..\MDK_StartUp\startup_ES8P5066.s
  391. Uses
  392. At line 94 in file ..\MDK_StartUp\startup_ES8P5066.s
  393. At line 159 in file ..\MDK_StartUp\startup_ES8P5066.s
  394. IWDT_IRQHandler 00000012
  395. Symbol: IWDT_IRQHandler
  396. Definitions
  397. At line 176 in file ..\MDK_StartUp\startup_ES8P5066.s
  398. Uses
  399. At line 81 in file ..\MDK_StartUp\startup_ES8P5066.s
  400. ARM Macro Assembler Page 2 Alphabetic symbol ordering
  401. Relocatable symbols
  402. At line 150 in file ..\MDK_StartUp\startup_ES8P5066.s
  403. KINT_IRQHandler 00000012
  404. Symbol: KINT_IRQHandler
  405. Definitions
  406. At line 178 in file ..\MDK_StartUp\startup_ES8P5066.s
  407. Uses
  408. At line 83 in file ..\MDK_StartUp\startup_ES8P5066.s
  409. At line 152 in file ..\MDK_StartUp\startup_ES8P5066.s
  410. LVD_IRQHandler 00000012
  411. Symbol: LVD_IRQHandler
  412. Definitions
  413. At line 180 in file ..\MDK_StartUp\startup_ES8P5066.s
  414. Uses
  415. At line 86 in file ..\MDK_StartUp\startup_ES8P5066.s
  416. At line 154 in file ..\MDK_StartUp\startup_ES8P5066.s
  417. NMI_IRQHandler 00000008
  418. Symbol: NMI_IRQHandler
  419. Definitions
  420. At line 114 in file ..\MDK_StartUp\startup_ES8P5066.s
  421. Uses
  422. At line 49 in file ..\MDK_StartUp\startup_ES8P5066.s
  423. At line 115 in file ..\MDK_StartUp\startup_ES8P5066.s
  424. PINT0_IRQHandler 00000012
  425. Symbol: PINT0_IRQHandler
  426. Definitions
  427. At line 162 in file ..\MDK_StartUp\startup_ES8P5066.s
  428. Uses
  429. At line 65 in file ..\MDK_StartUp\startup_ES8P5066.s
  430. At line 136 in file ..\MDK_StartUp\startup_ES8P5066.s
  431. PINT1_IRQHandler 00000012
  432. Symbol: PINT1_IRQHandler
  433. Definitions
  434. At line 163 in file ..\MDK_StartUp\startup_ES8P5066.s
  435. Uses
  436. At line 66 in file ..\MDK_StartUp\startup_ES8P5066.s
  437. At line 137 in file ..\MDK_StartUp\startup_ES8P5066.s
  438. PINT2_IRQHandler 00000012
  439. Symbol: PINT2_IRQHandler
  440. Definitions
  441. At line 164 in file ..\MDK_StartUp\startup_ES8P5066.s
  442. Uses
  443. At line 67 in file ..\MDK_StartUp\startup_ES8P5066.s
  444. At line 138 in file ..\MDK_StartUp\startup_ES8P5066.s
  445. PINT3_IRQHandler 00000012
  446. Symbol: PINT3_IRQHandler
  447. ARM Macro Assembler Page 3 Alphabetic symbol ordering
  448. Relocatable symbols
  449. Definitions
  450. At line 165 in file ..\MDK_StartUp\startup_ES8P5066.s
  451. Uses
  452. At line 68 in file ..\MDK_StartUp\startup_ES8P5066.s
  453. At line 139 in file ..\MDK_StartUp\startup_ES8P5066.s
  454. PINT4_IRQHandler 00000012
  455. Symbol: PINT4_IRQHandler
  456. Definitions
  457. At line 166 in file ..\MDK_StartUp\startup_ES8P5066.s
  458. Uses
  459. At line 69 in file ..\MDK_StartUp\startup_ES8P5066.s
  460. At line 140 in file ..\MDK_StartUp\startup_ES8P5066.s
  461. PINT5_IRQHandler 00000012
  462. Symbol: PINT5_IRQHandler
  463. Definitions
  464. At line 167 in file ..\MDK_StartUp\startup_ES8P5066.s
  465. Uses
  466. At line 70 in file ..\MDK_StartUp\startup_ES8P5066.s
  467. At line 141 in file ..\MDK_StartUp\startup_ES8P5066.s
  468. PINT6_IRQHandler 00000012
  469. Symbol: PINT6_IRQHandler
  470. Definitions
  471. At line 168 in file ..\MDK_StartUp\startup_ES8P5066.s
  472. Uses
  473. At line 71 in file ..\MDK_StartUp\startup_ES8P5066.s
  474. At line 142 in file ..\MDK_StartUp\startup_ES8P5066.s
  475. PINT7_IRQHandler 00000012
  476. Symbol: PINT7_IRQHandler
  477. Definitions
  478. At line 169 in file ..\MDK_StartUp\startup_ES8P5066.s
  479. Uses
  480. At line 72 in file ..\MDK_StartUp\startup_ES8P5066.s
  481. At line 143 in file ..\MDK_StartUp\startup_ES8P5066.s
  482. PendSV_IRQHandler 0000000E
  483. Symbol: PendSV_IRQHandler
  484. Definitions
  485. At line 126 in file ..\MDK_StartUp\startup_ES8P5066.s
  486. Uses
  487. At line 61 in file ..\MDK_StartUp\startup_ES8P5066.s
  488. At line 127 in file ..\MDK_StartUp\startup_ES8P5066.s
  489. RTC_IRQHandler 00000012
  490. Symbol: RTC_IRQHandler
  491. Definitions
  492. At line 177 in file ..\MDK_StartUp\startup_ES8P5066.s
  493. Uses
  494. At line 151 in file ..\MDK_StartUp\startup_ES8P5066.s
  495. Comment: RTC_IRQHandler used once
  496. ARM Macro Assembler Page 4 Alphabetic symbol ordering
  497. Relocatable symbols
  498. Reset_IRQHandler 00000000
  499. Symbol: Reset_IRQHandler
  500. Definitions
  501. At line 102 in file ..\MDK_StartUp\startup_ES8P5066.s
  502. Uses
  503. At line 48 in file ..\MDK_StartUp\startup_ES8P5066.s
  504. At line 103 in file ..\MDK_StartUp\startup_ES8P5066.s
  505. SPI1_IRQHandler 00000012
  506. Symbol: SPI1_IRQHandler
  507. Definitions
  508. At line 184 in file ..\MDK_StartUp\startup_ES8P5066.s
  509. Uses
  510. At line 93 in file ..\MDK_StartUp\startup_ES8P5066.s
  511. At line 158 in file ..\MDK_StartUp\startup_ES8P5066.s
  512. SVC_IRQHandler 0000000C
  513. Symbol: SVC_IRQHandler
  514. Definitions
  515. At line 122 in file ..\MDK_StartUp\startup_ES8P5066.s
  516. Uses
  517. At line 58 in file ..\MDK_StartUp\startup_ES8P5066.s
  518. At line 123 in file ..\MDK_StartUp\startup_ES8P5066.s
  519. SysTick_IRQHandler 00000010
  520. Symbol: SysTick_IRQHandler
  521. Definitions
  522. At line 130 in file ..\MDK_StartUp\startup_ES8P5066.s
  523. Uses
  524. At line 62 in file ..\MDK_StartUp\startup_ES8P5066.s
  525. At line 131 in file ..\MDK_StartUp\startup_ES8P5066.s
  526. T16N0_IRQHandler 00000012
  527. Symbol: T16N0_IRQHandler
  528. Definitions
  529. At line 170 in file ..\MDK_StartUp\startup_ES8P5066.s
  530. Uses
  531. At line 73 in file ..\MDK_StartUp\startup_ES8P5066.s
  532. At line 144 in file ..\MDK_StartUp\startup_ES8P5066.s
  533. T16N1_IRQHandler 00000012
  534. Symbol: T16N1_IRQHandler
  535. Definitions
  536. At line 171 in file ..\MDK_StartUp\startup_ES8P5066.s
  537. Uses
  538. At line 74 in file ..\MDK_StartUp\startup_ES8P5066.s
  539. At line 145 in file ..\MDK_StartUp\startup_ES8P5066.s
  540. T16N2_IRQHandler 00000012
  541. Symbol: T16N2_IRQHandler
  542. Definitions
  543. At line 172 in file ..\MDK_StartUp\startup_ES8P5066.s
  544. ARM Macro Assembler Page 5 Alphabetic symbol ordering
  545. Relocatable symbols
  546. Uses
  547. At line 75 in file ..\MDK_StartUp\startup_ES8P5066.s
  548. At line 146 in file ..\MDK_StartUp\startup_ES8P5066.s
  549. T16N3_IRQHandler 00000012
  550. Symbol: T16N3_IRQHandler
  551. Definitions
  552. At line 173 in file ..\MDK_StartUp\startup_ES8P5066.s
  553. Uses
  554. At line 76 in file ..\MDK_StartUp\startup_ES8P5066.s
  555. At line 147 in file ..\MDK_StartUp\startup_ES8P5066.s
  556. T32N0_IRQHandler 00000012
  557. Symbol: T32N0_IRQHandler
  558. Definitions
  559. At line 174 in file ..\MDK_StartUp\startup_ES8P5066.s
  560. Uses
  561. At line 77 in file ..\MDK_StartUp\startup_ES8P5066.s
  562. At line 148 in file ..\MDK_StartUp\startup_ES8P5066.s
  563. UART0_IRQHandler 00000012
  564. Symbol: UART0_IRQHandler
  565. Definitions
  566. At line 181 in file ..\MDK_StartUp\startup_ES8P5066.s
  567. Uses
  568. At line 88 in file ..\MDK_StartUp\startup_ES8P5066.s
  569. At line 155 in file ..\MDK_StartUp\startup_ES8P5066.s
  570. UART1_IRQHandler 00000012
  571. Symbol: UART1_IRQHandler
  572. Definitions
  573. At line 182 in file ..\MDK_StartUp\startup_ES8P5066.s
  574. Uses
  575. At line 89 in file ..\MDK_StartUp\startup_ES8P5066.s
  576. At line 156 in file ..\MDK_StartUp\startup_ES8P5066.s
  577. UART2_IRQHandler 00000012
  578. Symbol: UART2_IRQHandler
  579. Definitions
  580. At line 183 in file ..\MDK_StartUp\startup_ES8P5066.s
  581. Uses
  582. At line 90 in file ..\MDK_StartUp\startup_ES8P5066.s
  583. At line 157 in file ..\MDK_StartUp\startup_ES8P5066.s
  584. WWDT_IRQHandler 00000012
  585. Symbol: WWDT_IRQHandler
  586. Definitions
  587. At line 175 in file ..\MDK_StartUp\startup_ES8P5066.s
  588. Uses
  589. At line 80 in file ..\MDK_StartUp\startup_ES8P5066.s
  590. At line 149 in file ..\MDK_StartUp\startup_ES8P5066.s
  591. 33 symbols
  592. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  593. Absolute symbols
  594. Heap_Size 00000000
  595. Symbol: Heap_Size
  596. Definitions
  597. At line 32 in file ..\MDK_StartUp\startup_ES8P5066.s
  598. Uses
  599. At line 36 in file ..\MDK_StartUp\startup_ES8P5066.s
  600. Comment: Heap_Size used once
  601. Stack_Size 00000400
  602. Symbol: Stack_Size
  603. Definitions
  604. At line 21 in file ..\MDK_StartUp\startup_ES8P5066.s
  605. Uses
  606. At line 24 in file ..\MDK_StartUp\startup_ES8P5066.s
  607. Comment: Stack_Size used once
  608. 2 symbols
  609. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  610. External symbols
  611. SystemInit 00000000
  612. Symbol: SystemInit
  613. Definitions
  614. At line 105 in file ..\MDK_StartUp\startup_ES8P5066.s
  615. Uses
  616. At line 106 in file ..\MDK_StartUp\startup_ES8P5066.s
  617. Comment: SystemInit used once
  618. __main 00000000
  619. Symbol: __main
  620. Definitions
  621. At line 104 in file ..\MDK_StartUp\startup_ES8P5066.s
  622. Uses
  623. At line 108 in file ..\MDK_StartUp\startup_ES8P5066.s
  624. Comment: __main used once
  625. 2 symbols
  626. 380 symbols in table