ARM Macro Assembler Page 1 1 00000000 ;******************************************************* *********************** 2 00000000 ;* File Name : startup_stm32mp15xx.s 3 00000000 ;* Author : MCD Application Team 4 00000000 ;* Description : STM32MP15xx devices vector table for MDK-ARM toolchain. 5 00000000 ;* This module performs: 6 00000000 ;* - Set the initial SP 7 00000000 ;* - Set the initial PC == Reset_Ha ndler 8 00000000 ;* - Set the vector table entries w ith the exceptions ISR address 9 00000000 ;* - Branches to __main in the C li brary (which eventually 10 00000000 ;* calls main()). 11 00000000 ;* After Reset the CortexM4 process or is in Thread mode, 12 00000000 ;* priority is Privileged, and the Stack is set to Main. 13 00000000 ;* <<< Use Configuration Wizard in Context Menu >>> 14 00000000 ;******************************************************* *********************** 15 00000000 ;* @attention 16 00000000 ;* 17 00000000 ;* Copyright (c) 2019 STMicroelectronics. 18 00000000 ;* All rights reserved. 19 00000000 ;* 20 00000000 ;* This software is licensed under terms that can be fou nd in the LICENSE file 21 00000000 ;* in the root directory of this software component. 22 00000000 ;* If no LICENSE file comes with this software, it is pr ovided AS-IS. 23 00000000 ;* 24 00000000 ;******************************************************* ************************ 25 00000000 26 00000000 ; Amount of memory (in bytes) allocated for Stack 27 00000000 ; Tailor this value to your application needs 28 00000000 ; Stack Configuration 29 00000000 ; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> 30 00000000 ; 31 00000000 32 00000000 00000400 Stack_Size EQU 0x400 33 00000000 34 00000000 AREA STACK, NOINIT, READWRITE, ALIGN =3 35 00000000 __stack_limit 36 00000000 Stack_Mem SPACE Stack_Size 37 00000400 __initial_sp 38 00000400 39 00000400 40 00000400 ; Heap Configuration 41 00000400 ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> 42 00000400 ; 43 00000400 44 00000400 00000200 ARM Macro Assembler Page 2 Heap_Size EQU 0x200 45 00000400 46 00000400 AREA HEAP, NOINIT, READWRITE, ALIGN= 3 47 00000000 __heap_base 48 00000000 Heap_Mem SPACE Heap_Size 49 00000200 __heap_limit 50 00000200 51 00000200 PRESERVE8 52 00000200 THUMB 53 00000200 54 00000200 55 00000200 ; Vector Table Mapped to Address 0 at Reset 56 00000200 AREA RESET, DATA, READONLY 57 00000000 EXPORT __Vectors 58 00000000 EXPORT __Vectors_End 59 00000000 EXPORT __Vectors_Size 60 00000000 61 00000000 00000000 __Vectors DCD __initial_sp ; Top of Stack 62 00000004 00000000 DCD Reset_Handler ; Reset Handler 63 00000008 00000000 DCD NMI_Handler ; -14 NMI Handler 64 0000000C 00000000 DCD HardFault_Handler ; -13 Hard Fa ult Handler 65 00000010 00000000 DCD MemManage_Handler ; -12 MPU Fau lt Handler 66 00000014 00000000 DCD BusFault_Handler ; -11 Bus Faul t Handler 67 00000018 00000000 DCD UsageFault_Handler ; -10 Usage Fault Handler 68 0000001C 00000000 DCD 0 ; Reserved 69 00000020 00000000 DCD 0 ; Reserved 70 00000024 00000000 DCD 0 ; Reserved 71 00000028 00000000 DCD 0 ; Reserved 72 0000002C 00000000 DCD SVC_Handler ; -5 SVCall Handle r 73 00000030 00000000 DCD DebugMon_Handler ; -4 Debug Mo nitor Handler 74 00000034 00000000 DCD 0 ; Reserved 75 00000038 00000000 DCD PendSV_Handler ; -2 PendSV Han dler 76 0000003C 00000000 DCD SysTick_Handler ; -1 SysTick H andler 77 00000040 78 00000040 ; Interrupts 79 00000040 00000000 DCD WWDG1_IRQHandler ; 80 00000044 00000000 DCD PVD_AVD_IRQHandler ; 81 00000048 00000000 DCD TAMP_IRQHandler ; 82 0000004C 00000000 DCD RTC_WKUP_ALARM_IRQHandler ; 83 00000050 00000000 DCD RESERVED4_IRQHandler ; 84 00000054 00000000 DCD RCC_IRQHandler ; 85 00000058 00000000 DCD EXTI0_IRQHandler ; 86 0000005C 00000000 DCD EXTI1_IRQHandler ; ARM Macro Assembler Page 3 87 00000060 00000000 DCD EXTI2_IRQHandler ; 88 00000064 00000000 DCD EXTI3_IRQHandler ; 89 00000068 00000000 DCD EXTI4_IRQHandler ; 90 0000006C 00000000 DCD DMA1_Stream0_IRQHandler ; 91 00000070 00000000 DCD DMA1_Stream1_IRQHandler ; 92 00000074 00000000 DCD DMA1_Stream2_IRQHandler ; 93 00000078 00000000 DCD DMA1_Stream3_IRQHandler ; 94 0000007C 00000000 DCD DMA1_Stream4_IRQHandler ; 95 00000080 00000000 DCD DMA1_Stream5_IRQHandler ; 96 00000084 00000000 DCD DMA1_Stream6_IRQHandler ; 97 00000088 00000000 DCD ADC1_IRQHandler ; 98 0000008C 00000000 DCD FDCAN1_IT0_IRQHandler ; 99 00000090 00000000 DCD FDCAN2_IT0_IRQHandler ; 100 00000094 00000000 DCD FDCAN1_IT1_IRQHandler ; 101 00000098 00000000 DCD FDCAN2_IT1_IRQHandler ; 102 0000009C 00000000 DCD EXTI5_IRQHandler ; 103 000000A0 00000000 DCD TIM1_BRK_IRQHandler ; 104 000000A4 00000000 DCD TIM1_UP_IRQHandler ; 105 000000A8 00000000 DCD TIM1_TRG_COM_IRQHandler ; 106 000000AC 00000000 DCD TIM1_CC_IRQHandler ; 107 000000B0 00000000 DCD TIM2_IRQHandler ; 108 000000B4 00000000 DCD TIM3_IRQHandler ; 109 000000B8 00000000 DCD TIM4_IRQHandler ; 110 000000BC 00000000 DCD I2C1_EV_IRQHandler ; 111 000000C0 00000000 DCD I2C1_ER_IRQHandler ; 112 000000C4 00000000 DCD I2C2_EV_IRQHandler ; 113 000000C8 00000000 DCD I2C2_ER_IRQHandler ; 114 000000CC 00000000 DCD SPI1_IRQHandler ; 115 000000D0 00000000 DCD SPI2_IRQHandler ; 116 000000D4 00000000 DCD USART1_IRQHandler ; 117 000000D8 00000000 DCD USART2_IRQHandler ; 118 000000DC 00000000 DCD USART3_IRQHandler ; 119 000000E0 00000000 DCD EXTI10_IRQHandler ; 120 000000E4 00000000 DCD RTC_TIMESTAMP_IRQHandler ; 121 000000E8 00000000 DCD EXTI11_IRQHandler ; 122 000000EC 00000000 DCD TIM8_BRK_IRQHandler ; 123 000000F0 00000000 DCD TIM8_UP_IRQHandler ; 124 000000F4 00000000 DCD TIM8_TRG_COM_IRQHandler ; 125 000000F8 00000000 DCD TIM8_CC_IRQHandler ; 126 000000FC 00000000 DCD DMA1_Stream7_IRQHandler ; 127 00000100 00000000 DCD FMC_IRQHandler ; 128 00000104 00000000 DCD SDMMC1_IRQHandler ; 129 00000108 00000000 DCD TIM5_IRQHandler ; 130 0000010C 00000000 DCD SPI3_IRQHandler ; 131 00000110 00000000 DCD UART4_IRQHandler ; 132 00000114 00000000 DCD UART5_IRQHandler ; 133 00000118 00000000 DCD TIM6_IRQHandler ; 134 0000011C 00000000 DCD TIM7_IRQHandler ; 135 00000120 00000000 DCD DMA2_Stream0_IRQHandler ; 136 00000124 00000000 DCD DMA2_Stream1_IRQHandler ; 137 00000128 00000000 DCD DMA2_Stream2_IRQHandler ; 138 0000012C 00000000 DCD DMA2_Stream3_IRQHandler ; 139 00000130 00000000 DCD DMA2_Stream4_IRQHandler ; 140 00000134 00000000 DCD ETH1_IRQHandler ; 141 00000138 00000000 DCD ETH1_WKUP_IRQHandler ; 142 0000013C 00000000 DCD FDCAN_CAL_IRQHandler ; 143 00000140 00000000 DCD EXTI6_IRQHandler ; 144 00000144 00000000 DCD EXTI7_IRQHandler ; 145 00000148 00000000 DCD EXTI8_IRQHandler ; ARM Macro Assembler Page 4 146 0000014C 00000000 DCD EXTI9_IRQHandler ; 147 00000150 00000000 DCD DMA2_Stream5_IRQHandler ; 148 00000154 00000000 DCD DMA2_Stream6_IRQHandler ; 149 00000158 00000000 DCD DMA2_Stream7_IRQHandler ; 150 0000015C 00000000 DCD USART6_IRQHandler ; 151 00000160 00000000 DCD I2C3_EV_IRQHandler ; 152 00000164 00000000 DCD I2C3_ER_IRQHandler ; 153 00000168 00000000 DCD USBH_OHCI_IRQHandler ; 154 0000016C 00000000 DCD USBH_EHCI_IRQHandler ; 155 00000170 00000000 DCD EXTI12_IRQHandler ; 156 00000174 00000000 DCD EXTI13_IRQHandler ; 157 00000178 00000000 DCD DCMI_IRQHandler ; 158 0000017C 00000000 DCD CRYP1_IRQHandler ; 159 00000180 00000000 DCD HASH1_IRQHandler ; 160 00000184 00000000 DCD FPU_IRQHandler ; 161 00000188 00000000 DCD UART7_IRQHandler ; 162 0000018C 00000000 DCD UART8_IRQHandler ; 163 00000190 00000000 DCD SPI4_IRQHandler ; 164 00000194 00000000 DCD SPI5_IRQHandler ; 165 00000198 00000000 DCD SPI6_IRQHandler ; 166 0000019C 00000000 DCD SAI1_IRQHandler ; 167 000001A0 00000000 DCD LTDC_IRQHandler ; 168 000001A4 00000000 DCD LTDC_ER_IRQHandler ; 169 000001A8 00000000 DCD ADC2_IRQHandler ; 170 000001AC 00000000 DCD SAI2_IRQHandler ; 171 000001B0 00000000 DCD QUADSPI_IRQHandler ; 172 000001B4 00000000 DCD LPTIM1_IRQHandler ; 173 000001B8 00000000 DCD CEC_IRQHandler ; 174 000001BC 00000000 DCD I2C4_EV_IRQHandler ; 175 000001C0 00000000 DCD I2C4_ER_IRQHandler ; 176 000001C4 00000000 DCD SPDIF_RX_IRQHandler ; 177 000001C8 00000000 DCD OTG_IRQHandler ; 178 000001CC 00000000 DCD RESERVED99_IRQHandler ; 179 000001D0 00000000 DCD IPCC_RX0_IRQHandler ; 180 000001D4 00000000 DCD IPCC_TX0_IRQHandler ; 181 000001D8 00000000 DCD DMAMUX1_OVR_IRQHandler ; 182 000001DC 00000000 DCD IPCC_RX1_IRQHandler ; 183 000001E0 00000000 DCD IPCC_TX1_IRQHandler ; 184 000001E4 00000000 DCD CRYP2_IRQHandler ; 185 000001E8 00000000 DCD HASH2_IRQHandler ; 186 000001EC 00000000 DCD I2C5_EV_IRQHandler ; 187 000001F0 00000000 DCD I2C5_ER_IRQHandler ; 188 000001F4 00000000 DCD GPU_IRQHandler ; 189 000001F8 00000000 DCD DFSDM1_FLT0_IRQHandler ; 190 000001FC 00000000 DCD DFSDM1_FLT1_IRQHandler ; 191 00000200 00000000 DCD DFSDM1_FLT2_IRQHandler ; 192 00000204 00000000 DCD DFSDM1_FLT3_IRQHandler ; 193 00000208 00000000 DCD SAI3_IRQHandler ; 194 0000020C 00000000 DCD DFSDM1_FLT4_IRQHandler ; 195 00000210 00000000 DCD TIM15_IRQHandler ; 196 00000214 00000000 DCD TIM16_IRQHandler ; 197 00000218 00000000 DCD TIM17_IRQHandler ; 198 0000021C 00000000 DCD TIM12_IRQHandler ; 199 00000220 00000000 DCD MDIOS_IRQHandler ; 200 00000224 00000000 DCD EXTI14_IRQHandler ; 201 00000228 00000000 DCD MDMA_IRQHandler ; 202 0000022C 00000000 DCD DSI_IRQHandler ; 203 00000230 00000000 DCD SDMMC2_IRQHandler ; 204 00000234 00000000 DCD HSEM_IT2_IRQHandler ; ARM Macro Assembler Page 5 205 00000238 00000000 DCD DFSDM1_FLT5_IRQHandler ; 206 0000023C 00000000 DCD EXTI15_IRQHandler ; 207 00000240 00000000 DCD nCTIIRQ1_IRQHandler ; 208 00000244 00000000 DCD nCTIIRQ2_IRQHandler ; 209 00000248 00000000 DCD TIM13_IRQHandler ; 210 0000024C 00000000 DCD TIM14_IRQHandler ; 211 00000250 00000000 DCD DAC_IRQHandler ; 212 00000254 00000000 DCD RNG1_IRQHandler ; 213 00000258 00000000 DCD RNG2_IRQHandler ; 214 0000025C 00000000 DCD I2C6_EV_IRQHandler ; 215 00000260 00000000 DCD I2C6_ER_IRQHandler ; 216 00000264 00000000 DCD SDMMC3_IRQHandler ; 217 00000268 00000000 DCD LPTIM2_IRQHandler ; 218 0000026C 00000000 DCD LPTIM3_IRQHandler ; 219 00000270 00000000 DCD LPTIM4_IRQHandler ; 220 00000274 00000000 DCD LPTIM5_IRQHandler ; 221 00000278 00000000 DCD ETH1_LPI_IRQHandler ; 222 0000027C 00000000 DCD RESERVED143_IRQHandler ; 223 00000280 00000000 DCD MPU_SEV_IRQHandler ; 224 00000284 00000000 DCD RCC_WAKEUP_IRQHandler ; 225 00000288 00000000 DCD SAI4_IRQHandler ; 226 0000028C 00000000 DCD DTS_IRQHandler ; 227 00000290 00000000 DCD RESERVED148_IRQHandler ; 228 00000294 00000000 DCD WAKEUP_PIN_IRQHandler ; 229 00000298 230 00000298 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ARM Macro Assembler Page 6 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ARM Macro Assembler Page 7 00 00 00 00 00 00 00 00 00 00 00 00 00 SPACE (73 * 4) ; Interrupts 151 .. 224 are left out 231 000003BC __Vectors_End 232 000003BC 000003BC __Vectors_Size EQU __Vectors_End - __Vectors 233 000003BC 234 000003BC 235 000003BC AREA |.text|, CODE, READONLY 236 00000000 237 00000000 ; Reset Handler 238 00000000 239 00000000 Reset_Handler PROC 240 00000000 EXPORT Reset_Handler [WEAK ] 241 00000000 IMPORT SystemInit 242 00000000 IMPORT __main 243 00000000 244 00000000 4851 LDR R0, =SystemInit 245 00000002 4780 BLX R0 246 00000004 4851 LDR R0, =__main 247 00000006 4700 BX R0 248 00000008 ENDP 249 00000008 250 00000008 251 00000008 ; Macro to define default exception/interrupt handlers. 252 00000008 ; Default handler are weak symbols with an endless loop. 253 00000008 ; They can be overwritten by real handlers. 254 00000008 MACRO 255 00000008 Set_Default_Handler $Handler_Name 256 00000008 $Handler_Name PROC 257 00000008 EXPORT $Handler_Name [WEAK ] 258 00000008 B . 259 00000008 ENDP 260 00000008 MEND 261 00000008 262 00000008 263 00000008 ; Default exception/interrupt handler 264 00000008 265 00000008 Set_Default_Handler NMI_Handler 256 00000008 NMI_Handler PROC 257 00000008 EXPORT NMI_Handler [WEAK] 258 00000008 E7FE B . 259 0000000A ENDP 266 0000000A Set_Default_Handler HardFault_Handler 256 0000000A HardFault_Handler PROC ARM Macro Assembler Page 8 257 0000000A EXPORT HardFault_Handler [ WEAK] 258 0000000A E7FE B . 259 0000000C ENDP 267 0000000C Set_Default_Handler MemManage_Handler 256 0000000C MemManage_Handler PROC 257 0000000C EXPORT MemManage_Handler [ WEAK] 258 0000000C E7FE B . 259 0000000E ENDP 268 0000000E Set_Default_Handler BusFault_Handler 256 0000000E BusFault_Handler PROC 257 0000000E EXPORT BusFault_Handler [W EAK] 258 0000000E E7FE B . 259 00000010 ENDP 269 00000010 Set_Default_Handler UsageFault_Handler 256 00000010 UsageFault_Handler PROC 257 00000010 EXPORT UsageFault_Handler [WEAK] 258 00000010 E7FE B . 259 00000012 ENDP 270 00000012 Set_Default_Handler SVC_Handler 256 00000012 SVC_Handler PROC 257 00000012 EXPORT SVC_Handler [WEAK] 258 00000012 E7FE B . 259 00000014 ENDP 271 00000014 Set_Default_Handler DebugMon_Handler 256 00000014 DebugMon_Handler PROC 257 00000014 EXPORT DebugMon_Handler [W EAK] 258 00000014 E7FE B . 259 00000016 ENDP 272 00000016 Set_Default_Handler PendSV_Handler 256 00000016 PendSV_Handler PROC 257 00000016 EXPORT PendSV_Handler [WEA K] 258 00000016 E7FE B . 259 00000018 ENDP 273 00000018 Set_Default_Handler SysTick_Handler 256 00000018 SysTick_Handler PROC 257 00000018 EXPORT SysTick_Handler [WE AK] 258 00000018 E7FE B . 259 0000001A ENDP ARM Macro Assembler Page 9 274 0000001A 275 0000001A Set_Default_Handler WWDG1_IRQHandler ; Window WatchDog 1 256 0000001A WWDG1_IRQHandler PROC 257 0000001A EXPORT WWDG1_IRQHandler [W EAK] 258 0000001A E7FE B . 259 0000001C ENDP 276 0000001C Set_Default_Handler PVD_AVD_IRQHandler ; PVD and AV D through EXTI Line detection 256 0000001C PVD_AVD_IRQHandler PROC 257 0000001C EXPORT PVD_AVD_IRQHandler [WEAK] 258 0000001C E7FE B . 259 0000001E ENDP 277 0000001E Set_Default_Handler TAMP_IRQHandler ; Tamper and Ti meStamps through th e EXTI line 256 0000001E TAMP_IRQHandler PROC 257 0000001E EXPORT TAMP_IRQHandler [WE AK] 258 0000001E E7FE B . 259 00000020 ENDP 278 00000020 Set_Default_Handler RTC_WKUP_ALARM_IRQHandler ; RTC Wakeup and Alarm t hrough the EXTI lin e 256 00000020 RTC_WKUP_ALARM_IRQHandler PROC 257 00000020 EXPORT RTC_WKUP_ALARM_IRQHandler [WEAK] 258 00000020 E7FE B . 259 00000022 ENDP 279 00000022 Set_Default_Handler RESERVED4_IRQHandler ; Reserved 256 00000022 RESERVED4_IRQHandler PROC 257 00000022 EXPORT RESERVED4_IRQHandler [WEAK] 258 00000022 E7FE B . 259 00000024 ENDP 280 00000024 Set_Default_Handler RCC_IRQHandler ; RCC 256 00000024 RCC_IRQHandler PROC 257 00000024 EXPORT RCC_IRQHandler [WEA ARM Macro Assembler Page 10 K] 258 00000024 E7FE B . 259 00000026 ENDP 281 00000026 Set_Default_Handler EXTI0_IRQHandler ; EXTI Line0 256 00000026 EXTI0_IRQHandler PROC 257 00000026 EXPORT EXTI0_IRQHandler [W EAK] 258 00000026 E7FE B . 259 00000028 ENDP 282 00000028 Set_Default_Handler EXTI1_IRQHandler ; EXTI Line1 256 00000028 EXTI1_IRQHandler PROC 257 00000028 EXPORT EXTI1_IRQHandler [W EAK] 258 00000028 E7FE B . 259 0000002A ENDP 283 0000002A Set_Default_Handler EXTI2_IRQHandler ; EXTI Line2 256 0000002A EXTI2_IRQHandler PROC 257 0000002A EXPORT EXTI2_IRQHandler [W EAK] 258 0000002A E7FE B . 259 0000002C ENDP 284 0000002C Set_Default_Handler EXTI3_IRQHandler ; EXTI Line3 256 0000002C EXTI3_IRQHandler PROC 257 0000002C EXPORT EXTI3_IRQHandler [W EAK] 258 0000002C E7FE B . 259 0000002E ENDP 285 0000002E Set_Default_Handler EXTI4_IRQHandler ; EXTI Line4 256 0000002E EXTI4_IRQHandler PROC 257 0000002E EXPORT EXTI4_IRQHandler [W EAK] 258 0000002E E7FE B . 259 00000030 ENDP 286 00000030 Set_Default_Handler DMA1_Stream0_IRQHandler ; DMA1 Stream 0 ARM Macro Assembler Page 11 256 00000030 DMA1_Stream0_IRQHandler PROC 257 00000030 EXPORT DMA1_Stream0_IRQHandler [WEAK] 258 00000030 E7FE B . 259 00000032 ENDP 287 00000032 Set_Default_Handler DMA1_Stream1_IRQHandler ; DMA1 Stream 1 256 00000032 DMA1_Stream1_IRQHandler PROC 257 00000032 EXPORT DMA1_Stream1_IRQHandler [WEAK] 258 00000032 E7FE B . 259 00000034 ENDP 288 00000034 Set_Default_Handler DMA1_Stream2_IRQHandler ; DMA1 Stream 2 256 00000034 DMA1_Stream2_IRQHandler PROC 257 00000034 EXPORT DMA1_Stream2_IRQHandler [WEAK] 258 00000034 E7FE B . 259 00000036 ENDP 289 00000036 Set_Default_Handler DMA1_Stream3_IRQHandler ; DMA1 Stream 3 256 00000036 DMA1_Stream3_IRQHandler PROC 257 00000036 EXPORT DMA1_Stream3_IRQHandler [WEAK] 258 00000036 E7FE B . 259 00000038 ENDP 290 00000038 Set_Default_Handler DMA1_Stream4_IRQHandler ; DMA1 Stream 4 256 00000038 DMA1_Stream4_IRQHandler PROC 257 00000038 EXPORT DMA1_Stream4_IRQHandler [WEAK] 258 00000038 E7FE B . 259 0000003A ENDP 291 0000003A Set_Default_Handler DMA1_Stream5_IRQHandler ; DMA1 Stream 5 ARM Macro Assembler Page 12 256 0000003A DMA1_Stream5_IRQHandler PROC 257 0000003A EXPORT DMA1_Stream5_IRQHandler [WEAK] 258 0000003A E7FE B . 259 0000003C ENDP 292 0000003C Set_Default_Handler DMA1_Stream6_IRQHandler ; DMA1 Stream 6 256 0000003C DMA1_Stream6_IRQHandler PROC 257 0000003C EXPORT DMA1_Stream6_IRQHandler [WEAK] 258 0000003C E7FE B . 259 0000003E ENDP 293 0000003E Set_Default_Handler ADC1_IRQHandler ; ADC1 256 0000003E ADC1_IRQHandler PROC 257 0000003E EXPORT ADC1_IRQHandler [WE AK] 258 0000003E E7FE B . 259 00000040 ENDP 294 00000040 Set_Default_Handler FDCAN1_IT0_IRQHandler ; FDCAN1 Interrupt line 0 256 00000040 FDCAN1_IT0_IRQHandler PROC 257 00000040 EXPORT FDCAN1_IT0_IRQHandler [WEAK] 258 00000040 E7FE B . 259 00000042 ENDP 295 00000042 Set_Default_Handler FDCAN2_IT0_IRQHandler ; FDCAN2 Interrupt line 0 256 00000042 FDCAN2_IT0_IRQHandler PROC 257 00000042 EXPORT FDCAN2_IT0_IRQHandler [WEAK] 258 00000042 E7FE B . 259 00000044 ENDP 296 00000044 Set_Default_Handler FDCAN1_IT1_IRQHandler ; FDCAN1 Interrupt line 1 256 00000044 FDCAN1_IT1_IRQHandler PROC 257 00000044 EXPORT FDCAN1_IT1_IRQHandler [WEAK] 258 00000044 E7FE B . 259 00000046 ENDP 297 00000046 Set_Default_Handler FDCAN2_IT1_IRQHandler ; FDCAN2 Interrupt line 1 256 00000046 FDCAN2_IT1_IRQHandler PROC ARM Macro Assembler Page 13 257 00000046 EXPORT FDCAN2_IT1_IRQHandler [WEAK] 258 00000046 E7FE B . 259 00000048 ENDP 298 00000048 Set_Default_Handler EXTI5_IRQHandler ; External Lin e5 interrupts throu gh AIEC 256 00000048 EXTI5_IRQHandler PROC 257 00000048 EXPORT EXTI5_IRQHandler [W EAK] 258 00000048 E7FE B . 259 0000004A ENDP 299 0000004A Set_Default_Handler TIM1_BRK_IRQHandler ; TIM1 Brea k interrupt 256 0000004A TIM1_BRK_IRQHandler PROC 257 0000004A EXPORT TIM1_BRK_IRQHandler [WEAK] 258 0000004A E7FE B . 259 0000004C ENDP 300 0000004C Set_Default_Handler TIM1_UP_IRQHandler ; TIM1 Updat e Interrupt 256 0000004C TIM1_UP_IRQHandler PROC 257 0000004C EXPORT TIM1_UP_IRQHandler [WEAK] 258 0000004C E7FE B . 259 0000004E ENDP 301 0000004E Set_Default_Handler TIM1_TRG_COM_IRQHandler ; TIM1 Trigger and Commuta tion Interrupt 256 0000004E TIM1_TRG_COM_IRQHandler PROC 257 0000004E EXPORT TIM1_TRG_COM_IRQHandler [WEAK] 258 0000004E E7FE B . 259 00000050 ENDP 302 00000050 Set_Default_Handler TIM1_CC_IRQHandler ; TIM1 Captu re Compare 256 00000050 TIM1_CC_IRQHandler PROC 257 00000050 EXPORT TIM1_CC_IRQHandler [WEAK] 258 00000050 E7FE B . 259 00000052 ENDP 303 00000052 Set_Default_Handler TIM2_IRQHandler ; TIM2 256 00000052 TIM2_IRQHandler PROC ARM Macro Assembler Page 14 257 00000052 EXPORT TIM2_IRQHandler [WE AK] 258 00000052 E7FE B . 259 00000054 ENDP 304 00000054 Set_Default_Handler TIM3_IRQHandler ; TIM3 256 00000054 TIM3_IRQHandler PROC 257 00000054 EXPORT TIM3_IRQHandler [WE AK] 258 00000054 E7FE B . 259 00000056 ENDP 305 00000056 Set_Default_Handler TIM4_IRQHandler ; TIM4 256 00000056 TIM4_IRQHandler PROC 257 00000056 EXPORT TIM4_IRQHandler [WE AK] 258 00000056 E7FE B . 259 00000058 ENDP 306 00000058 Set_Default_Handler I2C1_EV_IRQHandler ; I2C1 Event 256 00000058 I2C1_EV_IRQHandler PROC 257 00000058 EXPORT I2C1_EV_IRQHandler [WEAK] 258 00000058 E7FE B . 259 0000005A ENDP 307 0000005A Set_Default_Handler I2C1_ER_IRQHandler ; I2C1 Error 256 0000005A I2C1_ER_IRQHandler PROC 257 0000005A EXPORT I2C1_ER_IRQHandler [WEAK] 258 0000005A E7FE B . 259 0000005C ENDP 308 0000005C Set_Default_Handler I2C2_EV_IRQHandler ; I2C2 Event 256 0000005C I2C2_EV_IRQHandler PROC 257 0000005C EXPORT I2C2_EV_IRQHandler [WEAK] 258 0000005C E7FE B . 259 0000005E ENDP 309 0000005E Set_Default_Handler I2C2_ER_IRQHandler ; I2C2 Error ARM Macro Assembler Page 15 256 0000005E I2C2_ER_IRQHandler PROC 257 0000005E EXPORT I2C2_ER_IRQHandler [WEAK] 258 0000005E E7FE B . 259 00000060 ENDP 310 00000060 Set_Default_Handler SPI1_IRQHandler ; SPI1 256 00000060 SPI1_IRQHandler PROC 257 00000060 EXPORT SPI1_IRQHandler [WE AK] 258 00000060 E7FE B . 259 00000062 ENDP 311 00000062 Set_Default_Handler SPI2_IRQHandler ; SPI2 256 00000062 SPI2_IRQHandler PROC 257 00000062 EXPORT SPI2_IRQHandler [WE AK] 258 00000062 E7FE B . 259 00000064 ENDP 312 00000064 Set_Default_Handler USART1_IRQHandler ; USART1 256 00000064 USART1_IRQHandler PROC 257 00000064 EXPORT USART1_IRQHandler [ WEAK] 258 00000064 E7FE B . 259 00000066 ENDP 313 00000066 Set_Default_Handler USART2_IRQHandler ; USART2 256 00000066 USART2_IRQHandler PROC 257 00000066 EXPORT USART2_IRQHandler [ WEAK] 258 00000066 E7FE B . 259 00000068 ENDP 314 00000068 Set_Default_Handler USART3_IRQHandler ; USART3 256 00000068 USART3_IRQHandler PROC 257 00000068 EXPORT USART3_IRQHandler [ WEAK] 258 00000068 E7FE B . 259 0000006A ENDP ARM Macro Assembler Page 16 315 0000006A Set_Default_Handler EXTI10_IRQHandler ; External Li ne10 interrupts thr ough AIEC 256 0000006A EXTI10_IRQHandler PROC 257 0000006A EXPORT EXTI10_IRQHandler [ WEAK] 258 0000006A E7FE B . 259 0000006C ENDP 316 0000006C Set_Default_Handler RTC_TIMESTAMP_IRQHandler ; RTC TimeStamp through E XTI Line 256 0000006C RTC_TIMESTAMP_IRQHandler PROC 257 0000006C EXPORT RTC_TIMESTAMP_IRQHandler [WEAK] 258 0000006C E7FE B . 259 0000006E ENDP 317 0000006E Set_Default_Handler EXTI11_IRQHandler ; External Li ne11 interrupts thr ough AIEC 256 0000006E EXTI11_IRQHandler PROC 257 0000006E EXPORT EXTI11_IRQHandler [ WEAK] 258 0000006E E7FE B . 259 00000070 ENDP 318 00000070 Set_Default_Handler TIM8_BRK_IRQHandler ; TIM8 Brea k Interrupt 256 00000070 TIM8_BRK_IRQHandler PROC 257 00000070 EXPORT TIM8_BRK_IRQHandler [WEAK] 258 00000070 E7FE B . 259 00000072 ENDP 319 00000072 Set_Default_Handler TIM8_UP_IRQHandler ; TIM8 Updat e Interrupt 256 00000072 TIM8_UP_IRQHandler PROC 257 00000072 EXPORT TIM8_UP_IRQHandler [WEAK] 258 00000072 E7FE B . 259 00000074 ENDP 320 00000074 Set_Default_Handler TIM8_TRG_COM_IRQHandler ; TIM8 Trigger and Commuta tion Interrupt 256 00000074 TIM8_TRG_COM_IRQHandler PROC 257 00000074 EXPORT TIM8_TRG_COM_IRQHandler [WEAK] 258 00000074 E7FE B . 259 00000076 ENDP 321 00000076 Set_Default_Handler ARM Macro Assembler Page 17 TIM8_CC_IRQHandler ; TIM8 Captu re Compare Interrup t 256 00000076 TIM8_CC_IRQHandler PROC 257 00000076 EXPORT TIM8_CC_IRQHandler [WEAK] 258 00000076 E7FE B . 259 00000078 ENDP 322 00000078 Set_Default_Handler DMA1_Stream7_IRQHandler ; DMA1 Stream7 256 00000078 DMA1_Stream7_IRQHandler PROC 257 00000078 EXPORT DMA1_Stream7_IRQHandler [WEAK] 258 00000078 E7FE B . 259 0000007A ENDP 323 0000007A Set_Default_Handler FMC_IRQHandler ; FMC 256 0000007A FMC_IRQHandler PROC 257 0000007A EXPORT FMC_IRQHandler [WEA K] 258 0000007A E7FE B . 259 0000007C ENDP 324 0000007C Set_Default_Handler SDMMC1_IRQHandler ; SDMMC1 256 0000007C SDMMC1_IRQHandler PROC 257 0000007C EXPORT SDMMC1_IRQHandler [ WEAK] 258 0000007C E7FE B . 259 0000007E ENDP 325 0000007E Set_Default_Handler TIM5_IRQHandler ; TIM5 256 0000007E TIM5_IRQHandler PROC 257 0000007E EXPORT TIM5_IRQHandler [WE AK] 258 0000007E E7FE B . 259 00000080 ENDP 326 00000080 Set_Default_Handler SPI3_IRQHandler ; SPI3 256 00000080 SPI3_IRQHandler PROC 257 00000080 EXPORT SPI3_IRQHandler [WE AK] 258 00000080 E7FE B . 259 00000082 ENDP 327 00000082 Set_Default_Handler UART4_IRQHandler ; UART4 ARM Macro Assembler Page 18 256 00000082 UART4_IRQHandler PROC 257 00000082 EXPORT UART4_IRQHandler [W EAK] 258 00000082 E7FE B . 259 00000084 ENDP 328 00000084 Set_Default_Handler UART5_IRQHandler ; UART5 256 00000084 UART5_IRQHandler PROC 257 00000084 EXPORT UART5_IRQHandler [W EAK] 258 00000084 E7FE B . 259 00000086 ENDP 329 00000086 Set_Default_Handler TIM6_IRQHandler ; TIM6 256 00000086 TIM6_IRQHandler PROC 257 00000086 EXPORT TIM6_IRQHandler [WE AK] 258 00000086 E7FE B . 259 00000088 ENDP 330 00000088 Set_Default_Handler TIM7_IRQHandler ; TIM7 256 00000088 TIM7_IRQHandler PROC 257 00000088 EXPORT TIM7_IRQHandler [WE AK] 258 00000088 E7FE B . 259 0000008A ENDP 331 0000008A Set_Default_Handler DMA2_Stream0_IRQHandler ; DMA2 Stream 0 256 0000008A DMA2_Stream0_IRQHandler PROC 257 0000008A EXPORT DMA2_Stream0_IRQHandler [WEAK] 258 0000008A E7FE B . 259 0000008C ENDP 332 0000008C Set_Default_Handler DMA2_Stream1_IRQHandler ; DMA2 Stream 1 256 0000008C DMA2_Stream1_IRQHandler PROC 257 0000008C EXPORT DMA2_Stream1_IRQHandler [WEAK] 258 0000008C E7FE B . 259 0000008E ENDP 333 0000008E Set_Default_Handler DMA2_Stream2_IRQHandler ; DMA2 Stream 2 ARM Macro Assembler Page 19 256 0000008E DMA2_Stream2_IRQHandler PROC 257 0000008E EXPORT DMA2_Stream2_IRQHandler [WEAK] 258 0000008E E7FE B . 259 00000090 ENDP 334 00000090 Set_Default_Handler DMA2_Stream3_IRQHandler ; DMA2 Stream 3 256 00000090 DMA2_Stream3_IRQHandler PROC 257 00000090 EXPORT DMA2_Stream3_IRQHandler [WEAK] 258 00000090 E7FE B . 259 00000092 ENDP 335 00000092 Set_Default_Handler DMA2_Stream4_IRQHandler ; DMA2 Stream 4 256 00000092 DMA2_Stream4_IRQHandler PROC 257 00000092 EXPORT DMA2_Stream4_IRQHandler [WEAK] 258 00000092 E7FE B . 259 00000094 ENDP 336 00000094 Set_Default_Handler ETH1_IRQHandler ; Ethernet 256 00000094 ETH1_IRQHandler PROC 257 00000094 EXPORT ETH1_IRQHandler [WE AK] 258 00000094 E7FE B . 259 00000096 ENDP 337 00000096 Set_Default_Handler ETH1_WKUP_IRQHandler ; Ethernet Wakeup through EXT I line 256 00000096 ETH1_WKUP_IRQHandler PROC 257 00000096 EXPORT ETH1_WKUP_IRQHandler [WEAK] 258 00000096 E7FE B . 259 00000098 ENDP 338 00000098 Set_Default_Handler FDCAN_CAL_IRQHandler ; FDCAN Calibration 256 00000098 FDCAN_CAL_IRQHandler PROC 257 00000098 EXPORT FDCAN_CAL_IRQHandler [WEAK] 258 00000098 E7FE B . 259 0000009A ENDP 339 0000009A Set_Default_Handler EXTI6_IRQHandler ; EXTI Line6 i ARM Macro Assembler Page 20 nterrupts through A IEC 256 0000009A EXTI6_IRQHandler PROC 257 0000009A EXPORT EXTI6_IRQHandler [W EAK] 258 0000009A E7FE B . 259 0000009C ENDP 340 0000009C Set_Default_Handler EXTI7_IRQHandler ; EXTI Line7 i nterrupts through A IEC 256 0000009C EXTI7_IRQHandler PROC 257 0000009C EXPORT EXTI7_IRQHandler [W EAK] 258 0000009C E7FE B . 259 0000009E ENDP 341 0000009E Set_Default_Handler EXTI8_IRQHandler ; EXTI Line8 i nterrupts through A IEC 256 0000009E EXTI8_IRQHandler PROC 257 0000009E EXPORT EXTI8_IRQHandler [W EAK] 258 0000009E E7FE B . 259 000000A0 ENDP 342 000000A0 Set_Default_Handler EXTI9_IRQHandler ; EXTI Line9 i nterrupts through A IEC 256 000000A0 EXTI9_IRQHandler PROC 257 000000A0 EXPORT EXTI9_IRQHandler [W EAK] 258 000000A0 E7FE B . 259 000000A2 ENDP 343 000000A2 Set_Default_Handler DMA2_Stream5_IRQHandler ; DMA2 Stream 5 256 000000A2 DMA2_Stream5_IRQHandler PROC 257 000000A2 EXPORT DMA2_Stream5_IRQHandler [WEAK] 258 000000A2 E7FE B . 259 000000A4 ENDP 344 000000A4 Set_Default_Handler DMA2_Stream6_IRQHandler ; DMA2 Stream 6 256 000000A4 DMA2_Stream6_IRQHandler PROC 257 000000A4 EXPORT DMA2_Stream6_IRQHandler [WEAK] 258 000000A4 E7FE B . 259 000000A6 ENDP 345 000000A6 Set_Default_Handler ARM Macro Assembler Page 21 DMA2_Stream7_IRQHandler ; DMA2 Stream 7 256 000000A6 DMA2_Stream7_IRQHandler PROC 257 000000A6 EXPORT DMA2_Stream7_IRQHandler [WEAK] 258 000000A6 E7FE B . 259 000000A8 ENDP 346 000000A8 Set_Default_Handler USART6_IRQHandler ; USART6 256 000000A8 USART6_IRQHandler PROC 257 000000A8 EXPORT USART6_IRQHandler [ WEAK] 258 000000A8 E7FE B . 259 000000AA ENDP 347 000000AA Set_Default_Handler I2C3_EV_IRQHandler ; I2C3 event 256 000000AA I2C3_EV_IRQHandler PROC 257 000000AA EXPORT I2C3_EV_IRQHandler [WEAK] 258 000000AA E7FE B . 259 000000AC ENDP 348 000000AC Set_Default_Handler I2C3_ER_IRQHandler ; I2C3 error 256 000000AC I2C3_ER_IRQHandler PROC 257 000000AC EXPORT I2C3_ER_IRQHandler [WEAK] 258 000000AC E7FE B . 259 000000AE ENDP 349 000000AE Set_Default_Handler USBH_OHCI_IRQHandler ; USB Host OHCI 256 000000AE USBH_OHCI_IRQHandler PROC 257 000000AE EXPORT USBH_OHCI_IRQHandler [WEAK] 258 000000AE E7FE B . 259 000000B0 ENDP 350 000000B0 Set_Default_Handler USBH_EHCI_IRQHandler ; USB Host EHCI 256 000000B0 USBH_EHCI_IRQHandler PROC 257 000000B0 EXPORT USBH_EHCI_IRQHandler [WEAK] 258 000000B0 E7FE B . 259 000000B2 ENDP 351 000000B2 Set_Default_Handler EXTI12_IRQHandler ; EXTI Line12 ARM Macro Assembler Page 22 interrupts through AIEC 256 000000B2 EXTI12_IRQHandler PROC 257 000000B2 EXPORT EXTI12_IRQHandler [ WEAK] 258 000000B2 E7FE B . 259 000000B4 ENDP 352 000000B4 Set_Default_Handler EXTI13_IRQHandler ; EXTI Line13 interrupts through AIEC 256 000000B4 EXTI13_IRQHandler PROC 257 000000B4 EXPORT EXTI13_IRQHandler [ WEAK] 258 000000B4 E7FE B . 259 000000B6 ENDP 353 000000B6 Set_Default_Handler DCMI_IRQHandler ; DCMI 256 000000B6 DCMI_IRQHandler PROC 257 000000B6 EXPORT DCMI_IRQHandler [WE AK] 258 000000B6 E7FE B . 259 000000B8 ENDP 354 000000B8 Set_Default_Handler CRYP1_IRQHandler ; Crypto1 glob al interrupt 256 000000B8 CRYP1_IRQHandler PROC 257 000000B8 EXPORT CRYP1_IRQHandler [W EAK] 258 000000B8 E7FE B . 259 000000BA ENDP 355 000000BA Set_Default_Handler HASH1_IRQHandler ; Crypto Hash1 interrupt 256 000000BA HASH1_IRQHandler PROC 257 000000BA EXPORT HASH1_IRQHandler [W EAK] 258 000000BA E7FE B . 259 000000BC ENDP 356 000000BC Set_Default_Handler FPU_IRQHandler ; FPU 256 000000BC FPU_IRQHandler PROC 257 000000BC EXPORT FPU_IRQHandler [WEA K] 258 000000BC E7FE B . 259 000000BE ENDP 357 000000BE Set_Default_Handler UART7_IRQHandler ; UART7 256 000000BE UART7_IRQHandler PROC 257 000000BE EXPORT UART7_IRQHandler [W ARM Macro Assembler Page 23 EAK] 258 000000BE E7FE B . 259 000000C0 ENDP 358 000000C0 Set_Default_Handler UART8_IRQHandler ; UART8 256 000000C0 UART8_IRQHandler PROC 257 000000C0 EXPORT UART8_IRQHandler [W EAK] 258 000000C0 E7FE B . 259 000000C2 ENDP 359 000000C2 Set_Default_Handler SPI4_IRQHandler ; SPI4 256 000000C2 SPI4_IRQHandler PROC 257 000000C2 EXPORT SPI4_IRQHandler [WE AK] 258 000000C2 E7FE B . 259 000000C4 ENDP 360 000000C4 Set_Default_Handler SPI5_IRQHandler ; SPI5 256 000000C4 SPI5_IRQHandler PROC 257 000000C4 EXPORT SPI5_IRQHandler [WE AK] 258 000000C4 E7FE B . 259 000000C6 ENDP 361 000000C6 Set_Default_Handler SPI6_IRQHandler ; SPI6 256 000000C6 SPI6_IRQHandler PROC 257 000000C6 EXPORT SPI6_IRQHandler [WE AK] 258 000000C6 E7FE B . 259 000000C8 ENDP 362 000000C8 Set_Default_Handler SAI1_IRQHandler ; SAI1 256 000000C8 SAI1_IRQHandler PROC 257 000000C8 EXPORT SAI1_IRQHandler [WE AK] 258 000000C8 E7FE B . 259 000000CA ENDP 363 000000CA Set_Default_Handler LTDC_IRQHandler ; LTDC 256 000000CA LTDC_IRQHandler PROC 257 000000CA EXPORT LTDC_IRQHandler [WE AK] 258 000000CA E7FE B . 259 000000CC ENDP 364 000000CC Set_Default_Handler LTDC_ER_IRQHandler ; LTDC error 256 000000CC LTDC_ER_IRQHandler PROC 257 000000CC EXPORT LTDC_ER_IRQHandler [WEAK] 258 000000CC E7FE B . ARM Macro Assembler Page 24 259 000000CE ENDP 365 000000CE Set_Default_Handler ADC2_IRQHandler ; ADC2 256 000000CE ADC2_IRQHandler PROC 257 000000CE EXPORT ADC2_IRQHandler [WE AK] 258 000000CE E7FE B . 259 000000D0 ENDP 366 000000D0 Set_Default_Handler SAI2_IRQHandler ; SAI2 256 000000D0 SAI2_IRQHandler PROC 257 000000D0 EXPORT SAI2_IRQHandler [WE AK] 258 000000D0 E7FE B . 259 000000D2 ENDP 367 000000D2 Set_Default_Handler QUADSPI_IRQHandler ; QUADSPI 256 000000D2 QUADSPI_IRQHandler PROC 257 000000D2 EXPORT QUADSPI_IRQHandler [WEAK] 258 000000D2 E7FE B . 259 000000D4 ENDP 368 000000D4 Set_Default_Handler LPTIM1_IRQHandler ; LPTIM1 glob al interrupt 256 000000D4 LPTIM1_IRQHandler PROC 257 000000D4 EXPORT LPTIM1_IRQHandler [ WEAK] 258 000000D4 E7FE B . 259 000000D6 ENDP 369 000000D6 Set_Default_Handler CEC_IRQHandler ; HDMI_CEC 256 000000D6 CEC_IRQHandler PROC 257 000000D6 EXPORT CEC_IRQHandler [WEA K] 258 000000D6 E7FE B . 259 000000D8 ENDP 370 000000D8 Set_Default_Handler I2C4_EV_IRQHandler ; I2C4 Event 256 000000D8 I2C4_EV_IRQHandler PROC 257 000000D8 EXPORT I2C4_EV_IRQHandler [WEAK] 258 000000D8 E7FE B . 259 000000DA ENDP 371 000000DA Set_Default_Handler I2C4_ER_IRQHandler ; I2C4 Error 256 000000DA I2C4_ER_IRQHandler PROC 257 000000DA EXPORT I2C4_ER_IRQHandler [WEAK] ARM Macro Assembler Page 25 258 000000DA E7FE B . 259 000000DC ENDP 372 000000DC Set_Default_Handler SPDIF_RX_IRQHandler ; SPDIF_RX 256 000000DC SPDIF_RX_IRQHandler PROC 257 000000DC EXPORT SPDIF_RX_IRQHandler [WEAK] 258 000000DC E7FE B . 259 000000DE ENDP 373 000000DE Set_Default_Handler OTG_IRQHandler ; USB On The Go HS global interrupt 256 000000DE OTG_IRQHandler PROC 257 000000DE EXPORT OTG_IRQHandler [WEA K] 258 000000DE E7FE B . 259 000000E0 ENDP 374 000000E0 Set_Default_Handler RESERVED99_IRQHandler ; Reserved 256 000000E0 RESERVED99_IRQHandler PROC 257 000000E0 EXPORT RESERVED99_IRQHandler [WEAK] 258 000000E0 E7FE B . 259 000000E2 ENDP 375 000000E2 Set_Default_Handler IPCC_RX0_IRQHandler ; Mailbox R X0 Free interrupt 256 000000E2 IPCC_RX0_IRQHandler PROC 257 000000E2 EXPORT IPCC_RX0_IRQHandler [WEAK] 258 000000E2 E7FE B . 259 000000E4 ENDP 376 000000E4 Set_Default_Handler IPCC_TX0_IRQHandler ; Mailbox T X0 Free interrupt 256 000000E4 IPCC_TX0_IRQHandler PROC 257 000000E4 EXPORT IPCC_TX0_IRQHandler [WEAK] 258 000000E4 E7FE B . 259 000000E6 ENDP 377 000000E6 Set_Default_Handler DMAMUX1_OVR_IRQHandler ; DMAMUX 1 Overrun interrupt 256 000000E6 DMAMUX1_OVR_IRQHandler PROC 257 000000E6 EXPORT DMAMUX1_OVR_IRQHandler [WEAK] 258 000000E6 E7FE B . 259 000000E8 ENDP 378 000000E8 Set_Default_Handler IPCC_RX1_IRQHandler ; Mailbox R ARM Macro Assembler Page 26 X1 Free interrupt 256 000000E8 IPCC_RX1_IRQHandler PROC 257 000000E8 EXPORT IPCC_RX1_IRQHandler [WEAK] 258 000000E8 E7FE B . 259 000000EA ENDP 379 000000EA Set_Default_Handler IPCC_TX1_IRQHandler ; Mailbox T X1 Free interrupt 256 000000EA IPCC_TX1_IRQHandler PROC 257 000000EA EXPORT IPCC_TX1_IRQHandler [WEAK] 258 000000EA E7FE B . 259 000000EC ENDP 380 000000EC Set_Default_Handler CRYP2_IRQHandler ; Crypto2 glob al interrupt 256 000000EC CRYP2_IRQHandler PROC 257 000000EC EXPORT CRYP2_IRQHandler [W EAK] 258 000000EC E7FE B . 259 000000EE ENDP 381 000000EE Set_Default_Handler HASH2_IRQHandler ; Crypto Hash2 interrupt 256 000000EE HASH2_IRQHandler PROC 257 000000EE EXPORT HASH2_IRQHandler [W EAK] 258 000000EE E7FE B . 259 000000F0 ENDP 382 000000F0 Set_Default_Handler I2C5_EV_IRQHandler ; I2C5 Event Interrupt 256 000000F0 I2C5_EV_IRQHandler PROC 257 000000F0 EXPORT I2C5_EV_IRQHandler [WEAK] 258 000000F0 E7FE B . 259 000000F2 ENDP 383 000000F2 Set_Default_Handler I2C5_ER_IRQHandler ; I2C5 Error Interrupt 256 000000F2 I2C5_ER_IRQHandler PROC 257 000000F2 EXPORT I2C5_ER_IRQHandler [WEAK] 258 000000F2 E7FE B . 259 000000F4 ENDP 384 000000F4 Set_Default_Handler GPU_IRQHandler ; GPU Global Int errupt 256 000000F4 GPU_IRQHandler PROC 257 000000F4 EXPORT GPU_IRQHandler [WEA K] ARM Macro Assembler Page 27 258 000000F4 E7FE B . 259 000000F6 ENDP 385 000000F6 Set_Default_Handler DFSDM1_FLT0_IRQHandler ; DFSDM Filter0 Interrupt 256 000000F6 DFSDM1_FLT0_IRQHandler PROC 257 000000F6 EXPORT DFSDM1_FLT0_IRQHandler [WEAK] 258 000000F6 E7FE B . 259 000000F8 ENDP 386 000000F8 Set_Default_Handler DFSDM1_FLT1_IRQHandler ; DFSDM Filter1 Interrupt 256 000000F8 DFSDM1_FLT1_IRQHandler PROC 257 000000F8 EXPORT DFSDM1_FLT1_IRQHandler [WEAK] 258 000000F8 E7FE B . 259 000000FA ENDP 387 000000FA Set_Default_Handler DFSDM1_FLT2_IRQHandler ; DFSDM Filter2 Interrupt 256 000000FA DFSDM1_FLT2_IRQHandler PROC 257 000000FA EXPORT DFSDM1_FLT2_IRQHandler [WEAK] 258 000000FA E7FE B . 259 000000FC ENDP 388 000000FC Set_Default_Handler DFSDM1_FLT3_IRQHandler ; DFSDM Filter3 Interrupt 256 000000FC DFSDM1_FLT3_IRQHandler PROC 257 000000FC EXPORT DFSDM1_FLT3_IRQHandler [WEAK] 258 000000FC E7FE B . 259 000000FE ENDP 389 000000FE Set_Default_Handler SAI3_IRQHandler ; SAI3 global I nterrupt 256 000000FE SAI3_IRQHandler PROC 257 000000FE EXPORT SAI3_IRQHandler [WE AK] 258 000000FE E7FE B . 259 00000100 ENDP 390 00000100 Set_Default_Handler DFSDM1_FLT4_IRQHandler ; DFSDM Filter4 Interrupt 256 00000100 DFSDM1_FLT4_IRQHandler PROC 257 00000100 EXPORT DFSDM1_FLT4_IRQHandler [WEAK] 258 00000100 E7FE B . 259 00000102 ENDP 391 00000102 Set_Default_Handler TIM15_IRQHandler ; TIM15 global Interrupt ARM Macro Assembler Page 28 256 00000102 TIM15_IRQHandler PROC 257 00000102 EXPORT TIM15_IRQHandler [W EAK] 258 00000102 E7FE B . 259 00000104 ENDP 392 00000104 Set_Default_Handler TIM16_IRQHandler ; TIM16 global Interrupt 256 00000104 TIM16_IRQHandler PROC 257 00000104 EXPORT TIM16_IRQHandler [W EAK] 258 00000104 E7FE B . 259 00000106 ENDP 393 00000106 Set_Default_Handler TIM17_IRQHandler ; TIM17 global Interrupt 256 00000106 TIM17_IRQHandler PROC 257 00000106 EXPORT TIM17_IRQHandler [W EAK] 258 00000106 E7FE B . 259 00000108 ENDP 394 00000108 Set_Default_Handler TIM12_IRQHandler ; TIM12 global Interrupt 256 00000108 TIM12_IRQHandler PROC 257 00000108 EXPORT TIM12_IRQHandler [W EAK] 258 00000108 E7FE B . 259 0000010A ENDP 395 0000010A Set_Default_Handler MDIOS_IRQHandler ; MDIOS global Interrupt 256 0000010A MDIOS_IRQHandler PROC 257 0000010A EXPORT MDIOS_IRQHandler [W EAK] 258 0000010A E7FE B . 259 0000010C ENDP 396 0000010C Set_Default_Handler EXTI14_IRQHandler ; EXTI Line14 interrupts through AIEC 256 0000010C EXTI14_IRQHandler PROC 257 0000010C EXPORT EXTI14_IRQHandler [ WEAK] 258 0000010C E7FE B . 259 0000010E ENDP 397 0000010E Set_Default_Handler MDMA_IRQHandler ; MDMA global I nterrupt 256 0000010E MDMA_IRQHandler PROC 257 0000010E EXPORT MDMA_IRQHandler [WE AK] ARM Macro Assembler Page 29 258 0000010E E7FE B . 259 00000110 ENDP 398 00000110 Set_Default_Handler DSI_IRQHandler ; DSI global Int errupt 256 00000110 DSI_IRQHandler PROC 257 00000110 EXPORT DSI_IRQHandler [WEA K] 258 00000110 E7FE B . 259 00000112 ENDP 399 00000112 Set_Default_Handler SDMMC2_IRQHandler ; SDMMC2 glob al Interrupt 256 00000112 SDMMC2_IRQHandler PROC 257 00000112 EXPORT SDMMC2_IRQHandler [ WEAK] 258 00000112 E7FE B . 259 00000114 ENDP 400 00000114 Set_Default_Handler HSEM_IT2_IRQHandler ; HSEM glob al Interrupt 256 00000114 HSEM_IT2_IRQHandler PROC 257 00000114 EXPORT HSEM_IT2_IRQHandler [WEAK] 258 00000114 E7FE B . 259 00000116 ENDP 401 00000116 Set_Default_Handler DFSDM1_FLT5_IRQHandler ; DFSDM Filter5 Interrupt 256 00000116 DFSDM1_FLT5_IRQHandler PROC 257 00000116 EXPORT DFSDM1_FLT5_IRQHandler [WEAK] 258 00000116 E7FE B . 259 00000118 ENDP 402 00000118 Set_Default_Handler EXTI15_IRQHandler ; EXTI Line15 interrupts through AIEC 256 00000118 EXTI15_IRQHandler PROC 257 00000118 EXPORT EXTI15_IRQHandler [ WEAK] 258 00000118 E7FE B . 259 0000011A ENDP 403 0000011A Set_Default_Handler nCTIIRQ1_IRQHandler ; Cortex-M4 CTI interrupt 1 256 0000011A nCTIIRQ1_IRQHandler PROC 257 0000011A EXPORT nCTIIRQ1_IRQHandler [WEAK] 258 0000011A E7FE B . 259 0000011C ENDP 404 0000011C Set_Default_Handler nCTIIRQ2_IRQHandler ; Cortex-M4 ARM Macro Assembler Page 30 CTI interrupt 2 256 0000011C nCTIIRQ2_IRQHandler PROC 257 0000011C EXPORT nCTIIRQ2_IRQHandler [WEAK] 258 0000011C E7FE B . 259 0000011E ENDP 405 0000011E Set_Default_Handler TIM13_IRQHandler ; TIM13 global interrupt 256 0000011E TIM13_IRQHandler PROC 257 0000011E EXPORT TIM13_IRQHandler [W EAK] 258 0000011E E7FE B . 259 00000120 ENDP 406 00000120 Set_Default_Handler TIM14_IRQHandler ; TIM14 global interrupt 256 00000120 TIM14_IRQHandler PROC 257 00000120 EXPORT TIM14_IRQHandler [W EAK] 258 00000120 E7FE B . 259 00000122 ENDP 407 00000122 Set_Default_Handler DAC_IRQHandler ; DAC1 and DAC2 underrun error inte rrupts 256 00000122 DAC_IRQHandler PROC 257 00000122 EXPORT DAC_IRQHandler [WEA K] 258 00000122 E7FE B . 259 00000124 ENDP 408 00000124 Set_Default_Handler RNG1_IRQHandler ; RNG1 interrupt 256 00000124 RNG1_IRQHandler PROC 257 00000124 EXPORT RNG1_IRQHandler [WE AK] 258 00000124 E7FE B . 259 00000126 ENDP 409 00000126 Set_Default_Handler RNG2_IRQHandler ; RNG2 interrupt 256 00000126 RNG2_IRQHandler PROC 257 00000126 EXPORT RNG2_IRQHandler [WE AK] 258 00000126 E7FE B . 259 00000128 ENDP 410 00000128 Set_Default_Handler I2C6_EV_IRQHandler ; I2C6 Event Interrupt 256 00000128 I2C6_EV_IRQHandler PROC 257 00000128 EXPORT I2C6_EV_IRQHandler ARM Macro Assembler Page 31 [WEAK] 258 00000128 E7FE B . 259 0000012A ENDP 411 0000012A Set_Default_Handler I2C6_ER_IRQHandler ; I2C6 Error Interrupt 256 0000012A I2C6_ER_IRQHandler PROC 257 0000012A EXPORT I2C6_ER_IRQHandler [WEAK] 258 0000012A E7FE B . 259 0000012C ENDP 412 0000012C Set_Default_Handler SDMMC3_IRQHandler ; SDMMC3 glob al Interrupt 256 0000012C SDMMC3_IRQHandler PROC 257 0000012C EXPORT SDMMC3_IRQHandler [ WEAK] 258 0000012C E7FE B . 259 0000012E ENDP 413 0000012E Set_Default_Handler LPTIM2_IRQHandler ; LPTIM2 glob al interrupt 256 0000012E LPTIM2_IRQHandler PROC 257 0000012E EXPORT LPTIM2_IRQHandler [ WEAK] 258 0000012E E7FE B . 259 00000130 ENDP 414 00000130 Set_Default_Handler LPTIM3_IRQHandler ; LPTIM3 glob al interrupt 256 00000130 LPTIM3_IRQHandler PROC 257 00000130 EXPORT LPTIM3_IRQHandler [ WEAK] 258 00000130 E7FE B . 259 00000132 ENDP 415 00000132 Set_Default_Handler LPTIM4_IRQHandler ; LPTIM4 glob al interrupt 256 00000132 LPTIM4_IRQHandler PROC 257 00000132 EXPORT LPTIM4_IRQHandler [ WEAK] 258 00000132 E7FE B . 259 00000134 ENDP 416 00000134 Set_Default_Handler LPTIM5_IRQHandler ; LPTIM5 glob al interrupt 256 00000134 LPTIM5_IRQHandler PROC 257 00000134 EXPORT LPTIM5_IRQHandler [ WEAK] 258 00000134 E7FE B . 259 00000136 ENDP 417 00000136 Set_Default_Handler ETH1_LPI_IRQHandler ; Reserved ARM Macro Assembler Page 32 256 00000136 ETH1_LPI_IRQHandler PROC 257 00000136 EXPORT ETH1_LPI_IRQHandler [WEAK] 258 00000136 E7FE B . 259 00000138 ENDP 418 00000138 Set_Default_Handler RESERVED143_IRQHandler ; Reserved 256 00000138 RESERVED143_IRQHandler PROC 257 00000138 EXPORT RESERVED143_IRQHandler [WEAK] 258 00000138 E7FE B . 259 0000013A ENDP 419 0000013A Set_Default_Handler MPU_SEV_IRQHandler ; MPU Send E vent through AIEC 256 0000013A MPU_SEV_IRQHandler PROC 257 0000013A EXPORT MPU_SEV_IRQHandler [WEAK] 258 0000013A E7FE B . 259 0000013C ENDP 420 0000013C Set_Default_Handler RCC_WAKEUP_IRQHandler ; RCC Wak e up interrupt 256 0000013C RCC_WAKEUP_IRQHandler PROC 257 0000013C EXPORT RCC_WAKEUP_IRQHandler [WEAK] 258 0000013C E7FE B . 259 0000013E ENDP 421 0000013E Set_Default_Handler SAI4_IRQHandler ; SAI4 global i nterrupt 256 0000013E SAI4_IRQHandler PROC 257 0000013E EXPORT SAI4_IRQHandler [WE AK] 258 0000013E E7FE B . 259 00000140 ENDP 422 00000140 Set_Default_Handler DTS_IRQHandler ; Temperature se nsor interrupt 256 00000140 DTS_IRQHandler PROC 257 00000140 EXPORT DTS_IRQHandler [WEA K] 258 00000140 E7FE B . 259 00000142 ENDP 423 00000142 Set_Default_Handler RESERVED148_IRQHandler ; Reserved 256 00000142 RESERVED148_IRQHandler PROC 257 00000142 EXPORT RESERVED148_IRQHandler [WEAK] 258 00000142 E7FE B . ARM Macro Assembler Page 33 259 00000144 ENDP 424 00000144 Set_Default_Handler WAKEUP_PIN_IRQHandler ; Interru pt for all 6 wake-u p pins 256 00000144 WAKEUP_PIN_IRQHandler PROC 257 00000144 EXPORT WAKEUP_PIN_IRQHandler [WEAK] 258 00000144 E7FE B . 259 00000146 ENDP 425 00000146 426 00000146 00 00 ALIGN 427 00000148 428 00000148 429 00000148 ; User setup Stack & Heap 430 00000148 431 00000148 EXPORT __stack_limit 432 00000148 EXPORT __initial_sp 433 00000148 IF Heap_Size != 0 ; Heap is provided 434 00000148 EXPORT __heap_base 435 00000148 EXPORT __heap_limit 436 00000148 ENDIF 437 00000148 438 00000148 END 00000000 00000000 Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M4.fp.sp --apcs= interwork --depend=keyscan003\startup_stm32mp15xx.d -okeyscan003\startup_stm32m p15xx.o -I.\RTE\_keyscan003 -IC:\Users\ZBright\AppData\Local\Arm\Packs\ARM\CMSI S\6.1.0\CMSIS\Core\Include --predefine="__UVISION_VERSION SETA 538" --predefine ="_RTE_ SETA 1" --predefine="_RTE_ SETA 1" --list=startup_stm32mp15xx.lst start up_stm32mp15xx.s ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols STACK 00000000 Symbol: STACK Definitions At line 34 in file startup_stm32mp15xx.s Uses None Comment: STACK unused Stack_Mem 00000000 Symbol: Stack_Mem Definitions At line 36 in file startup_stm32mp15xx.s Uses None Comment: Stack_Mem unused __initial_sp 00000400 Symbol: __initial_sp Definitions At line 37 in file startup_stm32mp15xx.s Uses At line 61 in file startup_stm32mp15xx.s At line 432 in file startup_stm32mp15xx.s __stack_limit 00000000 Symbol: __stack_limit Definitions At line 35 in file startup_stm32mp15xx.s Uses At line 431 in file startup_stm32mp15xx.s Comment: __stack_limit used once 4 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols HEAP 00000000 Symbol: HEAP Definitions At line 46 in file startup_stm32mp15xx.s Uses None Comment: HEAP unused Heap_Mem 00000000 Symbol: Heap_Mem Definitions At line 48 in file startup_stm32mp15xx.s Uses None Comment: Heap_Mem unused __heap_base 00000000 Symbol: __heap_base Definitions At line 47 in file startup_stm32mp15xx.s Uses At line 434 in file startup_stm32mp15xx.s Comment: __heap_base used once __heap_limit 00000200 Symbol: __heap_limit Definitions At line 49 in file startup_stm32mp15xx.s Uses At line 435 in file startup_stm32mp15xx.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 56 in file startup_stm32mp15xx.s Uses None Comment: RESET unused __Vectors 00000000 Symbol: __Vectors Definitions At line 61 in file startup_stm32mp15xx.s Uses At line 57 in file startup_stm32mp15xx.s At line 232 in file startup_stm32mp15xx.s __Vectors_End 000003BC Symbol: __Vectors_End Definitions At line 231 in file startup_stm32mp15xx.s Uses At line 58 in file startup_stm32mp15xx.s At line 232 in file startup_stm32mp15xx.s 3 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Relocatable symbols .text 00000000 Symbol: .text Definitions At line 235 in file startup_stm32mp15xx.s Uses None Comment: .text unused ADC1_IRQHandler 0000003E Symbol: ADC1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 293 in file startup_stm32mp15xx.s Uses At line 97 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 293 in file startup_stm32mp15xx.s ADC2_IRQHandler 000000CE Symbol: ADC2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 365 in file startup_stm32mp15xx.s Uses At line 169 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 365 in file startup_stm32mp15xx.s BusFault_Handler 0000000E Symbol: BusFault_Handler Definitions At line 256 in macro Set_Default_Handler at line 268 in file startup_stm32mp15xx.s Uses At line 66 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 268 in file startup_stm32mp15xx.s CEC_IRQHandler 000000D6 Symbol: CEC_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 369 in file startup_stm32mp15xx.s Uses At line 173 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 369 in file startup_stm32mp15xx.s CRYP1_IRQHandler 000000B8 Symbol: CRYP1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 354 in file startup_stm32mp15xx.s Uses ARM Macro Assembler Page 2 Alphabetic symbol ordering Relocatable symbols At line 158 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 354 in file startup_stm32mp15xx.s CRYP2_IRQHandler 000000EC Symbol: CRYP2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 380 in file startup_stm32mp15xx.s Uses At line 184 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 380 in file startup_stm32mp15xx.s DAC_IRQHandler 00000122 Symbol: DAC_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 407 in file startup_stm32mp15xx.s Uses At line 211 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 407 in file startup_stm32mp15xx.s DCMI_IRQHandler 000000B6 Symbol: DCMI_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 353 in file startup_stm32mp15xx.s Uses At line 157 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 353 in file startup_stm32mp15xx.s DFSDM1_FLT0_IRQHandler 000000F6 Symbol: DFSDM1_FLT0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 385 in file startup_stm32mp15xx.s Uses At line 189 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 385 in file startup_stm32mp15xx.s DFSDM1_FLT1_IRQHandler 000000F8 Symbol: DFSDM1_FLT1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 386 in file startup_stm32mp15xx.s Uses At line 190 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 386 in file startup_stm32mp15xx.s ARM Macro Assembler Page 3 Alphabetic symbol ordering Relocatable symbols DFSDM1_FLT2_IRQHandler 000000FA Symbol: DFSDM1_FLT2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 387 in file startup_stm32mp15xx.s Uses At line 191 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 387 in file startup_stm32mp15xx.s DFSDM1_FLT3_IRQHandler 000000FC Symbol: DFSDM1_FLT3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 388 in file startup_stm32mp15xx.s Uses At line 192 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 388 in file startup_stm32mp15xx.s DFSDM1_FLT4_IRQHandler 00000100 Symbol: DFSDM1_FLT4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 390 in file startup_stm32mp15xx.s Uses At line 194 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 390 in file startup_stm32mp15xx.s DFSDM1_FLT5_IRQHandler 00000116 Symbol: DFSDM1_FLT5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 401 in file startup_stm32mp15xx.s Uses At line 205 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 401 in file startup_stm32mp15xx.s DMA1_Stream0_IRQHandler 00000030 Symbol: DMA1_Stream0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 286 in file startup_stm32mp15xx.s Uses At line 90 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 286 in file startup_stm32mp15xx.s DMA1_Stream1_IRQHandler 00000032 Symbol: DMA1_Stream1_IRQHandler Definitions ARM Macro Assembler Page 4 Alphabetic symbol ordering Relocatable symbols At line 256 in macro Set_Default_Handler at line 287 in file startup_stm32mp15xx.s Uses At line 91 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 287 in file startup_stm32mp15xx.s DMA1_Stream2_IRQHandler 00000034 Symbol: DMA1_Stream2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 288 in file startup_stm32mp15xx.s Uses At line 92 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 288 in file startup_stm32mp15xx.s DMA1_Stream3_IRQHandler 00000036 Symbol: DMA1_Stream3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 289 in file startup_stm32mp15xx.s Uses At line 93 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 289 in file startup_stm32mp15xx.s DMA1_Stream4_IRQHandler 00000038 Symbol: DMA1_Stream4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 290 in file startup_stm32mp15xx.s Uses At line 94 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 290 in file startup_stm32mp15xx.s DMA1_Stream5_IRQHandler 0000003A Symbol: DMA1_Stream5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 291 in file startup_stm32mp15xx.s Uses At line 95 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 291 in file startup_stm32mp15xx.s DMA1_Stream6_IRQHandler 0000003C Symbol: DMA1_Stream6_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 292 in file startup_stm32mp15xx.s Uses At line 96 in file startup_stm32mp15xx.s ARM Macro Assembler Page 5 Alphabetic symbol ordering Relocatable symbols At line 257 in macro Set_Default_Handler at line 292 in file startup_stm32mp15xx.s DMA1_Stream7_IRQHandler 00000078 Symbol: DMA1_Stream7_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 322 in file startup_stm32mp15xx.s Uses At line 126 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 322 in file startup_stm32mp15xx.s DMA2_Stream0_IRQHandler 0000008A Symbol: DMA2_Stream0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 331 in file startup_stm32mp15xx.s Uses At line 135 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 331 in file startup_stm32mp15xx.s DMA2_Stream1_IRQHandler 0000008C Symbol: DMA2_Stream1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 332 in file startup_stm32mp15xx.s Uses At line 136 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 332 in file startup_stm32mp15xx.s DMA2_Stream2_IRQHandler 0000008E Symbol: DMA2_Stream2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 333 in file startup_stm32mp15xx.s Uses At line 137 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 333 in file startup_stm32mp15xx.s DMA2_Stream3_IRQHandler 00000090 Symbol: DMA2_Stream3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 334 in file startup_stm32mp15xx.s Uses At line 138 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 334 in file startup_stm32mp15xx.s DMA2_Stream4_IRQHandler 00000092 ARM Macro Assembler Page 6 Alphabetic symbol ordering Relocatable symbols Symbol: DMA2_Stream4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 335 in file startup_stm32mp15xx.s Uses At line 139 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 335 in file startup_stm32mp15xx.s DMA2_Stream5_IRQHandler 000000A2 Symbol: DMA2_Stream5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 343 in file startup_stm32mp15xx.s Uses At line 147 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 343 in file startup_stm32mp15xx.s DMA2_Stream6_IRQHandler 000000A4 Symbol: DMA2_Stream6_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 344 in file startup_stm32mp15xx.s Uses At line 148 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 344 in file startup_stm32mp15xx.s DMA2_Stream7_IRQHandler 000000A6 Symbol: DMA2_Stream7_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 345 in file startup_stm32mp15xx.s Uses At line 149 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 345 in file startup_stm32mp15xx.s DMAMUX1_OVR_IRQHandler 000000E6 Symbol: DMAMUX1_OVR_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 377 in file startup_stm32mp15xx.s Uses At line 181 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 377 in file startup_stm32mp15xx.s DSI_IRQHandler 00000110 Symbol: DSI_IRQHandler Definitions At line 256 in macro Set_Default_Handler ARM Macro Assembler Page 7 Alphabetic symbol ordering Relocatable symbols at line 398 in file startup_stm32mp15xx.s Uses At line 202 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 398 in file startup_stm32mp15xx.s DTS_IRQHandler 00000140 Symbol: DTS_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 422 in file startup_stm32mp15xx.s Uses At line 226 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 422 in file startup_stm32mp15xx.s DebugMon_Handler 00000014 Symbol: DebugMon_Handler Definitions At line 256 in macro Set_Default_Handler at line 271 in file startup_stm32mp15xx.s Uses At line 73 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 271 in file startup_stm32mp15xx.s ETH1_IRQHandler 00000094 Symbol: ETH1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 336 in file startup_stm32mp15xx.s Uses At line 140 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 336 in file startup_stm32mp15xx.s ETH1_LPI_IRQHandler 00000136 Symbol: ETH1_LPI_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 417 in file startup_stm32mp15xx.s Uses At line 221 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 417 in file startup_stm32mp15xx.s ETH1_WKUP_IRQHandler 00000096 Symbol: ETH1_WKUP_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 337 in file startup_stm32mp15xx.s Uses At line 141 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler ARM Macro Assembler Page 8 Alphabetic symbol ordering Relocatable symbols at line 337 in file startup_stm32mp15xx.s EXTI0_IRQHandler 00000026 Symbol: EXTI0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 281 in file startup_stm32mp15xx.s Uses At line 85 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 281 in file startup_stm32mp15xx.s EXTI10_IRQHandler 0000006A Symbol: EXTI10_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 315 in file startup_stm32mp15xx.s Uses At line 119 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 315 in file startup_stm32mp15xx.s EXTI11_IRQHandler 0000006E Symbol: EXTI11_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 317 in file startup_stm32mp15xx.s Uses At line 121 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 317 in file startup_stm32mp15xx.s EXTI12_IRQHandler 000000B2 Symbol: EXTI12_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 351 in file startup_stm32mp15xx.s Uses At line 155 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 351 in file startup_stm32mp15xx.s EXTI13_IRQHandler 000000B4 Symbol: EXTI13_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 352 in file startup_stm32mp15xx.s Uses At line 156 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 352 in file startup_stm32mp15xx.s EXTI14_IRQHandler 0000010C ARM Macro Assembler Page 9 Alphabetic symbol ordering Relocatable symbols Symbol: EXTI14_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 396 in file startup_stm32mp15xx.s Uses At line 200 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 396 in file startup_stm32mp15xx.s EXTI15_IRQHandler 00000118 Symbol: EXTI15_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 402 in file startup_stm32mp15xx.s Uses At line 206 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 402 in file startup_stm32mp15xx.s EXTI1_IRQHandler 00000028 Symbol: EXTI1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 282 in file startup_stm32mp15xx.s Uses At line 86 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 282 in file startup_stm32mp15xx.s EXTI2_IRQHandler 0000002A Symbol: EXTI2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 283 in file startup_stm32mp15xx.s Uses At line 87 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 283 in file startup_stm32mp15xx.s EXTI3_IRQHandler 0000002C Symbol: EXTI3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 284 in file startup_stm32mp15xx.s Uses At line 88 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 284 in file startup_stm32mp15xx.s EXTI4_IRQHandler 0000002E Symbol: EXTI4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 285 in file startup_stm32mp15xx.s ARM Macro Assembler Page 10 Alphabetic symbol ordering Relocatable symbols Uses At line 89 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 285 in file startup_stm32mp15xx.s EXTI5_IRQHandler 00000048 Symbol: EXTI5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 298 in file startup_stm32mp15xx.s Uses At line 102 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 298 in file startup_stm32mp15xx.s EXTI6_IRQHandler 0000009A Symbol: EXTI6_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 339 in file startup_stm32mp15xx.s Uses At line 143 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 339 in file startup_stm32mp15xx.s EXTI7_IRQHandler 0000009C Symbol: EXTI7_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 340 in file startup_stm32mp15xx.s Uses At line 144 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 340 in file startup_stm32mp15xx.s EXTI8_IRQHandler 0000009E Symbol: EXTI8_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 341 in file startup_stm32mp15xx.s Uses At line 145 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 341 in file startup_stm32mp15xx.s EXTI9_IRQHandler 000000A0 Symbol: EXTI9_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 342 in file startup_stm32mp15xx.s Uses At line 146 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 342 in file startup_stm32mp15xx.s ARM Macro Assembler Page 11 Alphabetic symbol ordering Relocatable symbols FDCAN1_IT0_IRQHandler 00000040 Symbol: FDCAN1_IT0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 294 in file startup_stm32mp15xx.s Uses At line 98 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 294 in file startup_stm32mp15xx.s FDCAN1_IT1_IRQHandler 00000044 Symbol: FDCAN1_IT1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 296 in file startup_stm32mp15xx.s Uses At line 100 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 296 in file startup_stm32mp15xx.s FDCAN2_IT0_IRQHandler 00000042 Symbol: FDCAN2_IT0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 295 in file startup_stm32mp15xx.s Uses At line 99 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 295 in file startup_stm32mp15xx.s FDCAN2_IT1_IRQHandler 00000046 Symbol: FDCAN2_IT1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 297 in file startup_stm32mp15xx.s Uses At line 101 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 297 in file startup_stm32mp15xx.s FDCAN_CAL_IRQHandler 00000098 Symbol: FDCAN_CAL_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 338 in file startup_stm32mp15xx.s Uses At line 142 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 338 in file startup_stm32mp15xx.s FMC_IRQHandler 0000007A Symbol: FMC_IRQHandler ARM Macro Assembler Page 12 Alphabetic symbol ordering Relocatable symbols Definitions At line 256 in macro Set_Default_Handler at line 323 in file startup_stm32mp15xx.s Uses At line 127 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 323 in file startup_stm32mp15xx.s FPU_IRQHandler 000000BC Symbol: FPU_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 356 in file startup_stm32mp15xx.s Uses At line 160 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 356 in file startup_stm32mp15xx.s GPU_IRQHandler 000000F4 Symbol: GPU_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 384 in file startup_stm32mp15xx.s Uses At line 188 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 384 in file startup_stm32mp15xx.s HASH1_IRQHandler 000000BA Symbol: HASH1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 355 in file startup_stm32mp15xx.s Uses At line 159 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 355 in file startup_stm32mp15xx.s HASH2_IRQHandler 000000EE Symbol: HASH2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 381 in file startup_stm32mp15xx.s Uses At line 185 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 381 in file startup_stm32mp15xx.s HSEM_IT2_IRQHandler 00000114 Symbol: HSEM_IT2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 400 in file startup_stm32mp15xx.s Uses ARM Macro Assembler Page 13 Alphabetic symbol ordering Relocatable symbols At line 204 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 400 in file startup_stm32mp15xx.s HardFault_Handler 0000000A Symbol: HardFault_Handler Definitions At line 256 in macro Set_Default_Handler at line 266 in file startup_stm32mp15xx.s Uses At line 64 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 266 in file startup_stm32mp15xx.s I2C1_ER_IRQHandler 0000005A Symbol: I2C1_ER_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 307 in file startup_stm32mp15xx.s Uses At line 111 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 307 in file startup_stm32mp15xx.s I2C1_EV_IRQHandler 00000058 Symbol: I2C1_EV_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 306 in file startup_stm32mp15xx.s Uses At line 110 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 306 in file startup_stm32mp15xx.s I2C2_ER_IRQHandler 0000005E Symbol: I2C2_ER_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 309 in file startup_stm32mp15xx.s Uses At line 113 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 309 in file startup_stm32mp15xx.s I2C2_EV_IRQHandler 0000005C Symbol: I2C2_EV_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 308 in file startup_stm32mp15xx.s Uses At line 112 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 308 in file startup_stm32mp15xx.s ARM Macro Assembler Page 14 Alphabetic symbol ordering Relocatable symbols I2C3_ER_IRQHandler 000000AC Symbol: I2C3_ER_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 348 in file startup_stm32mp15xx.s Uses At line 152 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 348 in file startup_stm32mp15xx.s I2C3_EV_IRQHandler 000000AA Symbol: I2C3_EV_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 347 in file startup_stm32mp15xx.s Uses At line 151 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 347 in file startup_stm32mp15xx.s I2C4_ER_IRQHandler 000000DA Symbol: I2C4_ER_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 371 in file startup_stm32mp15xx.s Uses At line 175 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 371 in file startup_stm32mp15xx.s I2C4_EV_IRQHandler 000000D8 Symbol: I2C4_EV_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 370 in file startup_stm32mp15xx.s Uses At line 174 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 370 in file startup_stm32mp15xx.s I2C5_ER_IRQHandler 000000F2 Symbol: I2C5_ER_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 383 in file startup_stm32mp15xx.s Uses At line 187 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 383 in file startup_stm32mp15xx.s I2C5_EV_IRQHandler 000000F0 Symbol: I2C5_EV_IRQHandler Definitions ARM Macro Assembler Page 15 Alphabetic symbol ordering Relocatable symbols At line 256 in macro Set_Default_Handler at line 382 in file startup_stm32mp15xx.s Uses At line 186 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 382 in file startup_stm32mp15xx.s I2C6_ER_IRQHandler 0000012A Symbol: I2C6_ER_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 411 in file startup_stm32mp15xx.s Uses At line 215 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 411 in file startup_stm32mp15xx.s I2C6_EV_IRQHandler 00000128 Symbol: I2C6_EV_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 410 in file startup_stm32mp15xx.s Uses At line 214 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 410 in file startup_stm32mp15xx.s IPCC_RX0_IRQHandler 000000E2 Symbol: IPCC_RX0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 375 in file startup_stm32mp15xx.s Uses At line 179 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 375 in file startup_stm32mp15xx.s IPCC_RX1_IRQHandler 000000E8 Symbol: IPCC_RX1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 378 in file startup_stm32mp15xx.s Uses At line 182 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 378 in file startup_stm32mp15xx.s IPCC_TX0_IRQHandler 000000E4 Symbol: IPCC_TX0_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 376 in file startup_stm32mp15xx.s Uses At line 180 in file startup_stm32mp15xx.s ARM Macro Assembler Page 16 Alphabetic symbol ordering Relocatable symbols At line 257 in macro Set_Default_Handler at line 376 in file startup_stm32mp15xx.s IPCC_TX1_IRQHandler 000000EA Symbol: IPCC_TX1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 379 in file startup_stm32mp15xx.s Uses At line 183 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 379 in file startup_stm32mp15xx.s LPTIM1_IRQHandler 000000D4 Symbol: LPTIM1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 368 in file startup_stm32mp15xx.s Uses At line 172 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 368 in file startup_stm32mp15xx.s LPTIM2_IRQHandler 0000012E Symbol: LPTIM2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 413 in file startup_stm32mp15xx.s Uses At line 217 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 413 in file startup_stm32mp15xx.s LPTIM3_IRQHandler 00000130 Symbol: LPTIM3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 414 in file startup_stm32mp15xx.s Uses At line 218 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 414 in file startup_stm32mp15xx.s LPTIM4_IRQHandler 00000132 Symbol: LPTIM4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 415 in file startup_stm32mp15xx.s Uses At line 219 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 415 in file startup_stm32mp15xx.s LPTIM5_IRQHandler 00000134 ARM Macro Assembler Page 17 Alphabetic symbol ordering Relocatable symbols Symbol: LPTIM5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 416 in file startup_stm32mp15xx.s Uses At line 220 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 416 in file startup_stm32mp15xx.s LTDC_ER_IRQHandler 000000CC Symbol: LTDC_ER_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 364 in file startup_stm32mp15xx.s Uses At line 168 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 364 in file startup_stm32mp15xx.s LTDC_IRQHandler 000000CA Symbol: LTDC_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 363 in file startup_stm32mp15xx.s Uses At line 167 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 363 in file startup_stm32mp15xx.s MDIOS_IRQHandler 0000010A Symbol: MDIOS_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 395 in file startup_stm32mp15xx.s Uses At line 199 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 395 in file startup_stm32mp15xx.s MDMA_IRQHandler 0000010E Symbol: MDMA_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 397 in file startup_stm32mp15xx.s Uses At line 201 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 397 in file startup_stm32mp15xx.s MPU_SEV_IRQHandler 0000013A Symbol: MPU_SEV_IRQHandler Definitions At line 256 in macro Set_Default_Handler ARM Macro Assembler Page 18 Alphabetic symbol ordering Relocatable symbols at line 419 in file startup_stm32mp15xx.s Uses At line 223 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 419 in file startup_stm32mp15xx.s MemManage_Handler 0000000C Symbol: MemManage_Handler Definitions At line 256 in macro Set_Default_Handler at line 267 in file startup_stm32mp15xx.s Uses At line 65 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 267 in file startup_stm32mp15xx.s NMI_Handler 00000008 Symbol: NMI_Handler Definitions At line 256 in macro Set_Default_Handler at line 265 in file startup_stm32mp15xx.s Uses At line 63 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 265 in file startup_stm32mp15xx.s OTG_IRQHandler 000000DE Symbol: OTG_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 373 in file startup_stm32mp15xx.s Uses At line 177 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 373 in file startup_stm32mp15xx.s PVD_AVD_IRQHandler 0000001C Symbol: PVD_AVD_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 276 in file startup_stm32mp15xx.s Uses At line 80 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 276 in file startup_stm32mp15xx.s PendSV_Handler 00000016 Symbol: PendSV_Handler Definitions At line 256 in macro Set_Default_Handler at line 272 in file startup_stm32mp15xx.s Uses At line 75 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler ARM Macro Assembler Page 19 Alphabetic symbol ordering Relocatable symbols at line 272 in file startup_stm32mp15xx.s QUADSPI_IRQHandler 000000D2 Symbol: QUADSPI_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 367 in file startup_stm32mp15xx.s Uses At line 171 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 367 in file startup_stm32mp15xx.s RCC_IRQHandler 00000024 Symbol: RCC_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 280 in file startup_stm32mp15xx.s Uses At line 84 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 280 in file startup_stm32mp15xx.s RCC_WAKEUP_IRQHandler 0000013C Symbol: RCC_WAKEUP_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 420 in file startup_stm32mp15xx.s Uses At line 224 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 420 in file startup_stm32mp15xx.s RESERVED143_IRQHandler 00000138 Symbol: RESERVED143_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 418 in file startup_stm32mp15xx.s Uses At line 222 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 418 in file startup_stm32mp15xx.s RESERVED148_IRQHandler 00000142 Symbol: RESERVED148_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 423 in file startup_stm32mp15xx.s Uses At line 227 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 423 in file startup_stm32mp15xx.s RESERVED4_IRQHandler 00000022 ARM Macro Assembler Page 20 Alphabetic symbol ordering Relocatable symbols Symbol: RESERVED4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 279 in file startup_stm32mp15xx.s Uses At line 83 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 279 in file startup_stm32mp15xx.s RESERVED99_IRQHandler 000000E0 Symbol: RESERVED99_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 374 in file startup_stm32mp15xx.s Uses At line 178 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 374 in file startup_stm32mp15xx.s RNG1_IRQHandler 00000124 Symbol: RNG1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 408 in file startup_stm32mp15xx.s Uses At line 212 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 408 in file startup_stm32mp15xx.s RNG2_IRQHandler 00000126 Symbol: RNG2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 409 in file startup_stm32mp15xx.s Uses At line 213 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 409 in file startup_stm32mp15xx.s RTC_TIMESTAMP_IRQHandler 0000006C Symbol: RTC_TIMESTAMP_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 316 in file startup_stm32mp15xx.s Uses At line 120 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 316 in file startup_stm32mp15xx.s RTC_WKUP_ALARM_IRQHandler 00000020 Symbol: RTC_WKUP_ALARM_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 278 in file startup_stm32mp15xx.s ARM Macro Assembler Page 21 Alphabetic symbol ordering Relocatable symbols Uses At line 82 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 278 in file startup_stm32mp15xx.s Reset_Handler 00000000 Symbol: Reset_Handler Definitions At line 239 in file startup_stm32mp15xx.s Uses At line 62 in file startup_stm32mp15xx.s At line 240 in file startup_stm32mp15xx.s SAI1_IRQHandler 000000C8 Symbol: SAI1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 362 in file startup_stm32mp15xx.s Uses At line 166 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 362 in file startup_stm32mp15xx.s SAI2_IRQHandler 000000D0 Symbol: SAI2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 366 in file startup_stm32mp15xx.s Uses At line 170 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 366 in file startup_stm32mp15xx.s SAI3_IRQHandler 000000FE Symbol: SAI3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 389 in file startup_stm32mp15xx.s Uses At line 193 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 389 in file startup_stm32mp15xx.s SAI4_IRQHandler 0000013E Symbol: SAI4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 421 in file startup_stm32mp15xx.s Uses At line 225 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 421 in file startup_stm32mp15xx.s SDMMC1_IRQHandler 0000007C ARM Macro Assembler Page 22 Alphabetic symbol ordering Relocatable symbols Symbol: SDMMC1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 324 in file startup_stm32mp15xx.s Uses At line 128 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 324 in file startup_stm32mp15xx.s SDMMC2_IRQHandler 00000112 Symbol: SDMMC2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 399 in file startup_stm32mp15xx.s Uses At line 203 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 399 in file startup_stm32mp15xx.s SDMMC3_IRQHandler 0000012C Symbol: SDMMC3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 412 in file startup_stm32mp15xx.s Uses At line 216 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 412 in file startup_stm32mp15xx.s SPDIF_RX_IRQHandler 000000DC Symbol: SPDIF_RX_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 372 in file startup_stm32mp15xx.s Uses At line 176 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 372 in file startup_stm32mp15xx.s SPI1_IRQHandler 00000060 Symbol: SPI1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 310 in file startup_stm32mp15xx.s Uses At line 114 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 310 in file startup_stm32mp15xx.s SPI2_IRQHandler 00000062 Symbol: SPI2_IRQHandler Definitions At line 256 in macro Set_Default_Handler ARM Macro Assembler Page 23 Alphabetic symbol ordering Relocatable symbols at line 311 in file startup_stm32mp15xx.s Uses At line 115 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 311 in file startup_stm32mp15xx.s SPI3_IRQHandler 00000080 Symbol: SPI3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 326 in file startup_stm32mp15xx.s Uses At line 130 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 326 in file startup_stm32mp15xx.s SPI4_IRQHandler 000000C2 Symbol: SPI4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 359 in file startup_stm32mp15xx.s Uses At line 163 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 359 in file startup_stm32mp15xx.s SPI5_IRQHandler 000000C4 Symbol: SPI5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 360 in file startup_stm32mp15xx.s Uses At line 164 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 360 in file startup_stm32mp15xx.s SPI6_IRQHandler 000000C6 Symbol: SPI6_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 361 in file startup_stm32mp15xx.s Uses At line 165 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 361 in file startup_stm32mp15xx.s SVC_Handler 00000012 Symbol: SVC_Handler Definitions At line 256 in macro Set_Default_Handler at line 270 in file startup_stm32mp15xx.s Uses At line 72 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler ARM Macro Assembler Page 24 Alphabetic symbol ordering Relocatable symbols at line 270 in file startup_stm32mp15xx.s SysTick_Handler 00000018 Symbol: SysTick_Handler Definitions At line 256 in macro Set_Default_Handler at line 273 in file startup_stm32mp15xx.s Uses At line 76 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 273 in file startup_stm32mp15xx.s TAMP_IRQHandler 0000001E Symbol: TAMP_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 277 in file startup_stm32mp15xx.s Uses At line 81 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 277 in file startup_stm32mp15xx.s TIM12_IRQHandler 00000108 Symbol: TIM12_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 394 in file startup_stm32mp15xx.s Uses At line 198 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 394 in file startup_stm32mp15xx.s TIM13_IRQHandler 0000011E Symbol: TIM13_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 405 in file startup_stm32mp15xx.s Uses At line 209 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 405 in file startup_stm32mp15xx.s TIM14_IRQHandler 00000120 Symbol: TIM14_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 406 in file startup_stm32mp15xx.s Uses At line 210 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 406 in file startup_stm32mp15xx.s TIM15_IRQHandler 00000102 ARM Macro Assembler Page 25 Alphabetic symbol ordering Relocatable symbols Symbol: TIM15_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 391 in file startup_stm32mp15xx.s Uses At line 195 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 391 in file startup_stm32mp15xx.s TIM16_IRQHandler 00000104 Symbol: TIM16_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 392 in file startup_stm32mp15xx.s Uses At line 196 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 392 in file startup_stm32mp15xx.s TIM17_IRQHandler 00000106 Symbol: TIM17_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 393 in file startup_stm32mp15xx.s Uses At line 197 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 393 in file startup_stm32mp15xx.s TIM1_BRK_IRQHandler 0000004A Symbol: TIM1_BRK_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 299 in file startup_stm32mp15xx.s Uses At line 103 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 299 in file startup_stm32mp15xx.s TIM1_CC_IRQHandler 00000050 Symbol: TIM1_CC_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 302 in file startup_stm32mp15xx.s Uses At line 106 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 302 in file startup_stm32mp15xx.s TIM1_TRG_COM_IRQHandler 0000004E Symbol: TIM1_TRG_COM_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 301 in file startup_stm32mp15xx.s ARM Macro Assembler Page 26 Alphabetic symbol ordering Relocatable symbols Uses At line 105 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 301 in file startup_stm32mp15xx.s TIM1_UP_IRQHandler 0000004C Symbol: TIM1_UP_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 300 in file startup_stm32mp15xx.s Uses At line 104 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 300 in file startup_stm32mp15xx.s TIM2_IRQHandler 00000052 Symbol: TIM2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 303 in file startup_stm32mp15xx.s Uses At line 107 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 303 in file startup_stm32mp15xx.s TIM3_IRQHandler 00000054 Symbol: TIM3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 304 in file startup_stm32mp15xx.s Uses At line 108 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 304 in file startup_stm32mp15xx.s TIM4_IRQHandler 00000056 Symbol: TIM4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 305 in file startup_stm32mp15xx.s Uses At line 109 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 305 in file startup_stm32mp15xx.s TIM5_IRQHandler 0000007E Symbol: TIM5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 325 in file startup_stm32mp15xx.s Uses At line 129 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 325 in file startup_stm32mp15xx.s ARM Macro Assembler Page 27 Alphabetic symbol ordering Relocatable symbols TIM6_IRQHandler 00000086 Symbol: TIM6_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 329 in file startup_stm32mp15xx.s Uses At line 133 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 329 in file startup_stm32mp15xx.s TIM7_IRQHandler 00000088 Symbol: TIM7_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 330 in file startup_stm32mp15xx.s Uses At line 134 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 330 in file startup_stm32mp15xx.s TIM8_BRK_IRQHandler 00000070 Symbol: TIM8_BRK_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 318 in file startup_stm32mp15xx.s Uses At line 122 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 318 in file startup_stm32mp15xx.s TIM8_CC_IRQHandler 00000076 Symbol: TIM8_CC_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 321 in file startup_stm32mp15xx.s Uses At line 125 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 321 in file startup_stm32mp15xx.s TIM8_TRG_COM_IRQHandler 00000074 Symbol: TIM8_TRG_COM_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 320 in file startup_stm32mp15xx.s Uses At line 124 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 320 in file startup_stm32mp15xx.s TIM8_UP_IRQHandler 00000072 Symbol: TIM8_UP_IRQHandler ARM Macro Assembler Page 28 Alphabetic symbol ordering Relocatable symbols Definitions At line 256 in macro Set_Default_Handler at line 319 in file startup_stm32mp15xx.s Uses At line 123 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 319 in file startup_stm32mp15xx.s UART4_IRQHandler 00000082 Symbol: UART4_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 327 in file startup_stm32mp15xx.s Uses At line 131 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 327 in file startup_stm32mp15xx.s UART5_IRQHandler 00000084 Symbol: UART5_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 328 in file startup_stm32mp15xx.s Uses At line 132 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 328 in file startup_stm32mp15xx.s UART7_IRQHandler 000000BE Symbol: UART7_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 357 in file startup_stm32mp15xx.s Uses At line 161 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 357 in file startup_stm32mp15xx.s UART8_IRQHandler 000000C0 Symbol: UART8_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 358 in file startup_stm32mp15xx.s Uses At line 162 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 358 in file startup_stm32mp15xx.s USART1_IRQHandler 00000064 Symbol: USART1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 312 in file startup_stm32mp15xx.s Uses ARM Macro Assembler Page 29 Alphabetic symbol ordering Relocatable symbols At line 116 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 312 in file startup_stm32mp15xx.s USART2_IRQHandler 00000066 Symbol: USART2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 313 in file startup_stm32mp15xx.s Uses At line 117 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 313 in file startup_stm32mp15xx.s USART3_IRQHandler 00000068 Symbol: USART3_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 314 in file startup_stm32mp15xx.s Uses At line 118 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 314 in file startup_stm32mp15xx.s USART6_IRQHandler 000000A8 Symbol: USART6_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 346 in file startup_stm32mp15xx.s Uses At line 150 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 346 in file startup_stm32mp15xx.s USBH_EHCI_IRQHandler 000000B0 Symbol: USBH_EHCI_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 350 in file startup_stm32mp15xx.s Uses At line 154 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 350 in file startup_stm32mp15xx.s USBH_OHCI_IRQHandler 000000AE Symbol: USBH_OHCI_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 349 in file startup_stm32mp15xx.s Uses At line 153 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 349 in file startup_stm32mp15xx.s ARM Macro Assembler Page 30 Alphabetic symbol ordering Relocatable symbols UsageFault_Handler 00000010 Symbol: UsageFault_Handler Definitions At line 256 in macro Set_Default_Handler at line 269 in file startup_stm32mp15xx.s Uses At line 67 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 269 in file startup_stm32mp15xx.s WAKEUP_PIN_IRQHandler 00000144 Symbol: WAKEUP_PIN_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 424 in file startup_stm32mp15xx.s Uses At line 228 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 424 in file startup_stm32mp15xx.s WWDG1_IRQHandler 0000001A Symbol: WWDG1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 275 in file startup_stm32mp15xx.s Uses At line 79 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 275 in file startup_stm32mp15xx.s nCTIIRQ1_IRQHandler 0000011A Symbol: nCTIIRQ1_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 403 in file startup_stm32mp15xx.s Uses At line 207 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 403 in file startup_stm32mp15xx.s nCTIIRQ2_IRQHandler 0000011C Symbol: nCTIIRQ2_IRQHandler Definitions At line 256 in macro Set_Default_Handler at line 404 in file startup_stm32mp15xx.s Uses At line 208 in file startup_stm32mp15xx.s At line 257 in macro Set_Default_Handler at line 404 in file startup_stm32mp15xx.s 161 symbols ARM Macro Assembler Page 1 Alphabetic symbol ordering Absolute symbols Heap_Size 00000200 Symbol: Heap_Size Definitions At line 44 in file startup_stm32mp15xx.s Uses At line 48 in file startup_stm32mp15xx.s At line 433 in file startup_stm32mp15xx.s Stack_Size 00000400 Symbol: Stack_Size Definitions At line 32 in file startup_stm32mp15xx.s Uses At line 36 in file startup_stm32mp15xx.s Comment: Stack_Size used once __Vectors_Size 000003BC Symbol: __Vectors_Size Definitions At line 232 in file startup_stm32mp15xx.s Uses At line 59 in file startup_stm32mp15xx.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 241 in file startup_stm32mp15xx.s Uses At line 244 in file startup_stm32mp15xx.s Comment: SystemInit used once __main 00000000 Symbol: __main Definitions At line 242 in file startup_stm32mp15xx.s Uses At line 246 in file startup_stm32mp15xx.s Comment: __main used once 2 symbols 512 symbols in table