ARM Macro Assembler Page 1 1 00000000 ;/*! 2 00000000 ; \file startup_gd32f10x_xd.s 3 00000000 ; \brief start up file 4 00000000 ; 5 00000000 ; \version 2014-12-26, V1.0.0, firmware for GD32F10x 6 00000000 ; \version 2017-06-20, V2.0.0, firmware for GD32F10x 7 00000000 ; \version 2018-07-31, V2.1.0, firmware for GD32F10x 8 00000000 ;*/ 9 00000000 ; 10 00000000 ;/* 11 00000000 ; Copyright (c) 2018, GigaDevice Semiconductor Inc. 12 00000000 ; 13 00000000 ; All rights reserved. 14 00000000 ; 15 00000000 ; Redistribution and use in source and binary forms, with or without modification, 16 00000000 ;are permitted provided that the following conditions ar e met: 17 00000000 ; 18 00000000 ; 1. Redistributions of source code must retain the a bove copyright notice, this 19 00000000 ; list of conditions and the following disclaimer. 20 00000000 ; 2. Redistributions in binary form must reproduce th e above copyright notice, 21 00000000 ; this list of conditions and the following discla imer in the documentation 22 00000000 ; and/or other materials provided with the distrib ution. 23 00000000 ; 3. Neither the name of the copyright holder nor the names of its contributors 24 00000000 ; may be used to endorse or promote products deriv ed from this software without 25 00000000 ; specific prior written permission. 26 00000000 ; 27 00000000 ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 28 00000000 ;AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT N OT LIMITED TO, THE IMPLIED 29 00000000 ;WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICU LAR PURPOSE ARE DISCLAIMED. 30 00000000 ;IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 31 00000000 ;INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENT IAL DAMAGES (INCLUDING, BUT 32 00000000 ;NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERV ICES; LOSS OF USE, DATA, OR 33 00000000 ;PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N ANY THEORY OF LIABILITY, 34 00000000 ;WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDI NG NEGLIGENCE OR OTHERWISE) 35 00000000 ;ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVE N IF ADVISED OF THE POSSIBILITY 36 00000000 ;OF SUCH DAMAGE. 37 00000000 ;*/ 38 00000000 39 00000000 ; Stack Configuration 40 00000000 ; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> 41 00000000 ; ARM Macro Assembler Page 2 42 00000000 43 00000000 00001000 Stack_Size EQU 0x00001000 44 00000000 45 00000000 AREA STACK, NOINIT, READWRITE, ALIGN = 3 46 00000000 Stack_Mem SPACE Stack_Size 47 00001000 __initial_sp 48 00001000 49 00001000 50 00001000 ; Heap Configuration 51 00001000 ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> 52 00001000 ; 53 00001000 54 00001000 00010000 Heap_Size EQU 0x00010000 55 00001000 56 00001000 AREA HEAP, NOINIT, READWRITE, ALIGN = 3 57 00000000 __heap_base 58 00000000 Heap_Mem SPACE Heap_Size 59 00010000 __heap_limit 60 00010000 61 00010000 62 00010000 PRESERVE8 63 00010000 THUMB 64 00010000 65 00010000 ; /* reset Vector Mapped to at Address 0 */ 66 00010000 AREA RESET, DATA, READONLY 67 00000000 EXPORT __Vectors 68 00000000 EXPORT __Vectors_End 69 00000000 EXPORT __Vectors_Size 70 00000000 71 00000000 00000000 __Vectors DCD __initial_sp ; Top of Stack 72 00000004 00000000 DCD Reset_Handler ; Reset Handler 73 00000008 00000000 DCD NMI_Handler ; NMI Handler 74 0000000C 00000000 DCD HardFault_Handler ; Hard Fault Handler 75 00000010 00000000 DCD MemManage_Handler ; MPU Fault Handler 76 00000014 00000000 DCD BusFault_Handler ; Bus Fault Handler 77 00000018 00000000 DCD UsageFault_Handler ; Usage Faul t Handler 78 0000001C 00000000 DCD 0 ; Reserved 79 00000020 00000000 DCD 0 ; Reserved 80 00000024 00000000 DCD 0 ; Reserved 81 00000028 00000000 DCD 0 ; Reserved 82 0000002C 00000000 DCD SVC_Handler ; SVCall Handler 83 00000030 00000000 DCD DebugMon_Handler ; Debug Monito ARM Macro Assembler Page 3 r Handler 84 00000034 00000000 DCD 0 ; Reserved 85 00000038 00000000 DCD PendSV_Handler ; PendSV Handler 86 0000003C 00000000 DCD SysTick_Handler ; SysTick Handler 87 00000040 88 00000040 ; /* external interrupts handler */ 89 00000040 00000000 DCD WWDGT_IRQHandler ; 16:Window Wa tchdog Timer 90 00000044 00000000 DCD LVD_IRQHandler ; 17:LVD through EXTI Line detect 91 00000048 00000000 DCD TAMPER_IRQHandler ; 18:Tamper I nterrupt 92 0000004C 00000000 DCD RTC_IRQHandler ; 19:RTC through EXTI Line 93 00000050 00000000 DCD FMC_IRQHandler ; 20:FMC 94 00000054 00000000 DCD RCU_IRQHandler ; 21:RCU 95 00000058 00000000 DCD EXTI0_IRQHandler ; 22:EXTI Line 0 96 0000005C 00000000 DCD EXTI1_IRQHandler ; 23:EXTI Line 1 97 00000060 00000000 DCD EXTI2_IRQHandler ; 24:EXTI Line 2 98 00000064 00000000 DCD EXTI3_IRQHandler ; 25:EXTI Line 3 99 00000068 00000000 DCD EXTI4_IRQHandler ; 26:EXTI Line 4 100 0000006C 00000000 DCD DMA0_Channel0_IRQHandler ; 27:DMA0 Channel 0 101 00000070 00000000 DCD DMA0_Channel1_IRQHandler ; 28:DMA0 Channel 1 102 00000074 00000000 DCD DMA0_Channel2_IRQHandler ; 29:DMA0 Channel 2 103 00000078 00000000 DCD DMA0_Channel3_IRQHandler ; 30:DMA0 Channel 3 104 0000007C 00000000 DCD DMA0_Channel4_IRQHandler ; 31:DMA0 Channel 4 105 00000080 00000000 DCD DMA0_Channel5_IRQHandler ; 32:D MA0 Channel 5 106 00000084 00000000 DCD DMA0_Channel6_IRQHandler ; 33:DMA0 Channel 6 107 00000088 00000000 DCD ADC0_1_IRQHandler ; 34:ADC0 and ADC1 108 0000008C 00000000 DCD USBD_HP_CAN0_TX_IRQHandler ; 35 :USBD and CAN0 TX 109 00000090 00000000 DCD USBD_LP_CAN0_RX0_IRQHandler ; 3 6:USBD and CAN0 RX0 110 00000094 00000000 DCD CAN0_RX1_IRQHandler ; 37:CAN0 RX1 111 00000098 00000000 DCD CAN0_EWMC_IRQHandler ; 38:CAN0 EWMC ARM Macro Assembler Page 4 112 0000009C 00000000 DCD EXTI5_9_IRQHandler ; 39:EXTI Li ne 5 to EXTI Line 9 113 000000A0 00000000 DCD TIMER0_BRK_TIMER8_IRQHandler ; 40:TIMER0 Break and TIMER8 global 114 000000A4 00000000 DCD TIMER0_UP_TIMER9_IRQHandler ; 4 1:TIMER0 Update and TIMER9 global 115 000000A8 00000000 DCD TIMER0_TRG_CMT_TIMER10_IRQHandl er ; 42:TIMER0 Trigger and Commutation an d TIMER10 global 116 000000AC 00000000 DCD TIMER0_Channel_IRQHandler ; 43: TIMER0 Channel Capt ure Compare 117 000000B0 00000000 DCD TIMER1_IRQHandler ; 44:TIMER1 118 000000B4 00000000 DCD TIMER2_IRQHandler ; 45:TIMER2 119 000000B8 00000000 DCD TIMER3_IRQHandler ; 46:TIMER3 120 000000BC 00000000 DCD I2C0_EV_IRQHandler ; 47:I2C0 Event 121 000000C0 00000000 DCD I2C0_ER_IRQHandler ; 48:I2C0 Error 122 000000C4 00000000 DCD I2C1_EV_IRQHandler ; 49:I2C1 Event 123 000000C8 00000000 DCD I2C1_ER_IRQHandler ; 50:I2C1 Error 124 000000CC 00000000 DCD SPI0_IRQHandler ; 51:SPI0 125 000000D0 00000000 DCD SPI1_IRQHandler ; 52:SPI1 126 000000D4 00000000 DCD USART0_IRQHandler ; 53:USART0 127 000000D8 00000000 DCD USART1_IRQHandler ; 54:USART1 128 000000DC 00000000 DCD USART2_IRQHandler ; 55:USART2 129 000000E0 00000000 DCD EXTI10_15_IRQHandler ; 56:EXTI Line 10 to EXTI Lin e 15 130 000000E4 00000000 DCD RTC_Alarm_IRQHandler ; 57:RTC A larm through EXTI L ine 131 000000E8 00000000 DCD USBD_WKUP_IRQHandler ; 58:USBD WakeUp from suspend through EXTI Line 132 000000EC 00000000 DCD TIMER7_BRK_TIMER11_IRQHandler ; 59:TIMER7 Break In terrupt and TIMER11 global 133 000000F0 00000000 DCD TIMER7_UP_TIMER12_IRQHandler ; 60:TIMER7 Update In terrupt and TIMER12 global 134 000000F4 00000000 DCD TIMER7_TRG_CMT_TIMER13_IRQHandl er ; 61:TIMER7 Trigger and Commutation In terrupt and TIMER13 global 135 000000F8 00000000 DCD TIMER7_Channel_IRQHandler ; 62: TIMER7 Channel Capt ure Compare ARM Macro Assembler Page 5 136 000000FC 00000000 DCD ADC2_IRQHandler ; 63:ADC2 137 00000100 00000000 DCD EXMC_IRQHandler ; 64:EXMC 138 00000104 00000000 DCD SDIO_IRQHandler ; 65:SDIO 139 00000108 00000000 DCD TIMER4_IRQHandler ; 66:TIMER4 140 0000010C 00000000 DCD SPI2_IRQHandler ; 67:SPI2 141 00000110 00000000 DCD UART3_IRQHandler ; 68:UART3 142 00000114 00000000 DCD UART4_IRQHandler ; 69:UART4 143 00000118 00000000 DCD TIMER5_IRQHandler ; 70:TIMER5 144 0000011C 00000000 DCD TIMER6_IRQHandler ; 71:TIMER6 145 00000120 00000000 DCD DMA1_Channel0_IRQHandler ; 72:DMA1 Channel0 146 00000124 00000000 DCD DMA1_Channel1_IRQHandler ; 73:DMA1 Channel1 147 00000128 00000000 DCD DMA1_Channel2_IRQHandler ; 74:DMA1 Channel2 148 0000012C 00000000 DCD DMA1_Channel3_4_IRQHandler ; 75 :DMA1 Channel3 and Channel4 149 00000130 150 00000130 __Vectors_End 151 00000130 152 00000130 00000130 __Vectors_Size EQU __Vectors_End - __Vectors 153 00000130 154 00000130 AREA |.text|, CODE, READONLY 155 00000000 156 00000000 ;/* reset Handler */ 157 00000000 Reset_Handler PROC 158 00000000 EXPORT Reset_Handler [WEAK] 159 00000000 IMPORT __main 160 00000000 IMPORT SystemInit 161 00000000 4806 LDR R0, =SystemInit 162 00000002 4780 BLX R0 163 00000004 4806 LDR R0, =__main 164 00000006 4700 BX R0 165 00000008 ENDP 166 00000008 167 00000008 ;/* dummy Exception Handlers */ 168 00000008 NMI_Handler PROC 169 00000008 EXPORT NMI_Handler [WEAK] 170 00000008 E7FE B . 171 0000000A ENDP 172 0000000A 173 0000000A HardFault_Handler PROC 174 0000000A EXPORT HardFault_Handler [WEAK] 175 0000000A E7FE B . 176 0000000C ENDP 177 0000000C 178 0000000C MemManage_Handler PROC 179 0000000C EXPORT MemManage_Handler [WEAK] ARM Macro Assembler Page 6 180 0000000C E7FE B . 181 0000000E ENDP 182 0000000E 183 0000000E BusFault_Handler PROC 184 0000000E EXPORT BusFault_Handler [WEAK] 185 0000000E E7FE B . 186 00000010 ENDP 187 00000010 188 00000010 UsageFault_Handler PROC 189 00000010 EXPORT UsageFault_Handler [WEAK] 190 00000010 E7FE B . 191 00000012 ENDP 192 00000012 193 00000012 SVC_Handler PROC 194 00000012 EXPORT SVC_Handler [WEAK] 195 00000012 E7FE B . 196 00000014 ENDP 197 00000014 198 00000014 DebugMon_Handler PROC 199 00000014 EXPORT DebugMon_Handler [WEAK] 200 00000014 E7FE B . 201 00000016 ENDP 202 00000016 203 00000016 PendSV_Handler PROC 204 00000016 EXPORT PendSV_Handler [WEAK] 205 00000016 E7FE B . 206 00000018 ENDP 207 00000018 208 00000018 SysTick_Handler PROC 209 00000018 EXPORT SysTick_Handler [WEAK] 210 00000018 E7FE B . 211 0000001A ENDP 212 0000001A 213 0000001A Default_Handler PROC 214 0000001A ; /* external interrupts handler */ 215 0000001A EXPORT WWDGT_IRQHandler [WEAK] 216 0000001A EXPORT LVD_IRQHandler [WEAK] 217 0000001A EXPORT TAMPER_IRQHandler [WEAK] 218 0000001A EXPORT RTC_IRQHandler [WEAK] 219 0000001A EXPORT FMC_IRQHandler [WEAK] ARM Macro Assembler Page 7 220 0000001A EXPORT RCU_IRQHandler [WEAK] 221 0000001A EXPORT EXTI0_IRQHandler [WEAK] 222 0000001A EXPORT EXTI1_IRQHandler [WEAK] 223 0000001A EXPORT EXTI2_IRQHandler [WEAK] 224 0000001A EXPORT EXTI3_IRQHandler [WEAK] 225 0000001A EXPORT EXTI4_IRQHandler [WEAK] 226 0000001A EXPORT DMA0_Channel0_IRQHandler [WEAK] 227 0000001A EXPORT DMA0_Channel1_IRQHandler [WEAK] 228 0000001A EXPORT DMA0_Channel2_IRQHandler [WEAK] 229 0000001A EXPORT DMA0_Channel3_IRQHandler [WEAK] 230 0000001A EXPORT DMA0_Channel4_IRQHandler [WEAK] 231 0000001A EXPORT DMA0_Channel5_IRQHandler [WEAK] 232 0000001A EXPORT DMA0_Channel6_IRQHandler [WEAK] 233 0000001A EXPORT ADC0_1_IRQHandler [WEAK] 234 0000001A EXPORT USBD_HP_CAN0_TX_IRQHandler [WEAK] 235 0000001A EXPORT USBD_LP_CAN0_RX0_IRQHandler [WEAK] 236 0000001A EXPORT CAN0_RX1_IRQHandler [WEAK] 237 0000001A EXPORT CAN0_EWMC_IRQHandler [WEAK] 238 0000001A EXPORT EXTI5_9_IRQHandler [WEAK] 239 0000001A EXPORT TIMER0_BRK_TIMER8_IRQHandler [WEAK] 240 0000001A EXPORT TIMER0_UP_TIMER9_IRQHandler [WEAK] 241 0000001A EXPORT TIMER0_TRG_CMT_TIMER10_IRQHandl er [WEAK] 242 0000001A EXPORT TIMER0_Channel_IRQHandler [WEAK] 243 0000001A EXPORT TIMER1_IRQHandler [WEAK] 244 0000001A EXPORT TIMER2_IRQHandler [WEAK] 245 0000001A EXPORT TIMER3_IRQHandler [WEAK] 246 0000001A EXPORT I2C0_EV_IRQHandler [WEAK] 247 0000001A EXPORT I2C0_ER_IRQHandler [WEAK] 248 0000001A EXPORT I2C1_EV_IRQHandler [WEAK] 249 0000001A EXPORT I2C1_ER_IRQHandler ARM Macro Assembler Page 8 [WEAK] 250 0000001A EXPORT SPI0_IRQHandler [WEAK] 251 0000001A EXPORT SPI1_IRQHandler [WEAK] 252 0000001A EXPORT USART0_IRQHandler [WEAK] 253 0000001A EXPORT USART1_IRQHandler [WEAK] 254 0000001A EXPORT USART2_IRQHandler [WEAK] 255 0000001A EXPORT EXTI10_15_IRQHandler [WEAK] 256 0000001A EXPORT RTC_Alarm_IRQHandler [WEAK] 257 0000001A EXPORT USBD_WKUP_IRQHandler [WEAK] 258 0000001A EXPORT TIMER7_BRK_TIMER11_IRQHandler [WEAK] 259 0000001A EXPORT TIMER7_UP_TIMER12_IRQHandler [WEAK] 260 0000001A EXPORT TIMER7_TRG_CMT_TIMER13_IRQHandl er [WEAK] 261 0000001A EXPORT TIMER7_Channel_IRQHandler [WEAK] 262 0000001A EXPORT ADC2_IRQHandler [WEAK] 263 0000001A EXPORT EXMC_IRQHandler [WEAK] 264 0000001A EXPORT SDIO_IRQHandler [WEAK] 265 0000001A EXPORT TIMER4_IRQHandler [WEAK] 266 0000001A EXPORT SPI2_IRQHandler [WEAK] 267 0000001A EXPORT UART3_IRQHandler [WEAK] 268 0000001A EXPORT UART4_IRQHandler [WEAK] 269 0000001A EXPORT TIMER5_IRQHandler [WEAK] 270 0000001A EXPORT TIMER6_IRQHandler [WEAK] 271 0000001A EXPORT DMA1_Channel0_IRQHandler [WEAK] 272 0000001A EXPORT DMA1_Channel1_IRQHandler [WEAK] 273 0000001A EXPORT DMA1_Channel2_IRQHandler [WEAK] 274 0000001A EXPORT DMA1_Channel3_4_IRQHandler [WEAK] 275 0000001A 276 0000001A 277 0000001A ;/* external interrupts handler */ 278 0000001A WWDGT_IRQHandler 279 0000001A LVD_IRQHandler 280 0000001A TAMPER_IRQHandler 281 0000001A RTC_IRQHandler 282 0000001A FMC_IRQHandler ARM Macro Assembler Page 9 283 0000001A RCU_IRQHandler 284 0000001A EXTI0_IRQHandler 285 0000001A EXTI1_IRQHandler 286 0000001A EXTI2_IRQHandler 287 0000001A EXTI3_IRQHandler 288 0000001A EXTI4_IRQHandler 289 0000001A DMA0_Channel0_IRQHandler 290 0000001A DMA0_Channel1_IRQHandler 291 0000001A DMA0_Channel2_IRQHandler 292 0000001A DMA0_Channel3_IRQHandler 293 0000001A DMA0_Channel4_IRQHandler 294 0000001A DMA0_Channel5_IRQHandler 295 0000001A DMA0_Channel6_IRQHandler 296 0000001A ADC0_1_IRQHandler 297 0000001A USBD_HP_CAN0_TX_IRQHandler 298 0000001A USBD_LP_CAN0_RX0_IRQHandler 299 0000001A CAN0_RX1_IRQHandler 300 0000001A CAN0_EWMC_IRQHandler 301 0000001A EXTI5_9_IRQHandler 302 0000001A TIMER0_BRK_TIMER8_IRQHandler 303 0000001A TIMER0_UP_TIMER9_IRQHandler 304 0000001A TIMER0_TRG_CMT_TIMER10_IRQHandler 305 0000001A TIMER0_Channel_IRQHandler 306 0000001A TIMER1_IRQHandler 307 0000001A TIMER2_IRQHandler 308 0000001A TIMER3_IRQHandler 309 0000001A I2C0_EV_IRQHandler 310 0000001A I2C0_ER_IRQHandler 311 0000001A I2C1_EV_IRQHandler 312 0000001A I2C1_ER_IRQHandler 313 0000001A SPI0_IRQHandler 314 0000001A SPI1_IRQHandler 315 0000001A USART0_IRQHandler 316 0000001A USART1_IRQHandler 317 0000001A USART2_IRQHandler 318 0000001A EXTI10_15_IRQHandler 319 0000001A RTC_Alarm_IRQHandler 320 0000001A USBD_WKUP_IRQHandler 321 0000001A TIMER7_BRK_TIMER11_IRQHandler 322 0000001A TIMER7_UP_TIMER12_IRQHandler 323 0000001A TIMER7_TRG_CMT_TIMER13_IRQHandler 324 0000001A TIMER7_Channel_IRQHandler 325 0000001A ADC2_IRQHandler 326 0000001A EXMC_IRQHandler 327 0000001A SDIO_IRQHandler 328 0000001A TIMER4_IRQHandler 329 0000001A SPI2_IRQHandler 330 0000001A UART3_IRQHandler 331 0000001A UART4_IRQHandler 332 0000001A TIMER5_IRQHandler 333 0000001A TIMER6_IRQHandler 334 0000001A DMA1_Channel0_IRQHandler 335 0000001A DMA1_Channel1_IRQHandler 336 0000001A DMA1_Channel2_IRQHandler 337 0000001A DMA1_Channel3_4_IRQHandler 338 0000001A 339 0000001A 340 0000001A 341 0000001A E7FE B . ARM Macro Assembler Page 10 342 0000001C ENDP 343 0000001C 344 0000001C ALIGN 345 0000001C 346 0000001C ; user Initial Stack & Heap 347 0000001C 348 0000001C IF :DEF:__MICROLIB 349 0000001C 350 0000001C EXPORT __initial_sp 351 0000001C EXPORT __heap_base 352 0000001C EXPORT __heap_limit 353 0000001C 354 0000001C ELSE 369 ENDIF 370 0000001C 371 0000001C END 00000000 00000000 Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M3 --apcs=interw ork --depend=..\obj\startup_gd32f10x_xd.d -o..\obj\startup_gd32f10x_xd.o -ID:\s oftware\MDK5\Pack\GigaDevice\GD32F10x_DFP\2.1.0\Device\Include --predefine="__M ICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 536" --predefine="GD32F10X_ XD SETA 1" --predefine="USE_STDPERIPH_DRIVER SETA 1" --list=.\listings\startup_ gd32f10x_xd.lst ..\CMSIS\Source\startup_gd32f10x_xd.s ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols STACK 00000000 Symbol: STACK Definitions At line 45 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses None Comment: STACK unused Stack_Mem 00000000 Symbol: Stack_Mem Definitions At line 46 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses None Comment: Stack_Mem unused __initial_sp 00001000 Symbol: __initial_sp Definitions At line 47 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 71 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 350 in file ..\CMSIS\Source\startup_gd32f10x_xd.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols HEAP 00000000 Symbol: HEAP Definitions At line 56 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses None Comment: HEAP unused Heap_Mem 00000000 Symbol: Heap_Mem Definitions At line 58 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses None Comment: Heap_Mem unused __heap_base 00000000 Symbol: __heap_base Definitions At line 57 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 351 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Comment: __heap_base used once __heap_limit 00010000 Symbol: __heap_limit Definitions At line 59 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 352 in file ..\CMSIS\Source\startup_gd32f10x_xd.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 66 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses None Comment: RESET unused __Vectors 00000000 Symbol: __Vectors Definitions At line 71 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 67 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 152 in file ..\CMSIS\Source\startup_gd32f10x_xd.s __Vectors_End 00000130 Symbol: __Vectors_End Definitions At line 150 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 68 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 152 in file ..\CMSIS\Source\startup_gd32f10x_xd.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols .text 00000000 Symbol: .text Definitions At line 154 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses None Comment: .text unused ADC0_1_IRQHandler 0000001A Symbol: ADC0_1_IRQHandler Definitions At line 296 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 107 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 233 in file ..\CMSIS\Source\startup_gd32f10x_xd.s ADC2_IRQHandler 0000001A Symbol: ADC2_IRQHandler Definitions At line 325 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 136 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 262 in file ..\CMSIS\Source\startup_gd32f10x_xd.s BusFault_Handler 0000000E Symbol: BusFault_Handler Definitions At line 183 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 76 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 184 in file ..\CMSIS\Source\startup_gd32f10x_xd.s CAN0_EWMC_IRQHandler 0000001A Symbol: CAN0_EWMC_IRQHandler Definitions At line 300 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 111 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 237 in file ..\CMSIS\Source\startup_gd32f10x_xd.s CAN0_RX1_IRQHandler 0000001A Symbol: CAN0_RX1_IRQHandler Definitions At line 299 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 110 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 236 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA0_Channel0_IRQHandler 0000001A Symbol: DMA0_Channel0_IRQHandler Definitions At line 289 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses ARM Macro Assembler Page 2 Alphabetic symbol ordering Relocatable symbols At line 100 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 226 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA0_Channel1_IRQHandler 0000001A Symbol: DMA0_Channel1_IRQHandler Definitions At line 290 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 101 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 227 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA0_Channel2_IRQHandler 0000001A Symbol: DMA0_Channel2_IRQHandler Definitions At line 291 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 102 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 228 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA0_Channel3_IRQHandler 0000001A Symbol: DMA0_Channel3_IRQHandler Definitions At line 292 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 103 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 229 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA0_Channel4_IRQHandler 0000001A Symbol: DMA0_Channel4_IRQHandler Definitions At line 293 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 104 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 230 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA0_Channel5_IRQHandler 0000001A Symbol: DMA0_Channel5_IRQHandler Definitions At line 294 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 105 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 231 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA0_Channel6_IRQHandler 0000001A Symbol: DMA0_Channel6_IRQHandler Definitions At line 295 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 106 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 232 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA1_Channel0_IRQHandler 0000001A ARM Macro Assembler Page 3 Alphabetic symbol ordering Relocatable symbols Symbol: DMA1_Channel0_IRQHandler Definitions At line 334 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 145 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 271 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA1_Channel1_IRQHandler 0000001A Symbol: DMA1_Channel1_IRQHandler Definitions At line 335 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 146 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 272 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA1_Channel2_IRQHandler 0000001A Symbol: DMA1_Channel2_IRQHandler Definitions At line 336 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 147 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 273 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DMA1_Channel3_4_IRQHandler 0000001A Symbol: DMA1_Channel3_4_IRQHandler Definitions At line 337 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 148 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 274 in file ..\CMSIS\Source\startup_gd32f10x_xd.s DebugMon_Handler 00000014 Symbol: DebugMon_Handler Definitions At line 198 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 83 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 199 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Default_Handler 0000001A Symbol: Default_Handler Definitions At line 213 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses None Comment: Default_Handler unused EXMC_IRQHandler 0000001A Symbol: EXMC_IRQHandler Definitions At line 326 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 137 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 263 in file ..\CMSIS\Source\startup_gd32f10x_xd.s ARM Macro Assembler Page 4 Alphabetic symbol ordering Relocatable symbols EXTI0_IRQHandler 0000001A Symbol: EXTI0_IRQHandler Definitions At line 284 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 95 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 221 in file ..\CMSIS\Source\startup_gd32f10x_xd.s EXTI10_15_IRQHandler 0000001A Symbol: EXTI10_15_IRQHandler Definitions At line 318 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 129 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 255 in file ..\CMSIS\Source\startup_gd32f10x_xd.s EXTI1_IRQHandler 0000001A Symbol: EXTI1_IRQHandler Definitions At line 285 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 96 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 222 in file ..\CMSIS\Source\startup_gd32f10x_xd.s EXTI2_IRQHandler 0000001A Symbol: EXTI2_IRQHandler Definitions At line 286 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 97 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 223 in file ..\CMSIS\Source\startup_gd32f10x_xd.s EXTI3_IRQHandler 0000001A Symbol: EXTI3_IRQHandler Definitions At line 287 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 98 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 224 in file ..\CMSIS\Source\startup_gd32f10x_xd.s EXTI4_IRQHandler 0000001A Symbol: EXTI4_IRQHandler Definitions At line 288 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 99 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 225 in file ..\CMSIS\Source\startup_gd32f10x_xd.s EXTI5_9_IRQHandler 0000001A Symbol: EXTI5_9_IRQHandler Definitions ARM Macro Assembler Page 5 Alphabetic symbol ordering Relocatable symbols At line 301 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 112 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 238 in file ..\CMSIS\Source\startup_gd32f10x_xd.s FMC_IRQHandler 0000001A Symbol: FMC_IRQHandler Definitions At line 282 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 93 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 219 in file ..\CMSIS\Source\startup_gd32f10x_xd.s HardFault_Handler 0000000A Symbol: HardFault_Handler Definitions At line 173 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 74 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 174 in file ..\CMSIS\Source\startup_gd32f10x_xd.s I2C0_ER_IRQHandler 0000001A Symbol: I2C0_ER_IRQHandler Definitions At line 310 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 121 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 247 in file ..\CMSIS\Source\startup_gd32f10x_xd.s I2C0_EV_IRQHandler 0000001A Symbol: I2C0_EV_IRQHandler Definitions At line 309 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 120 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 246 in file ..\CMSIS\Source\startup_gd32f10x_xd.s I2C1_ER_IRQHandler 0000001A Symbol: I2C1_ER_IRQHandler Definitions At line 312 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 123 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 249 in file ..\CMSIS\Source\startup_gd32f10x_xd.s I2C1_EV_IRQHandler 0000001A Symbol: I2C1_EV_IRQHandler Definitions At line 311 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 122 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 248 in file ..\CMSIS\Source\startup_gd32f10x_xd.s ARM Macro Assembler Page 6 Alphabetic symbol ordering Relocatable symbols LVD_IRQHandler 0000001A Symbol: LVD_IRQHandler Definitions At line 279 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 90 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 216 in file ..\CMSIS\Source\startup_gd32f10x_xd.s MemManage_Handler 0000000C Symbol: MemManage_Handler Definitions At line 178 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 75 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 179 in file ..\CMSIS\Source\startup_gd32f10x_xd.s NMI_Handler 00000008 Symbol: NMI_Handler Definitions At line 168 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 73 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 169 in file ..\CMSIS\Source\startup_gd32f10x_xd.s PendSV_Handler 00000016 Symbol: PendSV_Handler Definitions At line 203 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 85 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 204 in file ..\CMSIS\Source\startup_gd32f10x_xd.s RCU_IRQHandler 0000001A Symbol: RCU_IRQHandler Definitions At line 283 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 94 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 220 in file ..\CMSIS\Source\startup_gd32f10x_xd.s RTC_Alarm_IRQHandler 0000001A Symbol: RTC_Alarm_IRQHandler Definitions At line 319 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 130 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 256 in file ..\CMSIS\Source\startup_gd32f10x_xd.s RTC_IRQHandler 0000001A Symbol: RTC_IRQHandler Definitions At line 281 in file ..\CMSIS\Source\startup_gd32f10x_xd.s ARM Macro Assembler Page 7 Alphabetic symbol ordering Relocatable symbols Uses At line 92 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 218 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Reset_Handler 00000000 Symbol: Reset_Handler Definitions At line 157 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 72 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 158 in file ..\CMSIS\Source\startup_gd32f10x_xd.s SDIO_IRQHandler 0000001A Symbol: SDIO_IRQHandler Definitions At line 327 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 138 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 264 in file ..\CMSIS\Source\startup_gd32f10x_xd.s SPI0_IRQHandler 0000001A Symbol: SPI0_IRQHandler Definitions At line 313 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 124 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 250 in file ..\CMSIS\Source\startup_gd32f10x_xd.s SPI1_IRQHandler 0000001A Symbol: SPI1_IRQHandler Definitions At line 314 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 125 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 251 in file ..\CMSIS\Source\startup_gd32f10x_xd.s SPI2_IRQHandler 0000001A Symbol: SPI2_IRQHandler Definitions At line 329 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 140 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 266 in file ..\CMSIS\Source\startup_gd32f10x_xd.s SVC_Handler 00000012 Symbol: SVC_Handler Definitions At line 193 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 82 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 194 in file ..\CMSIS\Source\startup_gd32f10x_xd.s SysTick_Handler 00000018 ARM Macro Assembler Page 8 Alphabetic symbol ordering Relocatable symbols Symbol: SysTick_Handler Definitions At line 208 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 86 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 209 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TAMPER_IRQHandler 0000001A Symbol: TAMPER_IRQHandler Definitions At line 280 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 91 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 217 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER0_BRK_TIMER8_IRQHandler 0000001A Symbol: TIMER0_BRK_TIMER8_IRQHandler Definitions At line 302 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 113 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 239 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER0_Channel_IRQHandler 0000001A Symbol: TIMER0_Channel_IRQHandler Definitions At line 305 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 116 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 242 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER0_TRG_CMT_TIMER10_IRQHandler 0000001A Symbol: TIMER0_TRG_CMT_TIMER10_IRQHandler Definitions At line 304 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 115 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 241 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER0_UP_TIMER9_IRQHandler 0000001A Symbol: TIMER0_UP_TIMER9_IRQHandler Definitions At line 303 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 114 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 240 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER1_IRQHandler 0000001A Symbol: TIMER1_IRQHandler Definitions At line 306 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses ARM Macro Assembler Page 9 Alphabetic symbol ordering Relocatable symbols At line 117 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 243 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER2_IRQHandler 0000001A Symbol: TIMER2_IRQHandler Definitions At line 307 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 118 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 244 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER3_IRQHandler 0000001A Symbol: TIMER3_IRQHandler Definitions At line 308 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 119 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 245 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER4_IRQHandler 0000001A Symbol: TIMER4_IRQHandler Definitions At line 328 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 139 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 265 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER5_IRQHandler 0000001A Symbol: TIMER5_IRQHandler Definitions At line 332 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 143 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 269 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER6_IRQHandler 0000001A Symbol: TIMER6_IRQHandler Definitions At line 333 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 144 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 270 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER7_BRK_TIMER11_IRQHandler 0000001A Symbol: TIMER7_BRK_TIMER11_IRQHandler Definitions At line 321 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 132 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 258 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER7_Channel_IRQHandler 0000001A ARM Macro Assembler Page 10 Alphabetic symbol ordering Relocatable symbols Symbol: TIMER7_Channel_IRQHandler Definitions At line 324 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 135 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 261 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER7_TRG_CMT_TIMER13_IRQHandler 0000001A Symbol: TIMER7_TRG_CMT_TIMER13_IRQHandler Definitions At line 323 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 134 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 260 in file ..\CMSIS\Source\startup_gd32f10x_xd.s TIMER7_UP_TIMER12_IRQHandler 0000001A Symbol: TIMER7_UP_TIMER12_IRQHandler Definitions At line 322 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 133 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 259 in file ..\CMSIS\Source\startup_gd32f10x_xd.s UART3_IRQHandler 0000001A Symbol: UART3_IRQHandler Definitions At line 330 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 141 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 267 in file ..\CMSIS\Source\startup_gd32f10x_xd.s UART4_IRQHandler 0000001A Symbol: UART4_IRQHandler Definitions At line 331 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 142 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 268 in file ..\CMSIS\Source\startup_gd32f10x_xd.s USART0_IRQHandler 0000001A Symbol: USART0_IRQHandler Definitions At line 315 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 126 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 252 in file ..\CMSIS\Source\startup_gd32f10x_xd.s USART1_IRQHandler 0000001A Symbol: USART1_IRQHandler Definitions At line 316 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 127 in file ..\CMSIS\Source\startup_gd32f10x_xd.s ARM Macro Assembler Page 11 Alphabetic symbol ordering Relocatable symbols At line 253 in file ..\CMSIS\Source\startup_gd32f10x_xd.s USART2_IRQHandler 0000001A Symbol: USART2_IRQHandler Definitions At line 317 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 128 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 254 in file ..\CMSIS\Source\startup_gd32f10x_xd.s USBD_HP_CAN0_TX_IRQHandler 0000001A Symbol: USBD_HP_CAN0_TX_IRQHandler Definitions At line 297 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 108 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 234 in file ..\CMSIS\Source\startup_gd32f10x_xd.s USBD_LP_CAN0_RX0_IRQHandler 0000001A Symbol: USBD_LP_CAN0_RX0_IRQHandler Definitions At line 298 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 109 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 235 in file ..\CMSIS\Source\startup_gd32f10x_xd.s USBD_WKUP_IRQHandler 0000001A Symbol: USBD_WKUP_IRQHandler Definitions At line 320 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 131 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 257 in file ..\CMSIS\Source\startup_gd32f10x_xd.s UsageFault_Handler 00000010 Symbol: UsageFault_Handler Definitions At line 188 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 77 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 189 in file ..\CMSIS\Source\startup_gd32f10x_xd.s WWDGT_IRQHandler 0000001A Symbol: WWDGT_IRQHandler Definitions At line 278 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 89 in file ..\CMSIS\Source\startup_gd32f10x_xd.s At line 215 in file ..\CMSIS\Source\startup_gd32f10x_xd.s 72 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Absolute symbols Heap_Size 00010000 Symbol: Heap_Size Definitions At line 54 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 58 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Comment: Heap_Size used once Stack_Size 00001000 Symbol: Stack_Size Definitions At line 43 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 46 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Comment: Stack_Size used once __Vectors_Size 00000130 Symbol: __Vectors_Size Definitions At line 152 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 69 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Comment: __Vectors_Size used once 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering External symbols SystemInit 00000000 Symbol: SystemInit Definitions At line 160 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 161 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Comment: SystemInit used once __main 00000000 Symbol: __main Definitions At line 159 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Uses At line 163 in file ..\CMSIS\Source\startup_gd32f10x_xd.s Comment: __main used once 2 symbols 423 symbols in table