ARM Macro Assembler Page 1 1 00000000 ;/*! 2 00000000 ; \file startup_gd32f10x_md.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 0x0001000 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 00002000 Heap_Size EQU 0x00002000 55 00001000 56 00001000 AREA HEAP, NOINIT, READWRITE, ALIGN = 3 57 00000000 __heap_base 58 00000000 Heap_Mem SPACE Heap_Size 59 00002000 __heap_limit 60 00002000 61 00002000 62 00002000 PRESERVE8 63 00002000 THUMB 64 00002000 65 00002000 ; /* reset Vector Mapped to at Address 0 */ 66 00002000 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_IRQHandler ; 40:TIMER0 Break 114 000000A4 00000000 DCD TIMER0_UP_IRQHandler ; 41:TIMER0 Update 115 000000A8 00000000 DCD TIMER0_TRG_CMT_IRQHandler ; 42:TIMER0 Trigger 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 0 ; Reserved 133 000000F0 00000000 DCD 0 ; Reserved 134 000000F4 00000000 DCD 0 ; Reserved 135 000000F8 00000000 DCD 0 ; Reserved 136 000000FC 00000000 DCD 0 ; Reserved 137 00000100 00000000 DCD EXMC_IRQHandler ; 64:EXMC 138 00000104 139 00000104 __Vectors_End 140 00000104 141 00000104 00000104 __Vectors_Size EQU __Vectors_End - __Vectors 142 00000104 143 00000104 AREA |.text|, CODE, READONLY 144 00000000 145 00000000 ;/* reset Handler */ 146 00000000 Reset_Handler PROC 147 00000000 EXPORT Reset_Handler [WEAK] 148 00000000 IMPORT __main ARM Macro Assembler Page 5 149 00000000 IMPORT SystemInit 150 00000000 4806 LDR R0, =SystemInit 151 00000002 4780 BLX R0 152 00000004 4806 LDR R0, =__main 153 00000006 4700 BX R0 154 00000008 ENDP 155 00000008 156 00000008 ;/* dummy Exception Handlers */ 157 00000008 NMI_Handler PROC 158 00000008 EXPORT NMI_Handler [WEAK] 159 00000008 E7FE B . 160 0000000A ENDP 161 0000000A 162 0000000A HardFault_Handler PROC 163 0000000A EXPORT HardFault_Handler [WEAK] 164 0000000A E7FE B . 165 0000000C ENDP 166 0000000C 167 0000000C MemManage_Handler PROC 168 0000000C EXPORT MemManage_Handler [WEAK] 169 0000000C E7FE B . 170 0000000E ENDP 171 0000000E 172 0000000E BusFault_Handler PROC 173 0000000E EXPORT BusFault_Handler [WEAK] 174 0000000E E7FE B . 175 00000010 ENDP 176 00000010 177 00000010 UsageFault_Handler PROC 178 00000010 EXPORT UsageFault_Handler [WEAK] 179 00000010 E7FE B . 180 00000012 ENDP 181 00000012 182 00000012 SVC_Handler PROC 183 00000012 EXPORT SVC_Handler [WEAK] 184 00000012 E7FE B . 185 00000014 ENDP 186 00000014 187 00000014 DebugMon_Handler PROC 188 00000014 EXPORT DebugMon_Handler [WEAK] 189 00000014 E7FE B . 190 00000016 ENDP 191 00000016 192 00000016 PendSV_Handler PROC ARM Macro Assembler Page 6 193 00000016 EXPORT PendSV_Handler [WEAK] 194 00000016 E7FE B . 195 00000018 ENDP 196 00000018 197 00000018 SysTick_Handler PROC 198 00000018 EXPORT SysTick_Handler [WEAK] 199 00000018 E7FE B . 200 0000001A ENDP 201 0000001A 202 0000001A Default_Handler PROC 203 0000001A ; /* external interrupts handler */ 204 0000001A EXPORT WWDGT_IRQHandler [WEAK] 205 0000001A EXPORT LVD_IRQHandler [WEAK] 206 0000001A EXPORT TAMPER_IRQHandler [WEAK] 207 0000001A EXPORT RTC_IRQHandler [WEAK] 208 0000001A EXPORT FMC_IRQHandler [WEAK] 209 0000001A EXPORT RCU_IRQHandler [WEAK] 210 0000001A EXPORT EXTI0_IRQHandler [WEAK] 211 0000001A EXPORT EXTI1_IRQHandler [WEAK] 212 0000001A EXPORT EXTI2_IRQHandler [WEAK] 213 0000001A EXPORT EXTI3_IRQHandler [WEAK] 214 0000001A EXPORT EXTI4_IRQHandler [WEAK] 215 0000001A EXPORT DMA0_Channel0_IRQHandler [WEAK] 216 0000001A EXPORT DMA0_Channel1_IRQHandler [WEAK] 217 0000001A EXPORT DMA0_Channel2_IRQHandler [WEAK] 218 0000001A EXPORT DMA0_Channel3_IRQHandler [WEAK] 219 0000001A EXPORT DMA0_Channel4_IRQHandler [WEAK] 220 0000001A EXPORT DMA0_Channel5_IRQHandler [WEAK] 221 0000001A EXPORT DMA0_Channel6_IRQHandler [WEAK] 222 0000001A EXPORT ADC0_1_IRQHandler [WEAK] 223 0000001A EXPORT USBD_HP_CAN0_TX_IRQHandler [WEAK] 224 0000001A EXPORT USBD_LP_CAN0_RX0_IRQHandler [WEAK] 225 0000001A EXPORT CAN0_RX1_IRQHandler ARM Macro Assembler Page 7 [WEAK] 226 0000001A EXPORT CAN0_EWMC_IRQHandler [WEAK] 227 0000001A EXPORT EXTI5_9_IRQHandler [WEAK] 228 0000001A EXPORT TIMER0_BRK_IRQHandler [WEAK] 229 0000001A EXPORT TIMER0_UP_IRQHandler [WEAK] 230 0000001A EXPORT TIMER0_TRG_CMT_IRQHandler [WEAK] 231 0000001A EXPORT TIMER0_Channel_IRQHandler [WEAK] 232 0000001A EXPORT TIMER1_IRQHandler [WEAK] 233 0000001A EXPORT TIMER2_IRQHandler [WEAK] 234 0000001A EXPORT TIMER3_IRQHandler [WEAK] 235 0000001A EXPORT I2C0_EV_IRQHandler [WEAK] 236 0000001A EXPORT I2C0_ER_IRQHandler [WEAK] 237 0000001A EXPORT I2C1_EV_IRQHandler [WEAK] 238 0000001A EXPORT I2C1_ER_IRQHandler [WEAK] 239 0000001A EXPORT SPI0_IRQHandler [WEAK] 240 0000001A EXPORT SPI1_IRQHandler [WEAK] 241 0000001A EXPORT USART0_IRQHandler [WEAK] 242 0000001A EXPORT USART1_IRQHandler [WEAK] 243 0000001A EXPORT USART2_IRQHandler [WEAK] 244 0000001A EXPORT EXTI10_15_IRQHandler [WEAK] 245 0000001A EXPORT RTC_Alarm_IRQHandler [WEAK] 246 0000001A EXPORT USBD_WKUP_IRQHandler [WEAK] 247 0000001A EXPORT EXMC_IRQHandler [WEAK] 248 0000001A 249 0000001A 250 0000001A ;/* external interrupts handler */ 251 0000001A WWDGT_IRQHandler 252 0000001A LVD_IRQHandler 253 0000001A TAMPER_IRQHandler 254 0000001A RTC_IRQHandler 255 0000001A FMC_IRQHandler 256 0000001A RCU_IRQHandler 257 0000001A EXTI0_IRQHandler 258 0000001A EXTI1_IRQHandler 259 0000001A EXTI2_IRQHandler 260 0000001A EXTI3_IRQHandler 261 0000001A EXTI4_IRQHandler ARM Macro Assembler Page 8 262 0000001A DMA0_Channel0_IRQHandler 263 0000001A DMA0_Channel1_IRQHandler 264 0000001A DMA0_Channel2_IRQHandler 265 0000001A DMA0_Channel3_IRQHandler 266 0000001A DMA0_Channel4_IRQHandler 267 0000001A DMA0_Channel5_IRQHandler 268 0000001A DMA0_Channel6_IRQHandler 269 0000001A ADC0_1_IRQHandler 270 0000001A USBD_HP_CAN0_TX_IRQHandler 271 0000001A USBD_LP_CAN0_RX0_IRQHandler 272 0000001A CAN0_RX1_IRQHandler 273 0000001A CAN0_EWMC_IRQHandler 274 0000001A EXTI5_9_IRQHandler 275 0000001A TIMER0_BRK_IRQHandler 276 0000001A TIMER0_UP_IRQHandler 277 0000001A TIMER0_TRG_CMT_IRQHandler 278 0000001A TIMER0_Channel_IRQHandler 279 0000001A TIMER1_IRQHandler 280 0000001A TIMER2_IRQHandler 281 0000001A TIMER3_IRQHandler 282 0000001A I2C0_EV_IRQHandler 283 0000001A I2C0_ER_IRQHandler 284 0000001A I2C1_EV_IRQHandler 285 0000001A I2C1_ER_IRQHandler 286 0000001A SPI0_IRQHandler 287 0000001A SPI1_IRQHandler 288 0000001A USART0_IRQHandler 289 0000001A USART1_IRQHandler 290 0000001A USART2_IRQHandler 291 0000001A EXTI10_15_IRQHandler 292 0000001A RTC_Alarm_IRQHandler 293 0000001A USBD_WKUP_IRQHandler 294 0000001A EXMC_IRQHandler 295 0000001A 296 0000001A 297 0000001A 298 0000001A E7FE B . 299 0000001C ENDP 300 0000001C 301 0000001C ALIGN 302 0000001C 303 0000001C ; user Initial Stack & Heap 304 0000001C 305 0000001C IF :DEF:__MICROLIB 306 0000001C 307 0000001C EXPORT __initial_sp 308 0000001C EXPORT __heap_base 309 0000001C EXPORT __heap_limit 310 0000001C 311 0000001C ELSE 326 ENDIF 327 0000001C 328 0000001C END 00000000 00000000 Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M3 --apcs=interw ork --depend=.\objects\startup_gd32f10x_md.d -o.\objects\startup_gd32f10x_md.o -I.\RTE\_GD32F103C8T6 -ID:\workSoftware\stm32Software\mdk\mdkpack\GigaDevice\GD 32F10x_DFP\2.0.3\Device\Include -ID:\workSoftware\stm32Software\mdk\mdkcore\ARM ARM Macro Assembler Page 9 \CMSIS\Include --predefine="__MICROLIB SETA 1" --predefine="__UVISION_VERSION S ETA 528" --predefine="GD32F10X_MD SETA 1" --predefine="USE_STDPERIPH_DRIVER SET A 1" --list=.\listings\startup_gd32f10x_md.lst ..\Startup\startup_gd32f10x_md.s ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols STACK 00000000 Symbol: STACK Definitions At line 45 in file ..\Startup\startup_gd32f10x_md.s Uses None Comment: STACK unused Stack_Mem 00000000 Symbol: Stack_Mem Definitions At line 46 in file ..\Startup\startup_gd32f10x_md.s Uses None Comment: Stack_Mem unused __initial_sp 00001000 Symbol: __initial_sp Definitions At line 47 in file ..\Startup\startup_gd32f10x_md.s Uses At line 71 in file ..\Startup\startup_gd32f10x_md.s At line 307 in file ..\Startup\startup_gd32f10x_md.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols HEAP 00000000 Symbol: HEAP Definitions At line 56 in file ..\Startup\startup_gd32f10x_md.s Uses None Comment: HEAP unused Heap_Mem 00000000 Symbol: Heap_Mem Definitions At line 58 in file ..\Startup\startup_gd32f10x_md.s Uses None Comment: Heap_Mem unused __heap_base 00000000 Symbol: __heap_base Definitions At line 57 in file ..\Startup\startup_gd32f10x_md.s Uses At line 308 in file ..\Startup\startup_gd32f10x_md.s Comment: __heap_base used once __heap_limit 00002000 Symbol: __heap_limit Definitions At line 59 in file ..\Startup\startup_gd32f10x_md.s Uses At line 309 in file ..\Startup\startup_gd32f10x_md.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 ..\Startup\startup_gd32f10x_md.s Uses None Comment: RESET unused __Vectors 00000000 Symbol: __Vectors Definitions At line 71 in file ..\Startup\startup_gd32f10x_md.s Uses At line 67 in file ..\Startup\startup_gd32f10x_md.s At line 141 in file ..\Startup\startup_gd32f10x_md.s __Vectors_End 00000104 Symbol: __Vectors_End Definitions At line 139 in file ..\Startup\startup_gd32f10x_md.s Uses At line 68 in file ..\Startup\startup_gd32f10x_md.s At line 141 in file ..\Startup\startup_gd32f10x_md.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols .text 00000000 Symbol: .text Definitions At line 143 in file ..\Startup\startup_gd32f10x_md.s Uses None Comment: .text unused ADC0_1_IRQHandler 0000001A Symbol: ADC0_1_IRQHandler Definitions At line 269 in file ..\Startup\startup_gd32f10x_md.s Uses At line 107 in file ..\Startup\startup_gd32f10x_md.s At line 222 in file ..\Startup\startup_gd32f10x_md.s BusFault_Handler 0000000E Symbol: BusFault_Handler Definitions At line 172 in file ..\Startup\startup_gd32f10x_md.s Uses At line 76 in file ..\Startup\startup_gd32f10x_md.s At line 173 in file ..\Startup\startup_gd32f10x_md.s CAN0_EWMC_IRQHandler 0000001A Symbol: CAN0_EWMC_IRQHandler Definitions At line 273 in file ..\Startup\startup_gd32f10x_md.s Uses At line 111 in file ..\Startup\startup_gd32f10x_md.s At line 226 in file ..\Startup\startup_gd32f10x_md.s CAN0_RX1_IRQHandler 0000001A Symbol: CAN0_RX1_IRQHandler Definitions At line 272 in file ..\Startup\startup_gd32f10x_md.s Uses At line 110 in file ..\Startup\startup_gd32f10x_md.s At line 225 in file ..\Startup\startup_gd32f10x_md.s DMA0_Channel0_IRQHandler 0000001A Symbol: DMA0_Channel0_IRQHandler Definitions At line 262 in file ..\Startup\startup_gd32f10x_md.s Uses At line 100 in file ..\Startup\startup_gd32f10x_md.s At line 215 in file ..\Startup\startup_gd32f10x_md.s DMA0_Channel1_IRQHandler 0000001A Symbol: DMA0_Channel1_IRQHandler Definitions At line 263 in file ..\Startup\startup_gd32f10x_md.s Uses ARM Macro Assembler Page 2 Alphabetic symbol ordering Relocatable symbols At line 101 in file ..\Startup\startup_gd32f10x_md.s At line 216 in file ..\Startup\startup_gd32f10x_md.s DMA0_Channel2_IRQHandler 0000001A Symbol: DMA0_Channel2_IRQHandler Definitions At line 264 in file ..\Startup\startup_gd32f10x_md.s Uses At line 102 in file ..\Startup\startup_gd32f10x_md.s At line 217 in file ..\Startup\startup_gd32f10x_md.s DMA0_Channel3_IRQHandler 0000001A Symbol: DMA0_Channel3_IRQHandler Definitions At line 265 in file ..\Startup\startup_gd32f10x_md.s Uses At line 103 in file ..\Startup\startup_gd32f10x_md.s At line 218 in file ..\Startup\startup_gd32f10x_md.s DMA0_Channel4_IRQHandler 0000001A Symbol: DMA0_Channel4_IRQHandler Definitions At line 266 in file ..\Startup\startup_gd32f10x_md.s Uses At line 104 in file ..\Startup\startup_gd32f10x_md.s At line 219 in file ..\Startup\startup_gd32f10x_md.s DMA0_Channel5_IRQHandler 0000001A Symbol: DMA0_Channel5_IRQHandler Definitions At line 267 in file ..\Startup\startup_gd32f10x_md.s Uses At line 105 in file ..\Startup\startup_gd32f10x_md.s At line 220 in file ..\Startup\startup_gd32f10x_md.s DMA0_Channel6_IRQHandler 0000001A Symbol: DMA0_Channel6_IRQHandler Definitions At line 268 in file ..\Startup\startup_gd32f10x_md.s Uses At line 106 in file ..\Startup\startup_gd32f10x_md.s At line 221 in file ..\Startup\startup_gd32f10x_md.s DebugMon_Handler 00000014 Symbol: DebugMon_Handler Definitions At line 187 in file ..\Startup\startup_gd32f10x_md.s Uses At line 83 in file ..\Startup\startup_gd32f10x_md.s At line 188 in file ..\Startup\startup_gd32f10x_md.s Default_Handler 0000001A ARM Macro Assembler Page 3 Alphabetic symbol ordering Relocatable symbols Symbol: Default_Handler Definitions At line 202 in file ..\Startup\startup_gd32f10x_md.s Uses None Comment: Default_Handler unused EXMC_IRQHandler 0000001A Symbol: EXMC_IRQHandler Definitions At line 294 in file ..\Startup\startup_gd32f10x_md.s Uses At line 137 in file ..\Startup\startup_gd32f10x_md.s At line 247 in file ..\Startup\startup_gd32f10x_md.s EXTI0_IRQHandler 0000001A Symbol: EXTI0_IRQHandler Definitions At line 257 in file ..\Startup\startup_gd32f10x_md.s Uses At line 95 in file ..\Startup\startup_gd32f10x_md.s At line 210 in file ..\Startup\startup_gd32f10x_md.s EXTI10_15_IRQHandler 0000001A Symbol: EXTI10_15_IRQHandler Definitions At line 291 in file ..\Startup\startup_gd32f10x_md.s Uses At line 129 in file ..\Startup\startup_gd32f10x_md.s At line 244 in file ..\Startup\startup_gd32f10x_md.s EXTI1_IRQHandler 0000001A Symbol: EXTI1_IRQHandler Definitions At line 258 in file ..\Startup\startup_gd32f10x_md.s Uses At line 96 in file ..\Startup\startup_gd32f10x_md.s At line 211 in file ..\Startup\startup_gd32f10x_md.s EXTI2_IRQHandler 0000001A Symbol: EXTI2_IRQHandler Definitions At line 259 in file ..\Startup\startup_gd32f10x_md.s Uses At line 97 in file ..\Startup\startup_gd32f10x_md.s At line 212 in file ..\Startup\startup_gd32f10x_md.s EXTI3_IRQHandler 0000001A Symbol: EXTI3_IRQHandler Definitions At line 260 in file ..\Startup\startup_gd32f10x_md.s Uses At line 98 in file ..\Startup\startup_gd32f10x_md.s At line 213 in file ..\Startup\startup_gd32f10x_md.s ARM Macro Assembler Page 4 Alphabetic symbol ordering Relocatable symbols EXTI4_IRQHandler 0000001A Symbol: EXTI4_IRQHandler Definitions At line 261 in file ..\Startup\startup_gd32f10x_md.s Uses At line 99 in file ..\Startup\startup_gd32f10x_md.s At line 214 in file ..\Startup\startup_gd32f10x_md.s EXTI5_9_IRQHandler 0000001A Symbol: EXTI5_9_IRQHandler Definitions At line 274 in file ..\Startup\startup_gd32f10x_md.s Uses At line 112 in file ..\Startup\startup_gd32f10x_md.s At line 227 in file ..\Startup\startup_gd32f10x_md.s FMC_IRQHandler 0000001A Symbol: FMC_IRQHandler Definitions At line 255 in file ..\Startup\startup_gd32f10x_md.s Uses At line 93 in file ..\Startup\startup_gd32f10x_md.s At line 208 in file ..\Startup\startup_gd32f10x_md.s HardFault_Handler 0000000A Symbol: HardFault_Handler Definitions At line 162 in file ..\Startup\startup_gd32f10x_md.s Uses At line 74 in file ..\Startup\startup_gd32f10x_md.s At line 163 in file ..\Startup\startup_gd32f10x_md.s I2C0_ER_IRQHandler 0000001A Symbol: I2C0_ER_IRQHandler Definitions At line 283 in file ..\Startup\startup_gd32f10x_md.s Uses At line 121 in file ..\Startup\startup_gd32f10x_md.s At line 236 in file ..\Startup\startup_gd32f10x_md.s I2C0_EV_IRQHandler 0000001A Symbol: I2C0_EV_IRQHandler Definitions At line 282 in file ..\Startup\startup_gd32f10x_md.s Uses At line 120 in file ..\Startup\startup_gd32f10x_md.s At line 235 in file ..\Startup\startup_gd32f10x_md.s I2C1_ER_IRQHandler 0000001A Symbol: I2C1_ER_IRQHandler Definitions ARM Macro Assembler Page 5 Alphabetic symbol ordering Relocatable symbols At line 285 in file ..\Startup\startup_gd32f10x_md.s Uses At line 123 in file ..\Startup\startup_gd32f10x_md.s At line 238 in file ..\Startup\startup_gd32f10x_md.s I2C1_EV_IRQHandler 0000001A Symbol: I2C1_EV_IRQHandler Definitions At line 284 in file ..\Startup\startup_gd32f10x_md.s Uses At line 122 in file ..\Startup\startup_gd32f10x_md.s At line 237 in file ..\Startup\startup_gd32f10x_md.s LVD_IRQHandler 0000001A Symbol: LVD_IRQHandler Definitions At line 252 in file ..\Startup\startup_gd32f10x_md.s Uses At line 90 in file ..\Startup\startup_gd32f10x_md.s At line 205 in file ..\Startup\startup_gd32f10x_md.s MemManage_Handler 0000000C Symbol: MemManage_Handler Definitions At line 167 in file ..\Startup\startup_gd32f10x_md.s Uses At line 75 in file ..\Startup\startup_gd32f10x_md.s At line 168 in file ..\Startup\startup_gd32f10x_md.s NMI_Handler 00000008 Symbol: NMI_Handler Definitions At line 157 in file ..\Startup\startup_gd32f10x_md.s Uses At line 73 in file ..\Startup\startup_gd32f10x_md.s At line 158 in file ..\Startup\startup_gd32f10x_md.s PendSV_Handler 00000016 Symbol: PendSV_Handler Definitions At line 192 in file ..\Startup\startup_gd32f10x_md.s Uses At line 85 in file ..\Startup\startup_gd32f10x_md.s At line 193 in file ..\Startup\startup_gd32f10x_md.s RCU_IRQHandler 0000001A Symbol: RCU_IRQHandler Definitions At line 256 in file ..\Startup\startup_gd32f10x_md.s Uses At line 94 in file ..\Startup\startup_gd32f10x_md.s At line 209 in file ..\Startup\startup_gd32f10x_md.s ARM Macro Assembler Page 6 Alphabetic symbol ordering Relocatable symbols RTC_Alarm_IRQHandler 0000001A Symbol: RTC_Alarm_IRQHandler Definitions At line 292 in file ..\Startup\startup_gd32f10x_md.s Uses At line 130 in file ..\Startup\startup_gd32f10x_md.s At line 245 in file ..\Startup\startup_gd32f10x_md.s RTC_IRQHandler 0000001A Symbol: RTC_IRQHandler Definitions At line 254 in file ..\Startup\startup_gd32f10x_md.s Uses At line 92 in file ..\Startup\startup_gd32f10x_md.s At line 207 in file ..\Startup\startup_gd32f10x_md.s Reset_Handler 00000000 Symbol: Reset_Handler Definitions At line 146 in file ..\Startup\startup_gd32f10x_md.s Uses At line 72 in file ..\Startup\startup_gd32f10x_md.s At line 147 in file ..\Startup\startup_gd32f10x_md.s SPI0_IRQHandler 0000001A Symbol: SPI0_IRQHandler Definitions At line 286 in file ..\Startup\startup_gd32f10x_md.s Uses At line 124 in file ..\Startup\startup_gd32f10x_md.s At line 239 in file ..\Startup\startup_gd32f10x_md.s SPI1_IRQHandler 0000001A Symbol: SPI1_IRQHandler Definitions At line 287 in file ..\Startup\startup_gd32f10x_md.s Uses At line 125 in file ..\Startup\startup_gd32f10x_md.s At line 240 in file ..\Startup\startup_gd32f10x_md.s SVC_Handler 00000012 Symbol: SVC_Handler Definitions At line 182 in file ..\Startup\startup_gd32f10x_md.s Uses At line 82 in file ..\Startup\startup_gd32f10x_md.s At line 183 in file ..\Startup\startup_gd32f10x_md.s SysTick_Handler 00000018 Symbol: SysTick_Handler Definitions At line 197 in file ..\Startup\startup_gd32f10x_md.s ARM Macro Assembler Page 7 Alphabetic symbol ordering Relocatable symbols Uses At line 86 in file ..\Startup\startup_gd32f10x_md.s At line 198 in file ..\Startup\startup_gd32f10x_md.s TAMPER_IRQHandler 0000001A Symbol: TAMPER_IRQHandler Definitions At line 253 in file ..\Startup\startup_gd32f10x_md.s Uses At line 91 in file ..\Startup\startup_gd32f10x_md.s At line 206 in file ..\Startup\startup_gd32f10x_md.s TIMER0_BRK_IRQHandler 0000001A Symbol: TIMER0_BRK_IRQHandler Definitions At line 275 in file ..\Startup\startup_gd32f10x_md.s Uses At line 113 in file ..\Startup\startup_gd32f10x_md.s At line 228 in file ..\Startup\startup_gd32f10x_md.s TIMER0_Channel_IRQHandler 0000001A Symbol: TIMER0_Channel_IRQHandler Definitions At line 278 in file ..\Startup\startup_gd32f10x_md.s Uses At line 116 in file ..\Startup\startup_gd32f10x_md.s At line 231 in file ..\Startup\startup_gd32f10x_md.s TIMER0_TRG_CMT_IRQHandler 0000001A Symbol: TIMER0_TRG_CMT_IRQHandler Definitions At line 277 in file ..\Startup\startup_gd32f10x_md.s Uses At line 115 in file ..\Startup\startup_gd32f10x_md.s At line 230 in file ..\Startup\startup_gd32f10x_md.s TIMER0_UP_IRQHandler 0000001A Symbol: TIMER0_UP_IRQHandler Definitions At line 276 in file ..\Startup\startup_gd32f10x_md.s Uses At line 114 in file ..\Startup\startup_gd32f10x_md.s At line 229 in file ..\Startup\startup_gd32f10x_md.s TIMER1_IRQHandler 0000001A Symbol: TIMER1_IRQHandler Definitions At line 279 in file ..\Startup\startup_gd32f10x_md.s Uses At line 117 in file ..\Startup\startup_gd32f10x_md.s At line 232 in file ..\Startup\startup_gd32f10x_md.s TIMER2_IRQHandler 0000001A ARM Macro Assembler Page 8 Alphabetic symbol ordering Relocatable symbols Symbol: TIMER2_IRQHandler Definitions At line 280 in file ..\Startup\startup_gd32f10x_md.s Uses At line 118 in file ..\Startup\startup_gd32f10x_md.s At line 233 in file ..\Startup\startup_gd32f10x_md.s TIMER3_IRQHandler 0000001A Symbol: TIMER3_IRQHandler Definitions At line 281 in file ..\Startup\startup_gd32f10x_md.s Uses At line 119 in file ..\Startup\startup_gd32f10x_md.s At line 234 in file ..\Startup\startup_gd32f10x_md.s USART0_IRQHandler 0000001A Symbol: USART0_IRQHandler Definitions At line 288 in file ..\Startup\startup_gd32f10x_md.s Uses At line 126 in file ..\Startup\startup_gd32f10x_md.s At line 241 in file ..\Startup\startup_gd32f10x_md.s USART1_IRQHandler 0000001A Symbol: USART1_IRQHandler Definitions At line 289 in file ..\Startup\startup_gd32f10x_md.s Uses At line 127 in file ..\Startup\startup_gd32f10x_md.s At line 242 in file ..\Startup\startup_gd32f10x_md.s USART2_IRQHandler 0000001A Symbol: USART2_IRQHandler Definitions At line 290 in file ..\Startup\startup_gd32f10x_md.s Uses At line 128 in file ..\Startup\startup_gd32f10x_md.s At line 243 in file ..\Startup\startup_gd32f10x_md.s USBD_HP_CAN0_TX_IRQHandler 0000001A Symbol: USBD_HP_CAN0_TX_IRQHandler Definitions At line 270 in file ..\Startup\startup_gd32f10x_md.s Uses At line 108 in file ..\Startup\startup_gd32f10x_md.s At line 223 in file ..\Startup\startup_gd32f10x_md.s USBD_LP_CAN0_RX0_IRQHandler 0000001A Symbol: USBD_LP_CAN0_RX0_IRQHandler Definitions At line 271 in file ..\Startup\startup_gd32f10x_md.s Uses ARM Macro Assembler Page 9 Alphabetic symbol ordering Relocatable symbols At line 109 in file ..\Startup\startup_gd32f10x_md.s At line 224 in file ..\Startup\startup_gd32f10x_md.s USBD_WKUP_IRQHandler 0000001A Symbol: USBD_WKUP_IRQHandler Definitions At line 293 in file ..\Startup\startup_gd32f10x_md.s Uses At line 131 in file ..\Startup\startup_gd32f10x_md.s At line 246 in file ..\Startup\startup_gd32f10x_md.s UsageFault_Handler 00000010 Symbol: UsageFault_Handler Definitions At line 177 in file ..\Startup\startup_gd32f10x_md.s Uses At line 77 in file ..\Startup\startup_gd32f10x_md.s At line 178 in file ..\Startup\startup_gd32f10x_md.s WWDGT_IRQHandler 0000001A Symbol: WWDGT_IRQHandler Definitions At line 251 in file ..\Startup\startup_gd32f10x_md.s Uses At line 89 in file ..\Startup\startup_gd32f10x_md.s At line 204 in file ..\Startup\startup_gd32f10x_md.s 56 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Absolute symbols Heap_Size 00002000 Symbol: Heap_Size Definitions At line 54 in file ..\Startup\startup_gd32f10x_md.s Uses At line 58 in file ..\Startup\startup_gd32f10x_md.s Comment: Heap_Size used once Stack_Size 00001000 Symbol: Stack_Size Definitions At line 43 in file ..\Startup\startup_gd32f10x_md.s Uses At line 46 in file ..\Startup\startup_gd32f10x_md.s Comment: Stack_Size used once __Vectors_Size 00000104 Symbol: __Vectors_Size Definitions At line 141 in file ..\Startup\startup_gd32f10x_md.s Uses At line 69 in file ..\Startup\startup_gd32f10x_md.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 149 in file ..\Startup\startup_gd32f10x_md.s Uses At line 150 in file ..\Startup\startup_gd32f10x_md.s Comment: SystemInit used once __main 00000000 Symbol: __main Definitions At line 148 in file ..\Startup\startup_gd32f10x_md.s Uses At line 152 in file ..\Startup\startup_gd32f10x_md.s Comment: __main used once 2 symbols 407 symbols in table