ARM Macro Assembler Page 1 1 00000000 ; 2 00000000 ;******************************************************* ************************************************* 3 00000000 ; EXCEPTION VECTORS & STARTUP CODE 4 00000000 ; 5 00000000 ; File : cstartup.s 6 00000000 ; For : Cortex-M4 7 00000000 ; Mode : Thumb2 8 00000000 ; Toolchain : RealView Development Suite 9 00000000 ; RealView Microcontroller Development Kit ( MDK) 10 00000000 ; ARM Developer Suite (ADS) 11 00000000 ; Keil uVision 12 00000000 ;******************************************************* ************************************************* 13 00000000 ; 14 00000000 15 00000000 ;/* 16 00000000 ;******************************************************* ************************************************* 17 00000000 ;* <<< Use Configuration Wizar d in Context Menu >>> 18 00000000 ;* 19 00000000 ;* Note(s) : (1) The µVision4 Configuration Wizard enabl es menu driven configuration of assembler, 20 00000000 ;* C/C++, or debugger initialization files . The Configuration Wizard uses control items 21 00000000 ;* that are embedded into the comments of the configuration file. 22 00000000 ;* 23 00000000 ;******************************************************* ************************************************* 24 00000000 ;*/ 25 00000000 26 00000000 ;/* 27 00000000 ;******************************************************* ************************************************* 28 00000000 ;* STACK DE FINITIONS 29 00000000 ;* 30 00000000 ;* Configuration Wizard Menu: 31 00000000 ;* // Stack Configuration 32 00000000 ;* // Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> 33 00000000 ;* // ; 34 00000000 ;******************************************************* ************************************************** 35 00000000 ;*/ 36 00000000 37 00000000 00001000 Stack_Size EQU 0x0001000 38 00000000 39 00000000 AREA STACK, NOINIT, READWRITE, ALIGN =3 40 00000000 Stack_Mem SPACE Stack_Size 41 00001000 __initial_sp 42 00001000 ARM Macro Assembler Page 2 43 00001000 44 00001000 ;/* 45 00001000 ;******************************************************* ************************************************* 46 00001000 ;* HEAP D EFINITIONS 47 00001000 ; Heap Configuration 48 00001000 ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> 49 00001000 ; 50 00001000 ;******************************************************* ************************************************** 51 00001000 ;*/ 52 00001000 53 00001000 00003000 Heap_Size EQU 0x0003000 54 00001000 55 00001000 AREA HEAP, NOINIT, READWRITE, ALIGN= 3 56 00000000 __heap_base 57 00000000 Heap_Mem SPACE Heap_Size 58 00003000 __heap_limit 59 00003000 60 00003000 61 00003000 PRESERVE8 62 00003000 THUMB 63 00003000 64 00003000 65 00003000 ; Vector Table Mapped to Address 0 at Reset 66 00003000 67 00003000 AREA RESET, DATA, READONLY 68 00000000 EXPORT __Vectors 69 00000000 EXPORT __Vectors_End 70 00000000 EXPORT __Vectors_Size 71 00000000 72 00000000 IMPORT BSP_IntHandlerGPIOA 73 00000000 IMPORT BSP_IntHandlerGPIOB 74 00000000 IMPORT BSP_IntHandlerGPIOC 75 00000000 IMPORT BSP_IntHandlerGPIOD 76 00000000 IMPORT BSP_IntHandlerGPIOE 77 00000000 IMPORT BSP_IntHandlerUART0 78 00000000 IMPORT BSP_IntHandlerUART1 79 00000000 IMPORT BSP_IntHandlerSSI0 80 00000000 IMPORT BSP_IntHandlerI2C0 81 00000000 IMPORT BSP_IntHandlerPWM_FAULT 82 00000000 IMPORT BSP_IntHandlerPWM_GEN0 83 00000000 IMPORT BSP_IntHandlerPWM_GEN1 84 00000000 IMPORT BSP_IntHandlerPWM_GEN2 85 00000000 IMPORT BSP_IntHandlerQEI0 86 00000000 IMPORT BSP_IntHandlerADC0_0 87 00000000 IMPORT BSP_IntHandlerADC0_1 88 00000000 IMPORT BSP_IntHandlerADC0_2 89 00000000 IMPORT BSP_IntHandlerADC0_3 90 00000000 IMPORT BSP_IntHandlerWDTO_WDT1 91 00000000 IMPORT BSP_IntHandlerTMR0A 92 00000000 IMPORT BSP_IntHandlerTMR0B 93 00000000 IMPORT BSP_IntHandlerTMR1A 94 00000000 IMPORT BSP_IntHandlerTMR1B ARM Macro Assembler Page 3 95 00000000 IMPORT BSP_IntHandlerTMR2A 96 00000000 IMPORT BSP_IntHandlerTMR2B 97 00000000 IMPORT BSP_IntHandlerACOMP0 98 00000000 IMPORT BSP_IntHandlerACOMP1 99 00000000 IMPORT BSP_IntHandlerACOMP2 100 00000000 IMPORT BSP_IntHandlerSYS_CTRL 101 00000000 IMPORT BSP_IntHandlerFLASH 102 00000000 IMPORT BSP_IntHandlerGPIOF 103 00000000 IMPORT BSP_IntHandlerGPIOG 104 00000000 IMPORT BSP_IntHandlerGPIOH 105 00000000 IMPORT BSP_IntHandlerUART2 106 00000000 IMPORT BSP_IntHandlerSSI1 107 00000000 IMPORT BSP_IntHandlerTMR3A 108 00000000 IMPORT BSP_IntHandlerTMR3B 109 00000000 IMPORT BSP_IntHandlerI2C1 110 00000000 IMPORT BSP_IntHandlerCAN0 111 00000000 IMPORT BSP_IntHandlerCAN1 112 00000000 IMPORT BSP_IntHandlerETHER_MAC 113 00000000 IMPORT BSP_IntHandlerHIB 114 00000000 IMPORT BSP_IntHandlerUSB_MAC 115 00000000 IMPORT BSP_IntHandlerPWM_GEN3 116 00000000 IMPORT BSP_IntHandlerUDMA0_SOFT 117 00000000 IMPORT BSP_IntHandlerUDAM0_ERR 118 00000000 IMPORT BSP_IntHandlerADC1_0 119 00000000 IMPORT BSP_IntHandlerADC1_1 120 00000000 IMPORT BSP_IntHandlerADC1_2 121 00000000 IMPORT BSP_IntHandlerADC1_3 122 00000000 IMPORT BSP_IntHandlerEPI0 123 00000000 IMPORT BSP_IntHandlerGPIOJ 124 00000000 IMPORT BSP_IntHandlerGPIOK 125 00000000 IMPORT BSP_IntHandlerGPIOL 126 00000000 IMPORT BSP_IntHandlerSSI2 127 00000000 IMPORT BSP_IntHandlerSSI3 128 00000000 IMPORT BSP_IntHandlerUART3 129 00000000 IMPORT BSP_IntHandlerUART4 130 00000000 IMPORT BSP_IntHandlerUART5 131 00000000 IMPORT BSP_IntHandlerUART6 132 00000000 IMPORT BSP_IntHandlerUART7 133 00000000 IMPORT BSP_IntHandlerI2C2 134 00000000 IMPORT BSP_IntHandlerI2C3 135 00000000 IMPORT BSP_IntHandlerTMR4A 136 00000000 IMPORT BSP_IntHandlerTMR4B 137 00000000 IMPORT BSP_IntHandlerTMR5A 138 00000000 IMPORT BSP_IntHandlerTMR5B 139 00000000 IMPORT BSP_IntHandlerFP 140 00000000 IMPORT BSP_IntHandlerRSVD68 141 00000000 IMPORT BSP_IntHandlerRSVD69 142 00000000 IMPORT BSP_IntHandlerI2C4 143 00000000 IMPORT BSP_IntHandlerI2C5 144 00000000 IMPORT BSP_IntHandlerGPIOM 145 00000000 IMPORT BSP_IntHandlerGPION 146 00000000 IMPORT BSP_IntHandlerRSVD74 147 00000000 IMPORT BSP_IntHandlerTAMPER 148 00000000 IMPORT BSP_IntHandlerGPIOP0 149 00000000 IMPORT BSP_IntHandlerGPIOP1 150 00000000 IMPORT BSP_IntHandlerGPIOP2 151 00000000 IMPORT BSP_IntHandlerGPIOP3 152 00000000 IMPORT BSP_IntHandlerGPIOP4 153 00000000 IMPORT BSP_IntHandlerGPIOP5 ARM Macro Assembler Page 4 154 00000000 IMPORT BSP_IntHandlerGPIOP6 155 00000000 IMPORT BSP_IntHandlerGPIOP7 156 00000000 IMPORT BSP_IntHandlerGPIOQ0 157 00000000 IMPORT BSP_IntHandlerGPIOQ1 158 00000000 IMPORT BSP_IntHandlerGPIOQ2 159 00000000 IMPORT BSP_IntHandlerGPIOQ3 160 00000000 IMPORT BSP_IntHandlerGPIOQ4 161 00000000 IMPORT BSP_IntHandlerGPIOQ5 162 00000000 IMPORT BSP_IntHandlerGPIOQ6 163 00000000 IMPORT BSP_IntHandlerGPIOQ7 164 00000000 IMPORT BSP_IntHandlerGPIOR 165 00000000 IMPORT BSP_IntHandlerGPIOS 166 00000000 IMPORT BSP_IntHandlerSHA_MD5 167 00000000 IMPORT BSP_IntHandlerAES 168 00000000 IMPORT BSP_IntHandlerDES 169 00000000 IMPORT BSP_IntHandlerLCD 170 00000000 IMPORT BSP_IntHandlerTMR6A 171 00000000 IMPORT BSP_IntHandlerTMR6B 172 00000000 IMPORT BSP_IntHandlerTMR7A 173 00000000 IMPORT BSP_IntHandlerTMR7B 174 00000000 IMPORT BSP_IntHandlerI2C6 175 00000000 IMPORT BSP_IntHandlerI2C7 176 00000000 IMPORT BSP_IntHandlerRSVD104 177 00000000 IMPORT BSP_IntHandler1WIRE 178 00000000 IMPORT BSP_IntHandlerRSVD106 179 00000000 IMPORT BSP_IntHandlerRSVD107 180 00000000 IMPORT BSP_IntHandlerRSVD108 181 00000000 IMPORT BSP_IntHandlerI2C8 182 00000000 IMPORT BSP_IntHandlerI2C9 183 00000000 IMPORT BSP_IntHandlerGPIOT 184 00000000 185 00000000 IMPORT OS_CPU_PendSVHandler 186 00000000 IMPORT OS_CPU_SysTickHandler 187 00000000 188 00000000 00000000 __Vectors DCD __initial_sp ; 0 Top of Stack 189 00000004 00000000 DCD Reset_Handler ; 1 Reset Handler 190 00000008 00000000 DCD App_NMI_ISR ; 2 NMI Handler 191 0000000C 00000000 DCD App_Fault_ISR ; 3 Hard Fault Handler 192 00000010 00000000 DCD App_MemFault_ISR ; 4 MPU Faul t Handler 193 00000014 00000000 DCD App_BusFault_ISR ; 5 Bus Faul t Handler 194 00000018 00000000 DCD App_UsageFault_ISR ; 6 Usage Fault Handler 195 0000001C 00000000 DCD App_Spurious_ISR ; 7 Reserved 196 00000020 00000000 DCD App_Spurious_ISR ; 8 Reserved 197 00000024 00000000 DCD App_Spurious_ISR ; 9 Reserved 198 00000028 00000000 DCD App_Spurious_ISR ; 10 Reserved 199 0000002C 00000000 DCD App_Spurious_ISR ; 11 SVCall H ARM Macro Assembler Page 5 andler 200 00000030 00000000 DCD App_Spurious_ISR ; 12 Debug Mo nitor Handler 201 00000034 00000000 DCD App_Spurious_ISR ; 13 Reserved 202 00000038 00000000 DCD OS_CPU_PendSVHandler ; 14 Pend SV Handler 203 0000003C 00000000 DCD OS_CPU_SysTickHandler ; 15 Sys Tick Handler 204 00000040 205 00000040 ; External Interrupts 206 00000040 207 00000040 00000000 DCD BSP_IntHandlerGPIOA ; 16, INTI SR[ 0] GPIO Port A. 208 00000044 00000000 DCD BSP_IntHandlerGPIOB ; 17, INTI SR[ 1] GPIO Port B. 209 00000048 00000000 DCD BSP_IntHandlerGPIOC ; 18, INTI SR[ 2] GPIO Port C. 210 0000004C 00000000 DCD BSP_IntHandlerGPIOD ; 19, INTI SR[ 3] GPIO Port D. 211 00000050 00000000 DCD BSP_IntHandlerGPIOE ; 20, INTI SR[ 4] GPIO Port E. 212 00000054 00000000 DCD BSP_IntHandlerUART0 ; 21, INTI SR[ 5] UART0. 213 00000058 00000000 DCD BSP_IntHandlerUART1 ; 22, INTI SR[ 6] UART1. 214 0000005C 00000000 DCD BSP_IntHandlerSSI0 ; 23, INTIS R[ 7] SSI0. 215 00000060 00000000 DCD BSP_IntHandlerI2C0 ; 24, INTIS R[ 8] I2C0. 216 00000064 00000000 DCD BSP_IntHandlerPWM_FAULT ; 25, INTISR[ 9] PWM Fa ult. 217 00000068 00000000 DCD BSP_IntHandlerPWM_GEN0 ; 26, I NTISR[ 10] PWM Gen erator 0. 218 0000006C 00000000 DCD BSP_IntHandlerPWM_GEN1 ; 27, I NTISR[ 11] PWM Gen erator 1. 219 00000070 00000000 DCD BSP_IntHandlerPWM_GEN2 ; 28, I NTISR[ 12] PWM Gen erator 2. 220 00000074 00000000 DCD BSP_IntHandlerQEI0 ; 29, INTIS R[ 13] QEI0. 221 00000078 00000000 DCD BSP_IntHandlerADC0_0 ; 30, INT ISR[ 14] ADC0 Sequ ence 0. 222 0000007C 00000000 DCD BSP_IntHandlerADC0_1 ; 31, INT ISR[ 15] ADC0 Sequ ence 1. 223 00000080 00000000 DCD BSP_IntHandlerADC0_2 ; 32, INT ISR[ 16] ADC0 Sequ ence 2. 224 00000084 00000000 DCD BSP_IntHandlerADC0_3 ; 33, INT ARM Macro Assembler Page 6 ISR[ 17] ADC0 Sequ ence 3. 225 00000088 00000000 DCD BSP_IntHandlerWDTO_WDT1 ; 34, INTISR[ 18] Watchd og Timers 0 and 1. 226 0000008C 00000000 DCD BSP_IntHandlerTMR0A ; 35, INTI SR[ 19] 16/32-Bit Timer 0A. 227 00000090 00000000 DCD BSP_IntHandlerTMR0B ; 36, INTI SR[ 20] 16/32-Bit Timer 0B. 228 00000094 00000000 DCD BSP_IntHandlerTMR1A ; 37, INTI SR[ 21] 16/32-Bit Timer 1A. 229 00000098 00000000 DCD BSP_IntHandlerTMR1B ; 38, INTI SR[ 22] 16/32-Bit Timer 1B. 230 0000009C 00000000 DCD BSP_IntHandlerTMR2A ; 39, INTI SR[ 23] 16/32-Bit Timer 2A. 231 000000A0 00000000 DCD BSP_IntHandlerTMR2B ; 40, INTI SR[ 24] 16/32-Bit Timer 2B. 232 000000A4 00000000 DCD BSP_IntHandlerACOMP0 ; 41, INT ISR[ 25] Analog Co mparator 0. 233 000000A8 00000000 DCD BSP_IntHandlerACOMP1 ; 42, INT ISR[ 26] Analog Co mparator 1. 234 000000AC 00000000 DCD BSP_IntHandlerACOMP2 ; 43, INT ISR[ 27] Analog Co mparator 2. 235 000000B0 00000000 DCD BSP_IntHandlerSYS_CTRL ; 44, I NTISR[ 28] System Control. 236 000000B4 00000000 DCD BSP_IntHandlerFLASH ; 45, INTI SR[ 29] Flash Memo ry Control. 237 000000B8 00000000 DCD BSP_IntHandlerGPIOF ; 46, INTI SR[ 30] GPIO Port F. 238 000000BC 00000000 DCD BSP_IntHandlerGPIOG ; 47, INTI SR[ 31] GPIO Port G. 239 000000C0 00000000 DCD BSP_IntHandlerGPIOH ; 48, INTI SR[ 32] GPIO Port H. 240 000000C4 00000000 DCD BSP_IntHandlerUART2 ; 49, INTI SR[ 33] UART2. 241 000000C8 00000000 DCD BSP_IntHandlerSSI1 ; 50, INTIS R[ 34] SSI1. 242 000000CC 00000000 DCD BSP_IntHandlerTMR3A ; 51, INTI SR[ 35] 16/32-Bit Timer 3A. 243 000000D0 00000000 DCD BSP_IntHandlerTMR3B ; 52, INTI SR[ 36] 16/32-Bit Timer 3B. 244 000000D4 00000000 DCD BSP_IntHandlerI2C1 ; 53, INTIS R[ 37] I2C1. ARM Macro Assembler Page 7 245 000000D8 00000000 DCD BSP_IntHandlerCAN0 ; 54, INTIS R[ 38] CAN0. 246 000000DC 00000000 DCD BSP_IntHandlerCAN1 ; 55, INTIS R[ 39] CAN1. 247 000000E0 00000000 DCD BSP_IntHandlerETHER_MAC ; 56, INTISR[ 40] Ethern et MAC. 248 000000E4 00000000 DCD BSP_IntHandlerHIB ; 57, INTISR [ 41] HIB(Power Is land). 249 000000E8 00000000 DCD BSP_IntHandlerUSB_MAC ; 58, IN TISR[ 42] USB MAC. 250 000000EC 00000000 DCD BSP_IntHandlerPWM_GEN3 ; 59, I NTISR[ 43] PWM Gen erator 3. 251 000000F0 00000000 DCD BSP_IntHandlerUDMA0_SOFT ; 60, INTISR[ 44] uDMA 0 Software. 252 000000F4 00000000 DCD BSP_IntHandlerUDAM0_ERR ; 61, INTISR[ 45] uDMA 0 Error. 253 000000F8 00000000 DCD BSP_IntHandlerADC1_0 ; 62, INT ISR[ 46] ADC1 Sequ ence 0. 254 000000FC 00000000 DCD BSP_IntHandlerADC1_1 ; 63, INT ISR[ 47] ADC1 Sequ ence 1. 255 00000100 00000000 DCD BSP_IntHandlerADC1_2 ; 64, INT ISR[ 48] ADC1 Sequ ence 2. 256 00000104 00000000 DCD BSP_IntHandlerADC1_3 ; 65, INT ISR[ 49] ADC1 Sequ ence 3. 257 00000108 00000000 DCD BSP_IntHandlerEPI0 ; 66, INTIS R[ 50] EPI0. 258 0000010C 00000000 DCD BSP_IntHandlerGPIOJ ; 67, INTI SR[ 51] GPIO Port J. 259 00000110 00000000 DCD BSP_IntHandlerGPIOK ; 68, INTI SR[ 52] GPIO Port K. 260 00000114 00000000 DCD BSP_IntHandlerGPIOL ; 69, INTI SR[ 53] GPIO Port L. 261 00000118 00000000 DCD BSP_IntHandlerSSI2 ; 70, INTIS R[ 54] SSI2. 262 0000011C 00000000 DCD BSP_IntHandlerSSI3 ; 71, INTIS R[ 55] SSI3. 263 00000120 00000000 DCD BSP_IntHandlerUART3 ; 72, INTI SR[ 56] UART3. 264 00000124 00000000 DCD BSP_IntHandlerUART4 ; 73, INTI SR[ 57] UART4. 265 00000128 00000000 DCD BSP_IntHandlerUART5 ; 74, INTI SR[ 58] UART5. 266 0000012C 00000000 DCD BSP_IntHandlerUART6 ; 75, INTI SR[ 59] UART6. 267 00000130 00000000 DCD BSP_IntHandlerUART7 ; 76, INTI SR[ 60] UART7. ARM Macro Assembler Page 8 268 00000134 00000000 DCD BSP_IntHandlerI2C2 ; 77, INTIS R[ 61] I2C 2. 269 00000138 00000000 DCD BSP_IntHandlerI2C3 ; 78, INTIS R[ 62] I2C 3. 270 0000013C 00000000 DCD BSP_IntHandlerTMR4A ; 79, INTI SR[ 63] Timer 4A. 271 00000140 00000000 DCD BSP_IntHandlerTMR4B ; 80, INTI SR[ 64] Timer 4B. 272 00000144 00000000 DCD BSP_IntHandlerTMR5A ; 81, INTI SR[ 65] Timer 5A. 273 00000148 00000000 DCD BSP_IntHandlerTMR5B ; 82, INTI SR[ 66] Timer 5B. 274 0000014C 00000000 DCD BSP_IntHandlerFP ; 83, INTISR[ 67] FP Exception( imprecise). 275 00000150 276 00000150 00000000 DCD BSP_IntHandlerRSVD68 ; 84, INT ISR[ 68] Reserved. 277 00000154 00000000 DCD BSP_IntHandlerRSVD69 ; 85, INT ISR[ 69] Reserved. 278 00000158 279 00000158 00000000 DCD BSP_IntHandlerI2C4 ; 86, INTIS R[ 70] I2C 4. 280 0000015C 00000000 DCD BSP_IntHandlerI2C5 ; 87, INTIS R[ 71] I2C 5. 281 00000160 00000000 DCD BSP_IntHandlerGPIOM ; 88, INTI SR[ 72] GPIO Port M. 282 00000164 00000000 DCD BSP_IntHandlerGPION ; 89, INTI SR[ 73] GPIO Port N. 283 00000168 284 00000168 00000000 DCD BSP_IntHandlerRSVD74 ; 90, INT ISR[ 74] Reserved. 285 0000016C 286 0000016C 00000000 DCD BSP_IntHandlerTAMPER ; 91, INT ISR[ 75] Tamper. 287 00000170 00000000 DCD BSP_IntHandlerGPIOP0 ; 92, INT ISR[ 76] GPIO Port P(Summary or P0). 288 00000174 00000000 DCD BSP_IntHandlerGPIOP1 ; 93, INT ISR[ 77] GPIO Port P1. 289 00000178 00000000 DCD BSP_IntHandlerGPIOP2 ; 94, INT ISR[ 78] GPIO Port P2. 290 0000017C 00000000 DCD BSP_IntHandlerGPIOP3 ; 95, INT ISR[ 79] GPIO Port P3. 291 00000180 00000000 DCD BSP_IntHandlerGPIOP4 ; 96, INT ISR[ 80] GPIO Port P4. 292 00000184 00000000 DCD BSP_IntHandlerGPIOP5 ; 97, INT ISR[ 81] GPIO Port P5. 293 00000188 00000000 DCD BSP_IntHandlerGPIOP6 ; 98, INT ARM Macro Assembler Page 9 ISR[ 82] GPIO Port P6. 294 0000018C 00000000 DCD BSP_IntHandlerGPIOP7 ; 99, INT ISR[ 83] GPIO Port P7. 295 00000190 00000000 DCD BSP_IntHandlerGPIOQ0 ; 100, INT ISR[ 84] GPIO Port Q(Summary or Q0). 296 00000194 00000000 DCD BSP_IntHandlerGPIOQ1 ; 101, INT ISR[ 85] GPIO Port Q1. 297 00000198 00000000 DCD BSP_IntHandlerGPIOQ2 ; 102, INT ISR[ 86] GPIO Port Q2. 298 0000019C 00000000 DCD BSP_IntHandlerGPIOQ3 ; 103, INT ISR[ 87] GPIO Port Q3. 299 000001A0 00000000 DCD BSP_IntHandlerGPIOQ4 ; 104, INT ISR[ 88] GPIO Port Q4. 300 000001A4 00000000 DCD BSP_IntHandlerGPIOQ5 ; 105, INT ISR[ 89] GPIO Port Q5. 301 000001A8 00000000 DCD BSP_IntHandlerGPIOQ6 ; 106, INT ISR[ 90] GPIO Port Q6. 302 000001AC 00000000 DCD BSP_IntHandlerGPIOQ7 ; 107, INT ISR[ 91] GPIO Port Q7. 303 000001B0 00000000 DCD BSP_IntHandlerGPIOR ; 108, INTI SR[ 92] GPIO Port R. 304 000001B4 00000000 DCD BSP_IntHandlerGPIOS ; 109, INTI SR[ 93] GPIO Port S. 305 000001B8 00000000 DCD BSP_IntHandlerSHA_MD5 ; 110, IN TISR[ 94] SHA/MD5. 306 000001BC 00000000 DCD BSP_IntHandlerAES ; 111, INTISR [ 95] AES. 307 000001C0 00000000 DCD BSP_IntHandlerDES ; 112, INTISR [ 96] DES. 308 000001C4 00000000 DCD BSP_IntHandlerLCD ; 113, INTISR [ 97] LCD. 309 000001C8 00000000 DCD BSP_IntHandlerTMR6A ; 114, INTI SR[ 98] 16/32-Bit Timer 6A. 310 000001CC 00000000 DCD BSP_IntHandlerTMR6B ; 115, INTI SR[ 99] 16/32-Bit Timer 6B. 311 000001D0 00000000 DCD BSP_IntHandlerTMR7A ; 116, INTI SR[100] 16/32-Bit Timer 7A. 312 000001D4 00000000 DCD BSP_IntHandlerTMR7B ; 117, INTI SR[101] 16/32-Bit Timer 7B. 313 000001D8 00000000 DCD BSP_IntHandlerI2C6 ; 118, INTIS R[102] I2C 6. 314 000001DC 00000000 DCD BSP_IntHandlerI2C7 ; 119, INTIS ARM Macro Assembler Page 10 R[103] I2C 7. 315 000001E0 316 000001E0 00000000 DCD BSP_IntHandlerRSVD104 ; 120, IN TISR[104] Reserved . 317 000001E4 318 000001E4 00000000 DCD BSP_IntHandler1WIRE ; 121, INTI SR[105] 1-Wire. 319 000001E8 320 000001E8 00000000 DCD BSP_IntHandlerRSVD106 ; 122, IN TISR[106] Reserved . 321 000001EC 00000000 DCD BSP_IntHandlerRSVD107 ; 123, IN TISR[107] Reserved . 322 000001F0 00000000 DCD BSP_IntHandlerRSVD108 ; 124, IN TISR[108] Reserved . 323 000001F4 324 000001F4 00000000 DCD BSP_IntHandlerI2C8 ; 125, INTIS R[109] I2C 8. 325 000001F8 00000000 DCD BSP_IntHandlerI2C9 ; 126, INTIS R[110] I2C 9. 326 000001FC 00000000 DCD BSP_IntHandlerGPIOT ; 127, INTI SR[111] GPIO T. 327 00000200 328 00000200 __Vectors_End 329 00000200 330 00000200 00000200 __Vectors_Size EQU __Vectors_End - __Vectors 331 00000200 332 00000200 AREA |.text|, CODE, READONLY 333 00000000 334 00000000 335 00000000 ; Reset Handler 336 00000000 337 00000000 Reset_Handler PROC 338 00000000 EXPORT Reset_Handler [WEAK ] 339 00000000 IMPORT __main 340 00000000 341 00000000 IF {FPU} != "SoftVFP" 342 00000000 ; Enable Floating Point Support at reset for FPU 343 00000000 F8DF 0030 LDR.W R0, =0xE000ED88 ; Load address of CPACR register 344 00000004 6801 LDR R1, [R0] ; Read value at CPA CR 345 00000006 F441 0170 ORR R1, R1, #(0xF <<20) ; Set bits 20-23 to enable CP 10 and CP11 coproce ssors 346 0000000A ; Write back the modified CPACR value 347 0000000A 6001 STR R1, [R0] ; Wait for store to complete 348 0000000C F3BF 8F4F DSB 349 00000010 350 00000010 ; Enable automatic FP register content ARM Macro Assembler Page 11 351 00000010 ; Enable lazy context switch 352 00000010 F8DF 0024 LDR.W R0, =0xE000EF34 ; Load address to FPCCR register 353 00000014 6801 LDR R1, [R0] 354 00000016 F021 4140 AND R1, R1, #(0x3FFFFFFF) ; Clear the LSPEN and ASPEN bits 355 0000001A 6001 STR R1, [R0] 356 0000001C F3BF 8F6F ISB ; Reset pipeline no w the FPU is enable d 357 00000020 ENDIF 358 00000020 359 00000020 4806 LDR R0, =__main 360 00000022 4700 BX R0 361 00000024 ENDP 362 00000024 363 00000024 364 00000024 ; Dummy Exception Handlers (infinite loops which can be modified) 365 00000024 366 00000024 App_NMI_ISR PROC 367 00000024 EXPORT App_NMI_ISR [WEAK ] 368 00000024 E7FE B . 369 00000026 ENDP 371 00000026 App_Fault_ISR PROC 372 00000026 EXPORT App_Fault_ISR [WEAK ] 373 00000026 E7FE B . 374 00000028 ENDP 376 00000028 App_MemFault_ISR PROC 377 00000028 EXPORT App_MemFault_ISR [WEAK ] 378 00000028 E7FE B . 379 0000002A ENDP 381 0000002A App_BusFault_ISR PROC 382 0000002A EXPORT App_BusFault_ISR [WEAK ] 383 0000002A E7FE B . 384 0000002C ENDP 386 0000002C App_UsageFault_ISR PROC 387 0000002C EXPORT App_UsageFault_ISR [WEAK ] 388 0000002C E7FE B . 389 0000002E ENDP 391 0000002E App_Spurious_ISR PROC 392 0000002E EXPORT App_Spurious_ISR [WEAK ] 393 0000002E E7FE B . 394 00000030 ENDP 396 00000030 App_Reserved_ISR PROC ARM Macro Assembler Page 12 397 00000030 EXPORT App_Reserved_ISR [WEAK ] 398 00000030 E7FE B . 399 00000032 ENDP 400 00000032 401 00000032 00 00 ALIGN 402 00000034 403 00000034 404 00000034 ; User Initial Stack & Heap 405 00000034 406 00000034 IF :DEF:__MICROLIB 407 00000034 408 00000034 EXPORT __initial_sp 409 00000034 EXPORT __heap_base 410 00000034 EXPORT __heap_limit 411 00000034 412 00000034 ELSE 426 ENDIF 427 00000034 428 00000034 429 00000034 END E000ED88 E000EF34 00000000 Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M4.fp --apcs=int erwork --depend=.\objects\cstartup.d -o.\objects\cstartup.o -IE:\ZMTS_project\G it_PROJECT\14th\20231023_InSituLab_emb\InsituLabProject_QRS\Project\RTE -ID:\Ke il_v5\ARM\PACK\Keil\TM4C_DFP\1.1.0\Device\Include\TM4C129 -ID:\Keil_v5\ARM\CMSI S\Include --predefine="__MICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 5 18" --predefine="TM4C1294KCPDT SETA 1" --list=.\listings\cstartup.lst ..\Src\St artUp\cstartup.s ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols STACK 00000000 Symbol: STACK Definitions At line 39 in file ..\Src\StartUp\cstartup.s Uses None Comment: STACK unused Stack_Mem 00000000 Symbol: Stack_Mem Definitions At line 40 in file ..\Src\StartUp\cstartup.s Uses None Comment: Stack_Mem unused __initial_sp 00001000 Symbol: __initial_sp Definitions At line 41 in file ..\Src\StartUp\cstartup.s Uses At line 188 in file ..\Src\StartUp\cstartup.s At line 408 in file ..\Src\StartUp\cstartup.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols HEAP 00000000 Symbol: HEAP Definitions At line 55 in file ..\Src\StartUp\cstartup.s Uses None Comment: HEAP unused Heap_Mem 00000000 Symbol: Heap_Mem Definitions At line 57 in file ..\Src\StartUp\cstartup.s Uses None Comment: Heap_Mem unused __heap_base 00000000 Symbol: __heap_base Definitions At line 56 in file ..\Src\StartUp\cstartup.s Uses At line 409 in file ..\Src\StartUp\cstartup.s Comment: __heap_base used once __heap_limit 00003000 Symbol: __heap_limit Definitions At line 58 in file ..\Src\StartUp\cstartup.s Uses At line 410 in file ..\Src\StartUp\cstartup.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 67 in file ..\Src\StartUp\cstartup.s Uses None Comment: RESET unused __Vectors 00000000 Symbol: __Vectors Definitions At line 188 in file ..\Src\StartUp\cstartup.s Uses At line 68 in file ..\Src\StartUp\cstartup.s At line 330 in file ..\Src\StartUp\cstartup.s __Vectors_End 00000200 Symbol: __Vectors_End Definitions At line 328 in file ..\Src\StartUp\cstartup.s Uses At line 69 in file ..\Src\StartUp\cstartup.s At line 330 in file ..\Src\StartUp\cstartup.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols .text 00000000 Symbol: .text Definitions At line 332 in file ..\Src\StartUp\cstartup.s Uses None Comment: .text unused App_BusFault_ISR 0000002A Symbol: App_BusFault_ISR Definitions At line 381 in file ..\Src\StartUp\cstartup.s Uses At line 193 in file ..\Src\StartUp\cstartup.s At line 382 in file ..\Src\StartUp\cstartup.s App_Fault_ISR 00000026 Symbol: App_Fault_ISR Definitions At line 371 in file ..\Src\StartUp\cstartup.s Uses At line 191 in file ..\Src\StartUp\cstartup.s At line 372 in file ..\Src\StartUp\cstartup.s App_MemFault_ISR 00000028 Symbol: App_MemFault_ISR Definitions At line 376 in file ..\Src\StartUp\cstartup.s Uses At line 192 in file ..\Src\StartUp\cstartup.s At line 377 in file ..\Src\StartUp\cstartup.s App_NMI_ISR 00000024 Symbol: App_NMI_ISR Definitions At line 366 in file ..\Src\StartUp\cstartup.s Uses At line 190 in file ..\Src\StartUp\cstartup.s At line 367 in file ..\Src\StartUp\cstartup.s App_Reserved_ISR 00000030 Symbol: App_Reserved_ISR Definitions At line 396 in file ..\Src\StartUp\cstartup.s Uses At line 397 in file ..\Src\StartUp\cstartup.s Comment: App_Reserved_ISR used once App_Spurious_ISR 0000002E Symbol: App_Spurious_ISR Definitions At line 391 in file ..\Src\StartUp\cstartup.s Uses At line 195 in file ..\Src\StartUp\cstartup.s ARM Macro Assembler Page 2 Alphabetic symbol ordering Relocatable symbols At line 196 in file ..\Src\StartUp\cstartup.s At line 197 in file ..\Src\StartUp\cstartup.s At line 198 in file ..\Src\StartUp\cstartup.s At line 199 in file ..\Src\StartUp\cstartup.s At line 200 in file ..\Src\StartUp\cstartup.s At line 201 in file ..\Src\StartUp\cstartup.s At line 392 in file ..\Src\StartUp\cstartup.s App_UsageFault_ISR 0000002C Symbol: App_UsageFault_ISR Definitions At line 386 in file ..\Src\StartUp\cstartup.s Uses At line 194 in file ..\Src\StartUp\cstartup.s At line 387 in file ..\Src\StartUp\cstartup.s Reset_Handler 00000000 Symbol: Reset_Handler Definitions At line 337 in file ..\Src\StartUp\cstartup.s Uses At line 189 in file ..\Src\StartUp\cstartup.s At line 338 in file ..\Src\StartUp\cstartup.s 9 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Absolute symbols Heap_Size 00003000 Symbol: Heap_Size Definitions At line 53 in file ..\Src\StartUp\cstartup.s Uses At line 57 in file ..\Src\StartUp\cstartup.s Comment: Heap_Size used once Stack_Size 00001000 Symbol: Stack_Size Definitions At line 37 in file ..\Src\StartUp\cstartup.s Uses At line 40 in file ..\Src\StartUp\cstartup.s Comment: Stack_Size used once __Vectors_Size 00000200 Symbol: __Vectors_Size Definitions At line 330 in file ..\Src\StartUp\cstartup.s Uses At line 70 in file ..\Src\StartUp\cstartup.s Comment: __Vectors_Size used once 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering External symbols BSP_IntHandler1WIRE 00000000 Symbol: BSP_IntHandler1WIRE Definitions At line 177 in file ..\Src\StartUp\cstartup.s Uses At line 318 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandler1WIRE used once BSP_IntHandlerACOMP0 00000000 Symbol: BSP_IntHandlerACOMP0 Definitions At line 97 in file ..\Src\StartUp\cstartup.s Uses At line 232 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerACOMP0 used once BSP_IntHandlerACOMP1 00000000 Symbol: BSP_IntHandlerACOMP1 Definitions At line 98 in file ..\Src\StartUp\cstartup.s Uses At line 233 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerACOMP1 used once BSP_IntHandlerACOMP2 00000000 Symbol: BSP_IntHandlerACOMP2 Definitions At line 99 in file ..\Src\StartUp\cstartup.s Uses At line 234 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerACOMP2 used once BSP_IntHandlerADC0_0 00000000 Symbol: BSP_IntHandlerADC0_0 Definitions At line 86 in file ..\Src\StartUp\cstartup.s Uses At line 221 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC0_0 used once BSP_IntHandlerADC0_1 00000000 Symbol: BSP_IntHandlerADC0_1 Definitions At line 87 in file ..\Src\StartUp\cstartup.s Uses At line 222 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC0_1 used once BSP_IntHandlerADC0_2 00000000 Symbol: BSP_IntHandlerADC0_2 Definitions At line 88 in file ..\Src\StartUp\cstartup.s Uses At line 223 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC0_2 used once BSP_IntHandlerADC0_3 00000000 Symbol: BSP_IntHandlerADC0_3 ARM Macro Assembler Page 2 Alphabetic symbol ordering External symbols Definitions At line 89 in file ..\Src\StartUp\cstartup.s Uses At line 224 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC0_3 used once BSP_IntHandlerADC1_0 00000000 Symbol: BSP_IntHandlerADC1_0 Definitions At line 118 in file ..\Src\StartUp\cstartup.s Uses At line 253 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC1_0 used once BSP_IntHandlerADC1_1 00000000 Symbol: BSP_IntHandlerADC1_1 Definitions At line 119 in file ..\Src\StartUp\cstartup.s Uses At line 254 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC1_1 used once BSP_IntHandlerADC1_2 00000000 Symbol: BSP_IntHandlerADC1_2 Definitions At line 120 in file ..\Src\StartUp\cstartup.s Uses At line 255 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC1_2 used once BSP_IntHandlerADC1_3 00000000 Symbol: BSP_IntHandlerADC1_3 Definitions At line 121 in file ..\Src\StartUp\cstartup.s Uses At line 256 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerADC1_3 used once BSP_IntHandlerAES 00000000 Symbol: BSP_IntHandlerAES Definitions At line 167 in file ..\Src\StartUp\cstartup.s Uses At line 306 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerAES used once BSP_IntHandlerCAN0 00000000 Symbol: BSP_IntHandlerCAN0 Definitions At line 110 in file ..\Src\StartUp\cstartup.s Uses At line 245 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerCAN0 used once BSP_IntHandlerCAN1 00000000 Symbol: BSP_IntHandlerCAN1 Definitions At line 111 in file ..\Src\StartUp\cstartup.s Uses ARM Macro Assembler Page 3 Alphabetic symbol ordering External symbols At line 246 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerCAN1 used once BSP_IntHandlerDES 00000000 Symbol: BSP_IntHandlerDES Definitions At line 168 in file ..\Src\StartUp\cstartup.s Uses At line 307 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerDES used once BSP_IntHandlerEPI0 00000000 Symbol: BSP_IntHandlerEPI0 Definitions At line 122 in file ..\Src\StartUp\cstartup.s Uses At line 257 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerEPI0 used once BSP_IntHandlerETHER_MAC 00000000 Symbol: BSP_IntHandlerETHER_MAC Definitions At line 112 in file ..\Src\StartUp\cstartup.s Uses At line 247 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerETHER_MAC used once BSP_IntHandlerFLASH 00000000 Symbol: BSP_IntHandlerFLASH Definitions At line 101 in file ..\Src\StartUp\cstartup.s Uses At line 236 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerFLASH used once BSP_IntHandlerFP 00000000 Symbol: BSP_IntHandlerFP Definitions At line 139 in file ..\Src\StartUp\cstartup.s Uses At line 274 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerFP used once BSP_IntHandlerGPIOA 00000000 Symbol: BSP_IntHandlerGPIOA Definitions At line 72 in file ..\Src\StartUp\cstartup.s Uses At line 207 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOA used once BSP_IntHandlerGPIOB 00000000 Symbol: BSP_IntHandlerGPIOB Definitions At line 73 in file ..\Src\StartUp\cstartup.s Uses At line 208 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOB used once BSP_IntHandlerGPIOC 00000000 ARM Macro Assembler Page 4 Alphabetic symbol ordering External symbols Symbol: BSP_IntHandlerGPIOC Definitions At line 74 in file ..\Src\StartUp\cstartup.s Uses At line 209 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOC used once BSP_IntHandlerGPIOD 00000000 Symbol: BSP_IntHandlerGPIOD Definitions At line 75 in file ..\Src\StartUp\cstartup.s Uses At line 210 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOD used once BSP_IntHandlerGPIOE 00000000 Symbol: BSP_IntHandlerGPIOE Definitions At line 76 in file ..\Src\StartUp\cstartup.s Uses At line 211 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOE used once BSP_IntHandlerGPIOF 00000000 Symbol: BSP_IntHandlerGPIOF Definitions At line 102 in file ..\Src\StartUp\cstartup.s Uses At line 237 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOF used once BSP_IntHandlerGPIOG 00000000 Symbol: BSP_IntHandlerGPIOG Definitions At line 103 in file ..\Src\StartUp\cstartup.s Uses At line 238 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOG used once BSP_IntHandlerGPIOH 00000000 Symbol: BSP_IntHandlerGPIOH Definitions At line 104 in file ..\Src\StartUp\cstartup.s Uses At line 239 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOH used once BSP_IntHandlerGPIOJ 00000000 Symbol: BSP_IntHandlerGPIOJ Definitions At line 123 in file ..\Src\StartUp\cstartup.s Uses At line 258 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOJ used once BSP_IntHandlerGPIOK 00000000 Symbol: BSP_IntHandlerGPIOK Definitions ARM Macro Assembler Page 5 Alphabetic symbol ordering External symbols At line 124 in file ..\Src\StartUp\cstartup.s Uses At line 259 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOK used once BSP_IntHandlerGPIOL 00000000 Symbol: BSP_IntHandlerGPIOL Definitions At line 125 in file ..\Src\StartUp\cstartup.s Uses At line 260 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOL used once BSP_IntHandlerGPIOM 00000000 Symbol: BSP_IntHandlerGPIOM Definitions At line 144 in file ..\Src\StartUp\cstartup.s Uses At line 281 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOM used once BSP_IntHandlerGPION 00000000 Symbol: BSP_IntHandlerGPION Definitions At line 145 in file ..\Src\StartUp\cstartup.s Uses At line 282 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPION used once BSP_IntHandlerGPIOP0 00000000 Symbol: BSP_IntHandlerGPIOP0 Definitions At line 148 in file ..\Src\StartUp\cstartup.s Uses At line 287 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOP0 used once BSP_IntHandlerGPIOP1 00000000 Symbol: BSP_IntHandlerGPIOP1 Definitions At line 149 in file ..\Src\StartUp\cstartup.s Uses At line 288 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOP1 used once BSP_IntHandlerGPIOP2 00000000 Symbol: BSP_IntHandlerGPIOP2 Definitions At line 150 in file ..\Src\StartUp\cstartup.s Uses At line 289 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOP2 used once BSP_IntHandlerGPIOP3 00000000 Symbol: BSP_IntHandlerGPIOP3 Definitions At line 151 in file ..\Src\StartUp\cstartup.s Uses At line 290 in file ..\Src\StartUp\cstartup.s ARM Macro Assembler Page 6 Alphabetic symbol ordering External symbols Comment: BSP_IntHandlerGPIOP3 used once BSP_IntHandlerGPIOP4 00000000 Symbol: BSP_IntHandlerGPIOP4 Definitions At line 152 in file ..\Src\StartUp\cstartup.s Uses At line 291 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOP4 used once BSP_IntHandlerGPIOP5 00000000 Symbol: BSP_IntHandlerGPIOP5 Definitions At line 153 in file ..\Src\StartUp\cstartup.s Uses At line 292 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOP5 used once BSP_IntHandlerGPIOP6 00000000 Symbol: BSP_IntHandlerGPIOP6 Definitions At line 154 in file ..\Src\StartUp\cstartup.s Uses At line 293 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOP6 used once BSP_IntHandlerGPIOP7 00000000 Symbol: BSP_IntHandlerGPIOP7 Definitions At line 155 in file ..\Src\StartUp\cstartup.s Uses At line 294 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOP7 used once BSP_IntHandlerGPIOQ0 00000000 Symbol: BSP_IntHandlerGPIOQ0 Definitions At line 156 in file ..\Src\StartUp\cstartup.s Uses At line 295 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ0 used once BSP_IntHandlerGPIOQ1 00000000 Symbol: BSP_IntHandlerGPIOQ1 Definitions At line 157 in file ..\Src\StartUp\cstartup.s Uses At line 296 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ1 used once BSP_IntHandlerGPIOQ2 00000000 Symbol: BSP_IntHandlerGPIOQ2 Definitions At line 158 in file ..\Src\StartUp\cstartup.s Uses At line 297 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ2 used once BSP_IntHandlerGPIOQ3 00000000 ARM Macro Assembler Page 7 Alphabetic symbol ordering External symbols Symbol: BSP_IntHandlerGPIOQ3 Definitions At line 159 in file ..\Src\StartUp\cstartup.s Uses At line 298 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ3 used once BSP_IntHandlerGPIOQ4 00000000 Symbol: BSP_IntHandlerGPIOQ4 Definitions At line 160 in file ..\Src\StartUp\cstartup.s Uses At line 299 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ4 used once BSP_IntHandlerGPIOQ5 00000000 Symbol: BSP_IntHandlerGPIOQ5 Definitions At line 161 in file ..\Src\StartUp\cstartup.s Uses At line 300 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ5 used once BSP_IntHandlerGPIOQ6 00000000 Symbol: BSP_IntHandlerGPIOQ6 Definitions At line 162 in file ..\Src\StartUp\cstartup.s Uses At line 301 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ6 used once BSP_IntHandlerGPIOQ7 00000000 Symbol: BSP_IntHandlerGPIOQ7 Definitions At line 163 in file ..\Src\StartUp\cstartup.s Uses At line 302 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOQ7 used once BSP_IntHandlerGPIOR 00000000 Symbol: BSP_IntHandlerGPIOR Definitions At line 164 in file ..\Src\StartUp\cstartup.s Uses At line 303 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOR used once BSP_IntHandlerGPIOS 00000000 Symbol: BSP_IntHandlerGPIOS Definitions At line 165 in file ..\Src\StartUp\cstartup.s Uses At line 304 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOS used once BSP_IntHandlerGPIOT 00000000 Symbol: BSP_IntHandlerGPIOT Definitions At line 183 in file ..\Src\StartUp\cstartup.s ARM Macro Assembler Page 8 Alphabetic symbol ordering External symbols Uses At line 326 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerGPIOT used once BSP_IntHandlerHIB 00000000 Symbol: BSP_IntHandlerHIB Definitions At line 113 in file ..\Src\StartUp\cstartup.s Uses At line 248 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerHIB used once BSP_IntHandlerI2C0 00000000 Symbol: BSP_IntHandlerI2C0 Definitions At line 80 in file ..\Src\StartUp\cstartup.s Uses At line 215 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C0 used once BSP_IntHandlerI2C1 00000000 Symbol: BSP_IntHandlerI2C1 Definitions At line 109 in file ..\Src\StartUp\cstartup.s Uses At line 244 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C1 used once BSP_IntHandlerI2C2 00000000 Symbol: BSP_IntHandlerI2C2 Definitions At line 133 in file ..\Src\StartUp\cstartup.s Uses At line 268 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C2 used once BSP_IntHandlerI2C3 00000000 Symbol: BSP_IntHandlerI2C3 Definitions At line 134 in file ..\Src\StartUp\cstartup.s Uses At line 269 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C3 used once BSP_IntHandlerI2C4 00000000 Symbol: BSP_IntHandlerI2C4 Definitions At line 142 in file ..\Src\StartUp\cstartup.s Uses At line 279 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C4 used once BSP_IntHandlerI2C5 00000000 Symbol: BSP_IntHandlerI2C5 Definitions At line 143 in file ..\Src\StartUp\cstartup.s Uses At line 280 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C5 used once ARM Macro Assembler Page 9 Alphabetic symbol ordering External symbols BSP_IntHandlerI2C6 00000000 Symbol: BSP_IntHandlerI2C6 Definitions At line 174 in file ..\Src\StartUp\cstartup.s Uses At line 313 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C6 used once BSP_IntHandlerI2C7 00000000 Symbol: BSP_IntHandlerI2C7 Definitions At line 175 in file ..\Src\StartUp\cstartup.s Uses At line 314 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C7 used once BSP_IntHandlerI2C8 00000000 Symbol: BSP_IntHandlerI2C8 Definitions At line 181 in file ..\Src\StartUp\cstartup.s Uses At line 324 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C8 used once BSP_IntHandlerI2C9 00000000 Symbol: BSP_IntHandlerI2C9 Definitions At line 182 in file ..\Src\StartUp\cstartup.s Uses At line 325 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerI2C9 used once BSP_IntHandlerLCD 00000000 Symbol: BSP_IntHandlerLCD Definitions At line 169 in file ..\Src\StartUp\cstartup.s Uses At line 308 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerLCD used once BSP_IntHandlerPWM_FAULT 00000000 Symbol: BSP_IntHandlerPWM_FAULT Definitions At line 81 in file ..\Src\StartUp\cstartup.s Uses At line 216 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerPWM_FAULT used once BSP_IntHandlerPWM_GEN0 00000000 Symbol: BSP_IntHandlerPWM_GEN0 Definitions At line 82 in file ..\Src\StartUp\cstartup.s Uses At line 217 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerPWM_GEN0 used once BSP_IntHandlerPWM_GEN1 00000000 Symbol: BSP_IntHandlerPWM_GEN1 ARM Macro Assembler Page 10 Alphabetic symbol ordering External symbols Definitions At line 83 in file ..\Src\StartUp\cstartup.s Uses At line 218 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerPWM_GEN1 used once BSP_IntHandlerPWM_GEN2 00000000 Symbol: BSP_IntHandlerPWM_GEN2 Definitions At line 84 in file ..\Src\StartUp\cstartup.s Uses At line 219 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerPWM_GEN2 used once BSP_IntHandlerPWM_GEN3 00000000 Symbol: BSP_IntHandlerPWM_GEN3 Definitions At line 115 in file ..\Src\StartUp\cstartup.s Uses At line 250 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerPWM_GEN3 used once BSP_IntHandlerQEI0 00000000 Symbol: BSP_IntHandlerQEI0 Definitions At line 85 in file ..\Src\StartUp\cstartup.s Uses At line 220 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerQEI0 used once BSP_IntHandlerRSVD104 00000000 Symbol: BSP_IntHandlerRSVD104 Definitions At line 176 in file ..\Src\StartUp\cstartup.s Uses At line 316 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerRSVD104 used once BSP_IntHandlerRSVD106 00000000 Symbol: BSP_IntHandlerRSVD106 Definitions At line 178 in file ..\Src\StartUp\cstartup.s Uses At line 320 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerRSVD106 used once BSP_IntHandlerRSVD107 00000000 Symbol: BSP_IntHandlerRSVD107 Definitions At line 179 in file ..\Src\StartUp\cstartup.s Uses At line 321 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerRSVD107 used once BSP_IntHandlerRSVD108 00000000 Symbol: BSP_IntHandlerRSVD108 Definitions At line 180 in file ..\Src\StartUp\cstartup.s Uses ARM Macro Assembler Page 11 Alphabetic symbol ordering External symbols At line 322 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerRSVD108 used once BSP_IntHandlerRSVD68 00000000 Symbol: BSP_IntHandlerRSVD68 Definitions At line 140 in file ..\Src\StartUp\cstartup.s Uses At line 276 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerRSVD68 used once BSP_IntHandlerRSVD69 00000000 Symbol: BSP_IntHandlerRSVD69 Definitions At line 141 in file ..\Src\StartUp\cstartup.s Uses At line 277 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerRSVD69 used once BSP_IntHandlerRSVD74 00000000 Symbol: BSP_IntHandlerRSVD74 Definitions At line 146 in file ..\Src\StartUp\cstartup.s Uses At line 284 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerRSVD74 used once BSP_IntHandlerSHA_MD5 00000000 Symbol: BSP_IntHandlerSHA_MD5 Definitions At line 166 in file ..\Src\StartUp\cstartup.s Uses At line 305 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerSHA_MD5 used once BSP_IntHandlerSSI0 00000000 Symbol: BSP_IntHandlerSSI0 Definitions At line 79 in file ..\Src\StartUp\cstartup.s Uses At line 214 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerSSI0 used once BSP_IntHandlerSSI1 00000000 Symbol: BSP_IntHandlerSSI1 Definitions At line 106 in file ..\Src\StartUp\cstartup.s Uses At line 241 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerSSI1 used once BSP_IntHandlerSSI2 00000000 Symbol: BSP_IntHandlerSSI2 Definitions At line 126 in file ..\Src\StartUp\cstartup.s Uses At line 261 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerSSI2 used once BSP_IntHandlerSSI3 00000000 ARM Macro Assembler Page 12 Alphabetic symbol ordering External symbols Symbol: BSP_IntHandlerSSI3 Definitions At line 127 in file ..\Src\StartUp\cstartup.s Uses At line 262 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerSSI3 used once BSP_IntHandlerSYS_CTRL 00000000 Symbol: BSP_IntHandlerSYS_CTRL Definitions At line 100 in file ..\Src\StartUp\cstartup.s Uses At line 235 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerSYS_CTRL used once BSP_IntHandlerTAMPER 00000000 Symbol: BSP_IntHandlerTAMPER Definitions At line 147 in file ..\Src\StartUp\cstartup.s Uses At line 286 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTAMPER used once BSP_IntHandlerTMR0A 00000000 Symbol: BSP_IntHandlerTMR0A Definitions At line 91 in file ..\Src\StartUp\cstartup.s Uses At line 226 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR0A used once BSP_IntHandlerTMR0B 00000000 Symbol: BSP_IntHandlerTMR0B Definitions At line 92 in file ..\Src\StartUp\cstartup.s Uses At line 227 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR0B used once BSP_IntHandlerTMR1A 00000000 Symbol: BSP_IntHandlerTMR1A Definitions At line 93 in file ..\Src\StartUp\cstartup.s Uses At line 228 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR1A used once BSP_IntHandlerTMR1B 00000000 Symbol: BSP_IntHandlerTMR1B Definitions At line 94 in file ..\Src\StartUp\cstartup.s Uses At line 229 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR1B used once BSP_IntHandlerTMR2A 00000000 Symbol: BSP_IntHandlerTMR2A Definitions ARM Macro Assembler Page 13 Alphabetic symbol ordering External symbols At line 95 in file ..\Src\StartUp\cstartup.s Uses At line 230 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR2A used once BSP_IntHandlerTMR2B 00000000 Symbol: BSP_IntHandlerTMR2B Definitions At line 96 in file ..\Src\StartUp\cstartup.s Uses At line 231 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR2B used once BSP_IntHandlerTMR3A 00000000 Symbol: BSP_IntHandlerTMR3A Definitions At line 107 in file ..\Src\StartUp\cstartup.s Uses At line 242 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR3A used once BSP_IntHandlerTMR3B 00000000 Symbol: BSP_IntHandlerTMR3B Definitions At line 108 in file ..\Src\StartUp\cstartup.s Uses At line 243 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR3B used once BSP_IntHandlerTMR4A 00000000 Symbol: BSP_IntHandlerTMR4A Definitions At line 135 in file ..\Src\StartUp\cstartup.s Uses At line 270 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR4A used once BSP_IntHandlerTMR4B 00000000 Symbol: BSP_IntHandlerTMR4B Definitions At line 136 in file ..\Src\StartUp\cstartup.s Uses At line 271 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR4B used once BSP_IntHandlerTMR5A 00000000 Symbol: BSP_IntHandlerTMR5A Definitions At line 137 in file ..\Src\StartUp\cstartup.s Uses At line 272 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR5A used once BSP_IntHandlerTMR5B 00000000 Symbol: BSP_IntHandlerTMR5B Definitions At line 138 in file ..\Src\StartUp\cstartup.s Uses At line 273 in file ..\Src\StartUp\cstartup.s ARM Macro Assembler Page 14 Alphabetic symbol ordering External symbols Comment: BSP_IntHandlerTMR5B used once BSP_IntHandlerTMR6A 00000000 Symbol: BSP_IntHandlerTMR6A Definitions At line 170 in file ..\Src\StartUp\cstartup.s Uses At line 309 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR6A used once BSP_IntHandlerTMR6B 00000000 Symbol: BSP_IntHandlerTMR6B Definitions At line 171 in file ..\Src\StartUp\cstartup.s Uses At line 310 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR6B used once BSP_IntHandlerTMR7A 00000000 Symbol: BSP_IntHandlerTMR7A Definitions At line 172 in file ..\Src\StartUp\cstartup.s Uses At line 311 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR7A used once BSP_IntHandlerTMR7B 00000000 Symbol: BSP_IntHandlerTMR7B Definitions At line 173 in file ..\Src\StartUp\cstartup.s Uses At line 312 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerTMR7B used once BSP_IntHandlerUART0 00000000 Symbol: BSP_IntHandlerUART0 Definitions At line 77 in file ..\Src\StartUp\cstartup.s Uses At line 212 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART0 used once BSP_IntHandlerUART1 00000000 Symbol: BSP_IntHandlerUART1 Definitions At line 78 in file ..\Src\StartUp\cstartup.s Uses At line 213 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART1 used once BSP_IntHandlerUART2 00000000 Symbol: BSP_IntHandlerUART2 Definitions At line 105 in file ..\Src\StartUp\cstartup.s Uses At line 240 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART2 used once BSP_IntHandlerUART3 00000000 ARM Macro Assembler Page 15 Alphabetic symbol ordering External symbols Symbol: BSP_IntHandlerUART3 Definitions At line 128 in file ..\Src\StartUp\cstartup.s Uses At line 263 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART3 used once BSP_IntHandlerUART4 00000000 Symbol: BSP_IntHandlerUART4 Definitions At line 129 in file ..\Src\StartUp\cstartup.s Uses At line 264 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART4 used once BSP_IntHandlerUART5 00000000 Symbol: BSP_IntHandlerUART5 Definitions At line 130 in file ..\Src\StartUp\cstartup.s Uses At line 265 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART5 used once BSP_IntHandlerUART6 00000000 Symbol: BSP_IntHandlerUART6 Definitions At line 131 in file ..\Src\StartUp\cstartup.s Uses At line 266 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART6 used once BSP_IntHandlerUART7 00000000 Symbol: BSP_IntHandlerUART7 Definitions At line 132 in file ..\Src\StartUp\cstartup.s Uses At line 267 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUART7 used once BSP_IntHandlerUDAM0_ERR 00000000 Symbol: BSP_IntHandlerUDAM0_ERR Definitions At line 117 in file ..\Src\StartUp\cstartup.s Uses At line 252 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUDAM0_ERR used once BSP_IntHandlerUDMA0_SOFT 00000000 Symbol: BSP_IntHandlerUDMA0_SOFT Definitions At line 116 in file ..\Src\StartUp\cstartup.s Uses At line 251 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUDMA0_SOFT used once BSP_IntHandlerUSB_MAC 00000000 Symbol: BSP_IntHandlerUSB_MAC Definitions At line 114 in file ..\Src\StartUp\cstartup.s ARM Macro Assembler Page 16 Alphabetic symbol ordering External symbols Uses At line 249 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerUSB_MAC used once BSP_IntHandlerWDTO_WDT1 00000000 Symbol: BSP_IntHandlerWDTO_WDT1 Definitions At line 90 in file ..\Src\StartUp\cstartup.s Uses At line 225 in file ..\Src\StartUp\cstartup.s Comment: BSP_IntHandlerWDTO_WDT1 used once OS_CPU_PendSVHandler 00000000 Symbol: OS_CPU_PendSVHandler Definitions At line 185 in file ..\Src\StartUp\cstartup.s Uses At line 202 in file ..\Src\StartUp\cstartup.s Comment: OS_CPU_PendSVHandler used once OS_CPU_SysTickHandler 00000000 Symbol: OS_CPU_SysTickHandler Definitions At line 186 in file ..\Src\StartUp\cstartup.s Uses At line 203 in file ..\Src\StartUp\cstartup.s Comment: OS_CPU_SysTickHandler used once __main 00000000 Symbol: __main Definitions At line 339 in file ..\Src\StartUp\cstartup.s Uses At line 359 in file ..\Src\StartUp\cstartup.s Comment: __main used once 115 symbols 473 symbols in table