ARM Macro Assembler Page 1 1 00000000 ;******************************************************* ************************ 2 00000000 3 00000000 ; *author : Eastsoft MCU Software Team 4 00000000 ; *version : V0.01 5 00000000 ; *data : 5/28/2021 6 00000000 ; 7 00000000 ; *Copyright (C) 2021 Shanghai Eastsoft Microelectronics Co., Ltd. 8 00000000 ; * 9 00000000 ; * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, W HETHER EXPRESS, IMPLIED 10 00000000 ; * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF 11 00000000 ; * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. 12 00000000 ; * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR S PECIAL, INCIDENTAL, OR 13 00000000 ; * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. 14 00000000 ;******************************************************* ************************ 15 00000000 16 00000000 17 00000000 ; Stack Configuration 18 00000000 ; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> 19 00000000 ; 20 00000000 21 00000000 00000400 Stack_Size EQU 0x00000400 22 00000000 23 00000000 AREA STACK, NOINIT, READWRITE, ALIGN =3 24 00000000 Stack_Mem SPACE Stack_Size 25 00000400 __initial_sp 26 00000400 27 00000400 28 00000400 ; Heap Configuration 29 00000400 ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> 30 00000400 ; 31 00000400 32 00000400 00000000 Heap_Size EQU 0x00000000 33 00000400 34 00000400 AREA HEAP, NOINIT, READWRITE, ALIGN= 3 35 00000000 __heap_base 36 00000000 Heap_Mem SPACE Heap_Size 37 00000000 __heap_limit 38 00000000 39 00000000 PRESERVE8 40 00000000 THUMB 41 00000000 42 00000000 ; Vector Table Mapped to Address 0 at Reset 43 00000000 44 00000000 AREA RESET, DATA, READONLY ARM Macro Assembler Page 2 45 00000000 EXPORT __Vectors 46 00000000 47 00000000 00000000 __Vectors DCD __initial_sp ;0, Top of Stack 48 00000004 00000000 DCD Reset_IRQHandler ;1, Reset Handler 49 00000008 00000000 DCD NMI_IRQHandler ;2, NMI Handler 50 0000000C 00000000 DCD HardFault_IRQHandler ;3, HardF ault Handler 51 00000010 00000000 DCD 0 ;4, Reserved 52 00000014 00000000 DCD 0 ;5, Reserved 53 00000018 00000000 DCD 0 ;6, Reserved 54 0000001C 00000000 DCD 0 ;7, Reserved 55 00000020 00000000 DCD 0 ;8, Reserved 56 00000024 00000000 DCD 0 ;9, Reserved 57 00000028 00000000 DCD 0 ;10, Reserved 58 0000002C 00000000 DCD SVC_IRQHandler ;11, SVCall Handler 59 00000030 00000000 DCD 0 ;12, Reserved 60 00000034 00000000 DCD 0 ;13, Reserved 61 00000038 00000000 DCD PendSV_IRQHandler ;14, PendSV Handler 62 0000003C 00000000 DCD SysTick_IRQHandler ;15, SysTick Handler 63 00000040 64 00000040 ; External Interrupts 65 00000040 00000000 DCD PINT0_IRQHandler ;16, PINT0 IRQ Handler 66 00000044 00000000 DCD PINT1_IRQHandler ;17, PINT1 IRQ Handler 67 00000048 00000000 DCD PINT2_IRQHandler ;18, PINT2 IRQ Handler 68 0000004C 00000000 DCD PINT3_IRQHandler ;19, PINT3 IRQ Handler 69 00000050 00000000 DCD PINT4_IRQHandler ;20, PINT4 IRQ Handler 70 00000054 00000000 DCD PINT5_IRQHandler ;21, PINT5 IRQ Handler 71 00000058 00000000 DCD PINT6_IRQHandler ;22, PINT6 IRQ Handler 72 0000005C 00000000 DCD PINT7_IRQHandler ;23, PINT7 IRQ Handler 73 00000060 00000000 DCD T16N0_IRQHandler ;24, T16N0 IRQ Handler 74 00000064 00000000 DCD T16N1_IRQHandler ;25, T16N1 IRQ Handler 75 00000068 00000000 DCD T16N2_IRQHandler ;26, T16N2 IRQ Handler 76 0000006C 00000000 DCD T16N3_IRQHandler ;27, T16N3 IRQ Handler 77 00000070 00000000 DCD T32N0_IRQHandler ;28, T32N0 IRQ Handler 78 00000074 00000000 DCD 0 ;29, Reserved 79 00000078 00000000 DCD 0 ;30, Reserved 80 0000007C 00000000 DCD WWDT_IRQHandler ;31, WWDT IRQHa ARM Macro Assembler Page 3 ndler 81 00000080 00000000 DCD IWDT_IRQHandler ;32, IWDT IRQHa ndler 82 00000084 00000000 DCD 0 ;33, Reserved 83 00000088 00000000 DCD KINT_IRQHandler ;34, KINT IRQHa ndler 84 0000008C 00000000 DCD ADC_IRQHandler ;35, ADC IRQHandler 85 00000090 00000000 DCD 0 ;36, Reserved 86 00000094 00000000 DCD LVD_IRQHandler ;37, LVD IRQHandler 87 00000098 00000000 DCD 0 ;38, Reserved 88 0000009C 00000000 DCD UART0_IRQHandler ;39, UART0 IRQ Handler 89 000000A0 00000000 DCD UART1_IRQHandler ;40, UART1 IRQ Handler 90 000000A4 00000000 DCD UART2_IRQHandler ;41, UART2 IRQ Handler 91 000000A8 00000000 DCD 0 ;42, Reserved 92 000000AC 00000000 DCD 0 ;43, Reserved 93 000000B0 00000000 DCD SPI1_IRQHandler ;44, SPI1 IRQHa ndler 94 000000B4 00000000 DCD I2C0_IRQHandler ;45, I2C0 IRQHa ndler 95 000000B8 00000000 DCD 0 ;46, Reserved 96 000000BC 00000000 DCD CCM_IRQHandler ;47, CCM IRQHandler 97 000000C0 98 000000C0 AREA |.text|, CODE, READONLY 99 00000000 100 00000000 ; Reset Handler 101 00000000 102 00000000 Reset_IRQHandler PROC 103 00000000 EXPORT Reset_IRQHandler [W EAK] 104 00000000 IMPORT __main 105 00000000 IMPORT SystemInit 106 00000000 4804 LDR R0, =SystemInit 107 00000002 4780 BLX R0 108 00000004 4804 LDR R0, =__main 109 00000006 4700 BX R0 110 00000008 ENDP 111 00000008 112 00000008 ; Dummy Exception IRQHandlers (infinite loops which can be modified) 113 00000008 114 00000008 NMI_IRQHandler PROC 115 00000008 EXPORT NMI_IRQHandler [W EAK] 116 00000008 E7FE B . 117 0000000A ENDP 118 0000000A HardFault_IRQHandler PROC 119 0000000A EXPORT HardFault_IRQHandler [W ARM Macro Assembler Page 4 EAK] 120 0000000A E7FE B . 121 0000000C ENDP 122 0000000C SVC_IRQHandler PROC 123 0000000C EXPORT SVC_IRQHandler [W EAK] 124 0000000C E7FE B . 125 0000000E ENDP 126 0000000E PendSV_IRQHandler PROC 127 0000000E EXPORT PendSV_IRQHandler [W EAK] 128 0000000E E7FE B . 129 00000010 ENDP 130 00000010 SysTick_IRQHandler PROC 131 00000010 EXPORT SysTick_IRQHandler [W EAK] 132 00000010 E7FE B . 133 00000012 ENDP 134 00000012 135 00000012 Default_IRQHandler PROC 136 00000012 EXPORT PINT0_IRQHandler [WEAK] 137 00000012 EXPORT PINT1_IRQHandler [WEAK] 138 00000012 EXPORT PINT2_IRQHandler [WEAK] 139 00000012 EXPORT PINT3_IRQHandler [WEAK] 140 00000012 EXPORT PINT4_IRQHandler [WEAK] 141 00000012 EXPORT PINT5_IRQHandler [WEAK] 142 00000012 EXPORT PINT6_IRQHandler [WEAK] 143 00000012 EXPORT PINT7_IRQHandler [WEAK] 144 00000012 EXPORT T16N0_IRQHandler [WEAK] 145 00000012 EXPORT T16N1_IRQHandler [WEAK] 146 00000012 EXPORT T16N2_IRQHandler [WEAK] 147 00000012 EXPORT T16N3_IRQHandler [WEAK] 148 00000012 EXPORT T32N0_IRQHandler [WEAK] 149 00000012 EXPORT WWDT_IRQHandler [WEAK] 150 00000012 EXPORT IWDT_IRQHandler [WEAK] 151 00000012 EXPORT RTC_IRQHandler [WEAK] 152 00000012 EXPORT KINT_IRQHandler [WEAK] 153 00000012 EXPORT ADC_IRQHandler [WEAK] 154 00000012 EXPORT LVD_IRQHandler [WEAK] 155 00000012 EXPORT UART0_IRQHandler [WEAK] 156 00000012 EXPORT UART1_IRQHandler [WEAK] 157 00000012 EXPORT UART2_IRQHandler [WEAK] 158 00000012 EXPORT SPI1_IRQHandler [WEAK] 159 00000012 EXPORT I2C0_IRQHandler [WEAK] 160 00000012 EXPORT CCM_IRQHandler [WEAK] 161 00000012 162 00000012 PINT0_IRQHandler 163 00000012 PINT1_IRQHandler 164 00000012 PINT2_IRQHandler 165 00000012 PINT3_IRQHandler 166 00000012 PINT4_IRQHandler 167 00000012 PINT5_IRQHandler 168 00000012 PINT6_IRQHandler 169 00000012 PINT7_IRQHandler 170 00000012 T16N0_IRQHandler ARM Macro Assembler Page 5 171 00000012 T16N1_IRQHandler 172 00000012 T16N2_IRQHandler 173 00000012 T16N3_IRQHandler 174 00000012 T32N0_IRQHandler 175 00000012 WWDT_IRQHandler 176 00000012 IWDT_IRQHandler 177 00000012 RTC_IRQHandler 178 00000012 KINT_IRQHandler 179 00000012 ADC_IRQHandler 180 00000012 LVD_IRQHandler 181 00000012 UART0_IRQHandler 182 00000012 UART1_IRQHandler 183 00000012 UART2_IRQHandler 184 00000012 SPI1_IRQHandler 185 00000012 I2C0_IRQHandler 186 00000012 CCM_IRQHandler 187 00000012 188 00000012 E7FE B . 189 00000014 190 00000014 ENDP 191 00000014 192 00000014 ALIGN 193 00000014 194 00000014 ; User Initial Stack & Heap 195 00000014 196 00000014 IF :DEF:__MICROLIB 197 00000014 198 00000014 EXPORT __initial_sp 199 00000014 EXPORT __heap_base 200 00000014 EXPORT __heap_limit 201 00000014 202 00000014 ELSE 216 ENDIF 217 00000014 218 00000014 END 00000000 00000000 Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw ork --depend=.\objects\startup_es8p5066.d -o.\objects\startup_es8p5066.o -IC:\K eil_v5\ARM\RV31\INC -IC:\Keil_v5\ARM\CMSIS\Include -IC:\Keil_v5\ARM\INC\HR --pr edefine="__MICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 527" --list=.\l istings\startup_es8p5066.lst ..\MDK_StartUp\startup_ES8P5066.s ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols STACK 00000000 Symbol: STACK Definitions At line 23 in file ..\MDK_StartUp\startup_ES8P5066.s Uses None Comment: STACK unused Stack_Mem 00000000 Symbol: Stack_Mem Definitions At line 24 in file ..\MDK_StartUp\startup_ES8P5066.s Uses None Comment: Stack_Mem unused __initial_sp 00000400 Symbol: __initial_sp Definitions At line 25 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 47 in file ..\MDK_StartUp\startup_ES8P5066.s At line 198 in file ..\MDK_StartUp\startup_ES8P5066.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols HEAP 00000000 Symbol: HEAP Definitions At line 34 in file ..\MDK_StartUp\startup_ES8P5066.s Uses None Comment: HEAP unused Heap_Mem 00000000 Symbol: Heap_Mem Definitions At line 36 in file ..\MDK_StartUp\startup_ES8P5066.s Uses None Comment: Heap_Mem unused __heap_base 00000000 Symbol: __heap_base Definitions At line 35 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 199 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: __heap_base used once __heap_limit 00000000 Symbol: __heap_limit Definitions At line 37 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 200 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: __heap_limit used once 4 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols RESET 00000000 Symbol: RESET Definitions At line 44 in file ..\MDK_StartUp\startup_ES8P5066.s Uses None Comment: RESET unused __Vectors 00000000 Symbol: __Vectors Definitions At line 47 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 45 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: __Vectors used once 2 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols .text 00000000 Symbol: .text Definitions At line 98 in file ..\MDK_StartUp\startup_ES8P5066.s Uses None Comment: .text unused ADC_IRQHandler 00000012 Symbol: ADC_IRQHandler Definitions At line 179 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 84 in file ..\MDK_StartUp\startup_ES8P5066.s At line 153 in file ..\MDK_StartUp\startup_ES8P5066.s CCM_IRQHandler 00000012 Symbol: CCM_IRQHandler Definitions At line 186 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 96 in file ..\MDK_StartUp\startup_ES8P5066.s At line 160 in file ..\MDK_StartUp\startup_ES8P5066.s Default_IRQHandler 00000012 Symbol: Default_IRQHandler Definitions At line 135 in file ..\MDK_StartUp\startup_ES8P5066.s Uses None Comment: Default_IRQHandler unused HardFault_IRQHandler 0000000A Symbol: HardFault_IRQHandler Definitions At line 118 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 50 in file ..\MDK_StartUp\startup_ES8P5066.s At line 119 in file ..\MDK_StartUp\startup_ES8P5066.s I2C0_IRQHandler 00000012 Symbol: I2C0_IRQHandler Definitions At line 185 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 94 in file ..\MDK_StartUp\startup_ES8P5066.s At line 159 in file ..\MDK_StartUp\startup_ES8P5066.s IWDT_IRQHandler 00000012 Symbol: IWDT_IRQHandler Definitions At line 176 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 81 in file ..\MDK_StartUp\startup_ES8P5066.s ARM Macro Assembler Page 2 Alphabetic symbol ordering Relocatable symbols At line 150 in file ..\MDK_StartUp\startup_ES8P5066.s KINT_IRQHandler 00000012 Symbol: KINT_IRQHandler Definitions At line 178 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 83 in file ..\MDK_StartUp\startup_ES8P5066.s At line 152 in file ..\MDK_StartUp\startup_ES8P5066.s LVD_IRQHandler 00000012 Symbol: LVD_IRQHandler Definitions At line 180 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 86 in file ..\MDK_StartUp\startup_ES8P5066.s At line 154 in file ..\MDK_StartUp\startup_ES8P5066.s NMI_IRQHandler 00000008 Symbol: NMI_IRQHandler Definitions At line 114 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 49 in file ..\MDK_StartUp\startup_ES8P5066.s At line 115 in file ..\MDK_StartUp\startup_ES8P5066.s PINT0_IRQHandler 00000012 Symbol: PINT0_IRQHandler Definitions At line 162 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 65 in file ..\MDK_StartUp\startup_ES8P5066.s At line 136 in file ..\MDK_StartUp\startup_ES8P5066.s PINT1_IRQHandler 00000012 Symbol: PINT1_IRQHandler Definitions At line 163 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 66 in file ..\MDK_StartUp\startup_ES8P5066.s At line 137 in file ..\MDK_StartUp\startup_ES8P5066.s PINT2_IRQHandler 00000012 Symbol: PINT2_IRQHandler Definitions At line 164 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 67 in file ..\MDK_StartUp\startup_ES8P5066.s At line 138 in file ..\MDK_StartUp\startup_ES8P5066.s PINT3_IRQHandler 00000012 Symbol: PINT3_IRQHandler ARM Macro Assembler Page 3 Alphabetic symbol ordering Relocatable symbols Definitions At line 165 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 68 in file ..\MDK_StartUp\startup_ES8P5066.s At line 139 in file ..\MDK_StartUp\startup_ES8P5066.s PINT4_IRQHandler 00000012 Symbol: PINT4_IRQHandler Definitions At line 166 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 69 in file ..\MDK_StartUp\startup_ES8P5066.s At line 140 in file ..\MDK_StartUp\startup_ES8P5066.s PINT5_IRQHandler 00000012 Symbol: PINT5_IRQHandler Definitions At line 167 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 70 in file ..\MDK_StartUp\startup_ES8P5066.s At line 141 in file ..\MDK_StartUp\startup_ES8P5066.s PINT6_IRQHandler 00000012 Symbol: PINT6_IRQHandler Definitions At line 168 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 71 in file ..\MDK_StartUp\startup_ES8P5066.s At line 142 in file ..\MDK_StartUp\startup_ES8P5066.s PINT7_IRQHandler 00000012 Symbol: PINT7_IRQHandler Definitions At line 169 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 72 in file ..\MDK_StartUp\startup_ES8P5066.s At line 143 in file ..\MDK_StartUp\startup_ES8P5066.s PendSV_IRQHandler 0000000E Symbol: PendSV_IRQHandler Definitions At line 126 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 61 in file ..\MDK_StartUp\startup_ES8P5066.s At line 127 in file ..\MDK_StartUp\startup_ES8P5066.s RTC_IRQHandler 00000012 Symbol: RTC_IRQHandler Definitions At line 177 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 151 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: RTC_IRQHandler used once ARM Macro Assembler Page 4 Alphabetic symbol ordering Relocatable symbols Reset_IRQHandler 00000000 Symbol: Reset_IRQHandler Definitions At line 102 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 48 in file ..\MDK_StartUp\startup_ES8P5066.s At line 103 in file ..\MDK_StartUp\startup_ES8P5066.s SPI1_IRQHandler 00000012 Symbol: SPI1_IRQHandler Definitions At line 184 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 93 in file ..\MDK_StartUp\startup_ES8P5066.s At line 158 in file ..\MDK_StartUp\startup_ES8P5066.s SVC_IRQHandler 0000000C Symbol: SVC_IRQHandler Definitions At line 122 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 58 in file ..\MDK_StartUp\startup_ES8P5066.s At line 123 in file ..\MDK_StartUp\startup_ES8P5066.s SysTick_IRQHandler 00000010 Symbol: SysTick_IRQHandler Definitions At line 130 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 62 in file ..\MDK_StartUp\startup_ES8P5066.s At line 131 in file ..\MDK_StartUp\startup_ES8P5066.s T16N0_IRQHandler 00000012 Symbol: T16N0_IRQHandler Definitions At line 170 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 73 in file ..\MDK_StartUp\startup_ES8P5066.s At line 144 in file ..\MDK_StartUp\startup_ES8P5066.s T16N1_IRQHandler 00000012 Symbol: T16N1_IRQHandler Definitions At line 171 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 74 in file ..\MDK_StartUp\startup_ES8P5066.s At line 145 in file ..\MDK_StartUp\startup_ES8P5066.s T16N2_IRQHandler 00000012 Symbol: T16N2_IRQHandler Definitions At line 172 in file ..\MDK_StartUp\startup_ES8P5066.s ARM Macro Assembler Page 5 Alphabetic symbol ordering Relocatable symbols Uses At line 75 in file ..\MDK_StartUp\startup_ES8P5066.s At line 146 in file ..\MDK_StartUp\startup_ES8P5066.s T16N3_IRQHandler 00000012 Symbol: T16N3_IRQHandler Definitions At line 173 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 76 in file ..\MDK_StartUp\startup_ES8P5066.s At line 147 in file ..\MDK_StartUp\startup_ES8P5066.s T32N0_IRQHandler 00000012 Symbol: T32N0_IRQHandler Definitions At line 174 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 77 in file ..\MDK_StartUp\startup_ES8P5066.s At line 148 in file ..\MDK_StartUp\startup_ES8P5066.s UART0_IRQHandler 00000012 Symbol: UART0_IRQHandler Definitions At line 181 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 88 in file ..\MDK_StartUp\startup_ES8P5066.s At line 155 in file ..\MDK_StartUp\startup_ES8P5066.s UART1_IRQHandler 00000012 Symbol: UART1_IRQHandler Definitions At line 182 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 89 in file ..\MDK_StartUp\startup_ES8P5066.s At line 156 in file ..\MDK_StartUp\startup_ES8P5066.s UART2_IRQHandler 00000012 Symbol: UART2_IRQHandler Definitions At line 183 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 90 in file ..\MDK_StartUp\startup_ES8P5066.s At line 157 in file ..\MDK_StartUp\startup_ES8P5066.s WWDT_IRQHandler 00000012 Symbol: WWDT_IRQHandler Definitions At line 175 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 80 in file ..\MDK_StartUp\startup_ES8P5066.s At line 149 in file ..\MDK_StartUp\startup_ES8P5066.s 33 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Absolute symbols Heap_Size 00000000 Symbol: Heap_Size Definitions At line 32 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 36 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: Heap_Size used once Stack_Size 00000400 Symbol: Stack_Size Definitions At line 21 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 24 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: Stack_Size used once 2 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering External symbols SystemInit 00000000 Symbol: SystemInit Definitions At line 105 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 106 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: SystemInit used once __main 00000000 Symbol: __main Definitions At line 104 in file ..\MDK_StartUp\startup_ES8P5066.s Uses At line 108 in file ..\MDK_StartUp\startup_ES8P5066.s Comment: __main used once 2 symbols 380 symbols in table