mbed library sources

Dependents:   Freedman_v2 Nucleo_i2c_OLED_BME280_copy

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Wed Jul 01 08:15:11 2015 +0100
Revision:
577:15494b56c2f3
Parent:
targets/cmsis/TARGET_Freescale/TARGET_MCU_K64F/TOOLCHAIN_IAR/startup_MK64F12.s@483:37da4976ca27
Synchronized with git revision 7766e75dd858812cd79aedb3080349715f55dd56

Full URL: https://github.com/mbedmicro/mbed/commit/7766e75dd858812cd79aedb3080349715f55dd56/

GCC asm updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 377:95186f86029b 1 /**************************************************
mbed_official 377:95186f86029b 2 *
mbed_official 377:95186f86029b 3 * Copyright 2010 IAR Systems. All rights reserved.
mbed_official 377:95186f86029b 4 *
mbed_official 377:95186f86029b 5 * $Revision: 16 $
mbed_official 377:95186f86029b 6 *
mbed_official 377:95186f86029b 7 **************************************************/
mbed_official 377:95186f86029b 8
mbed_official 377:95186f86029b 9 ;
mbed_official 377:95186f86029b 10 ; The modules in this file are included in the libraries, and may be replaced
mbed_official 377:95186f86029b 11 ; by any user-defined modules that define the PUBLIC symbol _program_start or
mbed_official 377:95186f86029b 12 ; a user defined start symbol.
mbed_official 377:95186f86029b 13 ; To override the cstartup defined in the library, simply add your modified
mbed_official 377:95186f86029b 14 ; version to the workbench project.
mbed_official 377:95186f86029b 15 ;
mbed_official 377:95186f86029b 16 ; The vector table is normally located at address 0.
mbed_official 377:95186f86029b 17 ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
mbed_official 377:95186f86029b 18 ; The name "__vector_table" has special meaning for C-SPY:
mbed_official 377:95186f86029b 19 ; it is where the SP start value is found, and the NVIC vector
mbed_official 377:95186f86029b 20 ; table register (VTOR) is initialized to this address if != 0.
mbed_official 377:95186f86029b 21 ;
mbed_official 377:95186f86029b 22 ; Cortex-M version
mbed_official 377:95186f86029b 23 ;
mbed_official 377:95186f86029b 24
mbed_official 377:95186f86029b 25 MODULE ?cstartup
mbed_official 377:95186f86029b 26
mbed_official 377:95186f86029b 27 ;; Forward declaration of sections.
mbed_official 377:95186f86029b 28 SECTION CSTACK:DATA:NOROOT(3)
mbed_official 377:95186f86029b 29
mbed_official 377:95186f86029b 30 SECTION .intvec:CODE:ROOT(2)
mbed_official 377:95186f86029b 31
mbed_official 377:95186f86029b 32 EXTERN __iar_program_start
mbed_official 377:95186f86029b 33 EXTERN SystemInit
mbed_official 377:95186f86029b 34 PUBLIC __vector_table
mbed_official 377:95186f86029b 35
mbed_official 377:95186f86029b 36 DATA
mbed_official 377:95186f86029b 37 __vector_table
mbed_official 377:95186f86029b 38 DCD sfe(CSTACK) ; Top of Stack
mbed_official 377:95186f86029b 39 DCD Reset_Handler ; Reset Handler
mbed_official 377:95186f86029b 40 DCD NMI_Handler ; NMI Handler
mbed_official 377:95186f86029b 41 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 377:95186f86029b 42 DCD MemManage_Handler ; MPU Fault Handler
mbed_official 377:95186f86029b 43 DCD BusFault_Handler ; Bus Fault Handler
mbed_official 377:95186f86029b 44 DCD UsageFault_Handler ; Usage Fault Handler
mbed_official 377:95186f86029b 45 DCD 0 ; Reserved
mbed_official 377:95186f86029b 46 DCD 0 ; Reserved
mbed_official 377:95186f86029b 47 DCD 0 ; Reserved
mbed_official 377:95186f86029b 48 DCD 0 ; Reserved
mbed_official 377:95186f86029b 49 DCD SVC_Handler ; SVCall Handler
mbed_official 377:95186f86029b 50 DCD DebugMon_Handler ; Debug Monitor Handler
mbed_official 377:95186f86029b 51 DCD 0 ; Reserved
mbed_official 377:95186f86029b 52 DCD PendSV_Handler ; PendSV Handler
mbed_official 377:95186f86029b 53 DCD SysTick_Handler ; SysTick Handler
mbed_official 377:95186f86029b 54 ; External Interrupts
mbed_official 377:95186f86029b 55 DCD DMA0_IRQHandler ; DMA Channel 0 Transfer Complete
mbed_official 377:95186f86029b 56 DCD DMA1_IRQHandler ; DMA Channel 1 Transfer Complete
mbed_official 377:95186f86029b 57 DCD DMA2_IRQHandler ; DMA Channel 2 Transfer Complete
mbed_official 377:95186f86029b 58 DCD DMA3_IRQHandler ; DMA Channel 3 Transfer Complete
mbed_official 377:95186f86029b 59 DCD DMA4_IRQHandler ; DMA Channel 4 Transfer Complete
mbed_official 377:95186f86029b 60 DCD DMA5_IRQHandler ; DMA Channel 5 Transfer Complete
mbed_official 377:95186f86029b 61 DCD DMA6_IRQHandler ; DMA Channel 6 Transfer Complete
mbed_official 377:95186f86029b 62 DCD DMA7_IRQHandler ; DMA Channel 7 Transfer Complete
mbed_official 377:95186f86029b 63 DCD DMA8_IRQHandler ; DMA Channel 8 Transfer Complete
mbed_official 377:95186f86029b 64 DCD DMA9_IRQHandler ; DMA Channel 9 Transfer Complete
mbed_official 377:95186f86029b 65 DCD DMA10_IRQHandler ; DMA Channel 10 Transfer Complete
mbed_official 377:95186f86029b 66 DCD DMA11_IRQHandler ; DMA Channel 11 Transfer Complete
mbed_official 377:95186f86029b 67 DCD DMA12_IRQHandler ; DMA Channel 12 Transfer Complete
mbed_official 377:95186f86029b 68 DCD DMA13_IRQHandler ; DMA Channel 13 Transfer Complete
mbed_official 377:95186f86029b 69 DCD DMA14_IRQHandler ; DMA Channel 14 Transfer Complete
mbed_official 377:95186f86029b 70 DCD DMA15_IRQHandler ; DMA Channel 15 Transfer Complete
mbed_official 377:95186f86029b 71 DCD DMA_Error_IRQHandler ; DMA Error Interrupt
mbed_official 377:95186f86029b 72 DCD MCM_IRQHandler ; Normal Interrupt
mbed_official 377:95186f86029b 73 DCD FTFE_IRQHandler ; FTFE Command complete interrupt
mbed_official 377:95186f86029b 74 DCD Read_Collision_IRQHandler ; Read Collision Interrupt
mbed_official 377:95186f86029b 75 DCD LVD_LVW_IRQHandler ; Low Voltage Detect, Low Voltage Warning
mbed_official 377:95186f86029b 76 DCD LLW_IRQHandler ; Low Leakage Wakeup
mbed_official 377:95186f86029b 77 DCD Watchdog_IRQHandler ; WDOG Interrupt
mbed_official 377:95186f86029b 78 DCD RNG_IRQHandler ; RNG Interrupt
mbed_official 377:95186f86029b 79 DCD I2C0_IRQHandler ; I2C0 interrupt
mbed_official 377:95186f86029b 80 DCD I2C1_IRQHandler ; I2C1 interrupt
mbed_official 377:95186f86029b 81 DCD SPI0_IRQHandler ; SPI0 Interrupt
mbed_official 377:95186f86029b 82 DCD SPI1_IRQHandler ; SPI1 Interrupt
mbed_official 377:95186f86029b 83 DCD I2S0_Tx_IRQHandler ; I2S0 transmit interrupt
mbed_official 377:95186f86029b 84 DCD I2S0_Rx_IRQHandler ; I2S0 receive interrupt
mbed_official 377:95186f86029b 85 DCD UART0_LON_IRQHandler ; UART0 LON interrupt
mbed_official 377:95186f86029b 86 DCD UART0_RX_TX_IRQHandler ; UART0 Receive/Transmit interrupt
mbed_official 377:95186f86029b 87 DCD UART0_ERR_IRQHandler ; UART0 Error interrupt
mbed_official 377:95186f86029b 88 DCD UART1_RX_TX_IRQHandler ; UART1 Receive/Transmit interrupt
mbed_official 377:95186f86029b 89 DCD UART1_ERR_IRQHandler ; UART1 Error interrupt
mbed_official 377:95186f86029b 90 DCD UART2_RX_TX_IRQHandler ; UART2 Receive/Transmit interrupt
mbed_official 377:95186f86029b 91 DCD UART2_ERR_IRQHandler ; UART2 Error interrupt
mbed_official 377:95186f86029b 92 DCD UART3_RX_TX_IRQHandler ; UART3 Receive/Transmit interrupt
mbed_official 377:95186f86029b 93 DCD UART3_ERR_IRQHandler ; UART3 Error interrupt
mbed_official 377:95186f86029b 94 DCD ADC0_IRQHandler ; ADC0 interrupt
mbed_official 377:95186f86029b 95 DCD CMP0_IRQHandler ; CMP0 interrupt
mbed_official 377:95186f86029b 96 DCD CMP1_IRQHandler ; CMP1 interrupt
mbed_official 377:95186f86029b 97 DCD FTM0_IRQHandler ; FTM0 fault, overflow and channels interrupt
mbed_official 377:95186f86029b 98 DCD FTM1_IRQHandler ; FTM1 fault, overflow and channels interrupt
mbed_official 377:95186f86029b 99 DCD FTM2_IRQHandler ; FTM2 fault, overflow and channels interrupt
mbed_official 377:95186f86029b 100 DCD CMT_IRQHandler ; CMT interrupt
mbed_official 377:95186f86029b 101 DCD RTC_IRQHandler ; RTC interrupt
mbed_official 377:95186f86029b 102 DCD RTC_Seconds_IRQHandler ; RTC seconds interrupt
mbed_official 377:95186f86029b 103 DCD PIT0_IRQHandler ; PIT timer channel 0 interrupt
mbed_official 377:95186f86029b 104 DCD PIT1_IRQHandler ; PIT timer channel 1 interrupt
mbed_official 377:95186f86029b 105 DCD PIT2_IRQHandler ; PIT timer channel 2 interrupt
mbed_official 377:95186f86029b 106 DCD PIT3_IRQHandler ; PIT timer channel 3 interrupt
mbed_official 377:95186f86029b 107 DCD PDB0_IRQHandler ; PDB0 Interrupt
mbed_official 377:95186f86029b 108 DCD USB0_IRQHandler ; USB0 interrupt
mbed_official 377:95186f86029b 109 DCD USBDCD_IRQHandler ; USBDCD Interrupt
mbed_official 377:95186f86029b 110 DCD Reserved71_IRQHandler ; Reserved interrupt 71
mbed_official 377:95186f86029b 111 DCD DAC0_IRQHandler ; DAC0 interrupt
mbed_official 377:95186f86029b 112 DCD MCG_IRQHandler ; MCG Interrupt
mbed_official 377:95186f86029b 113 DCD LPTimer_IRQHandler ; LPTimer interrupt
mbed_official 377:95186f86029b 114 DCD PORTA_IRQHandler ; Port A interrupt
mbed_official 377:95186f86029b 115 DCD PORTB_IRQHandler ; Port B interrupt
mbed_official 377:95186f86029b 116 DCD PORTC_IRQHandler ; Port C interrupt
mbed_official 377:95186f86029b 117 DCD PORTD_IRQHandler ; Port D interrupt
mbed_official 377:95186f86029b 118 DCD PORTE_IRQHandler ; Port E interrupt
mbed_official 377:95186f86029b 119 DCD SWI_IRQHandler ; Software interrupt
mbed_official 377:95186f86029b 120 DCD SPI2_IRQHandler ; SPI2 Interrupt
mbed_official 377:95186f86029b 121 DCD UART4_RX_TX_IRQHandler ; UART4 Receive/Transmit interrupt
mbed_official 377:95186f86029b 122 DCD UART4_ERR_IRQHandler ; UART4 Error interrupt
mbed_official 377:95186f86029b 123 DCD UART5_RX_TX_IRQHandler ; UART5 Receive/Transmit interrupt
mbed_official 377:95186f86029b 124 DCD UART5_ERR_IRQHandler ; UART5 Error interrupt
mbed_official 377:95186f86029b 125 DCD CMP2_IRQHandler ; CMP2 interrupt
mbed_official 377:95186f86029b 126 DCD FTM3_IRQHandler ; FTM3 fault, overflow and channels interrupt
mbed_official 377:95186f86029b 127 DCD DAC1_IRQHandler ; DAC1 interrupt
mbed_official 377:95186f86029b 128 DCD ADC1_IRQHandler ; ADC1 interrupt
mbed_official 377:95186f86029b 129 DCD I2C2_IRQHandler ; I2C2 interrupt
mbed_official 377:95186f86029b 130 DCD CAN0_ORed_Message_buffer_IRQHandler ; CAN0 OR'd message buffers interrupt
mbed_official 377:95186f86029b 131 DCD CAN0_Bus_Off_IRQHandler ; CAN0 bus off interrupt
mbed_official 377:95186f86029b 132 DCD CAN0_Error_IRQHandler ; CAN0 error interrupt
mbed_official 377:95186f86029b 133 DCD CAN0_Tx_Warning_IRQHandler ; CAN0 Tx warning interrupt
mbed_official 377:95186f86029b 134 DCD CAN0_Rx_Warning_IRQHandler ; CAN0 Rx warning interrupt
mbed_official 377:95186f86029b 135 DCD CAN0_Wake_Up_IRQHandler ; CAN0 wake up interrupt
mbed_official 377:95186f86029b 136 DCD SDHC_IRQHandler ; SDHC interrupt
mbed_official 377:95186f86029b 137 DCD ENET_1588_Timer_IRQHandler ; Ethernet MAC IEEE 1588 Timer Interrupt
mbed_official 377:95186f86029b 138 DCD ENET_Transmit_IRQHandler ; Ethernet MAC Transmit Interrupt
mbed_official 377:95186f86029b 139 DCD ENET_Receive_IRQHandler ; Ethernet MAC Receive Interrupt
mbed_official 377:95186f86029b 140 DCD ENET_Error_IRQHandler ; Ethernet MAC Error and miscelaneous Interrupt
mbed_official 483:37da4976ca27 141
mbed_official 377:95186f86029b 142 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mbed_official 377:95186f86029b 143 ;;Flash Configuration
mbed_official 377:95186f86029b 144 ;;16-byte flash configuration field that stores default protection settings (loaded on reset)
mbed_official 377:95186f86029b 145 ;;and security information that allows the MCU to restrict acces to the FTFL module.
mbed_official 377:95186f86029b 146
mbed_official 377:95186f86029b 147 BackDoorK0 EQU 0xFF
mbed_official 377:95186f86029b 148 BackDoorK1 EQU 0xFF
mbed_official 377:95186f86029b 149 BackDoorK2 EQU 0xFF
mbed_official 377:95186f86029b 150 BackDoorK3 EQU 0xFF
mbed_official 377:95186f86029b 151 BackDoorK4 EQU 0xFF
mbed_official 377:95186f86029b 152 BackDoorK5 EQU 0xFF
mbed_official 377:95186f86029b 153 BackDoorK6 EQU 0xFF
mbed_official 377:95186f86029b 154 BackDoorK7 EQU 0xFF
mbed_official 377:95186f86029b 155
mbed_official 377:95186f86029b 156 nFPROT0 EQU 0x00
mbed_official 377:95186f86029b 157 FPROT0 EQU nFPROT0^0xFF
mbed_official 377:95186f86029b 158
mbed_official 377:95186f86029b 159 nFPROT1 EQU 0x00
mbed_official 377:95186f86029b 160 FPROT1 EQU nFPROT1^0xFF
mbed_official 377:95186f86029b 161
mbed_official 377:95186f86029b 162 nFPROT2 EQU 0x00
mbed_official 377:95186f86029b 163 FPROT2 EQU nFPROT2^0xFF
mbed_official 377:95186f86029b 164
mbed_official 377:95186f86029b 165 nFPROT3 EQU 0x00
mbed_official 377:95186f86029b 166 FPROT3 EQU nFPROT3^0xFF
mbed_official 377:95186f86029b 167
mbed_official 377:95186f86029b 168 nFEPROT EQU 0x00
mbed_official 377:95186f86029b 169 FEPROT EQU nFEPROT^0xFF
mbed_official 377:95186f86029b 170
mbed_official 377:95186f86029b 171 nFDPROT EQU 0x00
mbed_official 377:95186f86029b 172 FDPROT EQU nFDPROT^0xFF
mbed_official 377:95186f86029b 173
mbed_official 377:95186f86029b 174 FOPT EQU 0xFD
mbed_official 377:95186f86029b 175
mbed_official 377:95186f86029b 176 FSEC EQU 0xFE
mbed_official 377:95186f86029b 177 SECTION FlashConfig:CONST:REORDER:ROOT(2)
mbed_official 377:95186f86029b 178 Config:
mbed_official 377:95186f86029b 179 DATA
mbed_official 377:95186f86029b 180 DCB BackDoorK0, BackDoorK1, BackDoorK2, BackDoorK3
mbed_official 377:95186f86029b 181 DCB BackDoorK4, BackDoorK5, BackDoorK6, BackDoorK7
mbed_official 377:95186f86029b 182 DCB FPROT0, FPROT1, FPROT2, FPROT3
mbed_official 377:95186f86029b 183 DCB FSEC, FOPT, FEPROT, FDPROT
mbed_official 377:95186f86029b 184 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mbed_official 377:95186f86029b 185 ;;
mbed_official 377:95186f86029b 186 ;; Default interrupt handlers.
mbed_official 377:95186f86029b 187 ;;
mbed_official 377:95186f86029b 188 THUMB
mbed_official 377:95186f86029b 189 PUBWEAK Reset_Handler
mbed_official 377:95186f86029b 190 SECTION .text:CODE:NOROOT:REORDER(2)
mbed_official 377:95186f86029b 191 Reset_Handler
mbed_official 377:95186f86029b 192
mbed_official 377:95186f86029b 193 LDR R0, =SystemInit
mbed_official 377:95186f86029b 194 BLX R0
mbed_official 377:95186f86029b 195 LDR R0, =__iar_program_start
mbed_official 377:95186f86029b 196 BX R0
mbed_official 377:95186f86029b 197
mbed_official 377:95186f86029b 198 PUBWEAK NMI_Handler
mbed_official 377:95186f86029b 199 PUBWEAK HardFault_Handler
mbed_official 377:95186f86029b 200 PUBWEAK MemManage_Handler
mbed_official 377:95186f86029b 201 PUBWEAK BusFault_Handler
mbed_official 377:95186f86029b 202 PUBWEAK UsageFault_Handler
mbed_official 377:95186f86029b 203 PUBWEAK SVC_Handler
mbed_official 377:95186f86029b 204 PUBWEAK DebugMon_Handler
mbed_official 377:95186f86029b 205 PUBWEAK PendSV_Handler
mbed_official 377:95186f86029b 206 PUBWEAK SysTick_Handler
mbed_official 377:95186f86029b 207 PUBWEAK DMA0_IRQHandler
mbed_official 377:95186f86029b 208 PUBWEAK DMA1_IRQHandler
mbed_official 377:95186f86029b 209 PUBWEAK DMA2_IRQHandler
mbed_official 377:95186f86029b 210 PUBWEAK DMA3_IRQHandler
mbed_official 377:95186f86029b 211 PUBWEAK DMA4_IRQHandler
mbed_official 377:95186f86029b 212 PUBWEAK DMA5_IRQHandler
mbed_official 377:95186f86029b 213 PUBWEAK DMA6_IRQHandler
mbed_official 377:95186f86029b 214 PUBWEAK DMA7_IRQHandler
mbed_official 377:95186f86029b 215 PUBWEAK DMA8_IRQHandler
mbed_official 377:95186f86029b 216 PUBWEAK DMA9_IRQHandler
mbed_official 377:95186f86029b 217 PUBWEAK DMA10_IRQHandler
mbed_official 377:95186f86029b 218 PUBWEAK DMA11_IRQHandler
mbed_official 377:95186f86029b 219 PUBWEAK DMA12_IRQHandler
mbed_official 377:95186f86029b 220 PUBWEAK DMA13_IRQHandler
mbed_official 377:95186f86029b 221 PUBWEAK DMA14_IRQHandler
mbed_official 377:95186f86029b 222 PUBWEAK DMA15_IRQHandler
mbed_official 377:95186f86029b 223 PUBWEAK DMA_Error_IRQHandler
mbed_official 377:95186f86029b 224 PUBWEAK MCM_IRQHandler
mbed_official 377:95186f86029b 225 PUBWEAK FTFE_IRQHandler
mbed_official 377:95186f86029b 226 PUBWEAK Read_Collision_IRQHandler
mbed_official 377:95186f86029b 227 PUBWEAK LVD_LVW_IRQHandler
mbed_official 377:95186f86029b 228 PUBWEAK LLW_IRQHandler
mbed_official 377:95186f86029b 229 PUBWEAK Watchdog_IRQHandler
mbed_official 377:95186f86029b 230 PUBWEAK RNG_IRQHandler
mbed_official 377:95186f86029b 231 PUBWEAK I2C0_IRQHandler
mbed_official 377:95186f86029b 232 PUBWEAK I2C1_IRQHandler
mbed_official 377:95186f86029b 233 PUBWEAK SPI0_IRQHandler
mbed_official 377:95186f86029b 234 PUBWEAK SPI1_IRQHandler
mbed_official 377:95186f86029b 235 PUBWEAK I2S0_Tx_IRQHandler
mbed_official 377:95186f86029b 236 PUBWEAK I2S0_Rx_IRQHandler
mbed_official 377:95186f86029b 237 PUBWEAK UART0_LON_IRQHandler
mbed_official 377:95186f86029b 238 PUBWEAK UART0_RX_TX_IRQHandler
mbed_official 377:95186f86029b 239 PUBWEAK UART0_ERR_IRQHandler
mbed_official 377:95186f86029b 240 PUBWEAK UART1_RX_TX_IRQHandler
mbed_official 377:95186f86029b 241 PUBWEAK UART1_ERR_IRQHandler
mbed_official 377:95186f86029b 242 PUBWEAK UART2_RX_TX_IRQHandler
mbed_official 377:95186f86029b 243 PUBWEAK UART2_ERR_IRQHandler
mbed_official 377:95186f86029b 244 PUBWEAK UART3_RX_TX_IRQHandler
mbed_official 377:95186f86029b 245 PUBWEAK UART3_ERR_IRQHandler
mbed_official 377:95186f86029b 246 PUBWEAK ADC0_IRQHandler
mbed_official 377:95186f86029b 247 PUBWEAK CMP0_IRQHandler
mbed_official 377:95186f86029b 248 PUBWEAK CMP1_IRQHandler
mbed_official 377:95186f86029b 249 PUBWEAK FTM0_IRQHandler
mbed_official 377:95186f86029b 250 PUBWEAK FTM1_IRQHandler
mbed_official 377:95186f86029b 251 PUBWEAK FTM2_IRQHandler
mbed_official 377:95186f86029b 252 PUBWEAK CMT_IRQHandler
mbed_official 377:95186f86029b 253 PUBWEAK RTC_IRQHandler
mbed_official 377:95186f86029b 254 PUBWEAK RTC_Seconds_IRQHandler
mbed_official 377:95186f86029b 255 PUBWEAK PIT0_IRQHandler
mbed_official 377:95186f86029b 256 PUBWEAK PIT1_IRQHandler
mbed_official 377:95186f86029b 257 PUBWEAK PIT2_IRQHandler
mbed_official 377:95186f86029b 258 PUBWEAK PIT3_IRQHandler
mbed_official 377:95186f86029b 259 PUBWEAK PDB0_IRQHandler
mbed_official 377:95186f86029b 260 PUBWEAK USB0_IRQHandler
mbed_official 377:95186f86029b 261 PUBWEAK USBDCD_IRQHandler
mbed_official 377:95186f86029b 262 PUBWEAK Reserved71_IRQHandler
mbed_official 377:95186f86029b 263 PUBWEAK DAC0_IRQHandler
mbed_official 377:95186f86029b 264 PUBWEAK MCG_IRQHandler
mbed_official 377:95186f86029b 265 PUBWEAK LPTimer_IRQHandler
mbed_official 377:95186f86029b 266 PUBWEAK PORTA_IRQHandler
mbed_official 377:95186f86029b 267 PUBWEAK PORTB_IRQHandler
mbed_official 377:95186f86029b 268 PUBWEAK PORTC_IRQHandler
mbed_official 377:95186f86029b 269 PUBWEAK PORTD_IRQHandler
mbed_official 377:95186f86029b 270 PUBWEAK PORTE_IRQHandler
mbed_official 377:95186f86029b 271 PUBWEAK SWI_IRQHandler
mbed_official 377:95186f86029b 272 PUBWEAK SPI2_IRQHandler
mbed_official 377:95186f86029b 273 PUBWEAK UART4_RX_TX_IRQHandler
mbed_official 377:95186f86029b 274 PUBWEAK UART4_ERR_IRQHandler
mbed_official 377:95186f86029b 275 PUBWEAK UART5_RX_TX_IRQHandler
mbed_official 377:95186f86029b 276 PUBWEAK UART5_ERR_IRQHandler
mbed_official 377:95186f86029b 277 PUBWEAK CMP2_IRQHandler
mbed_official 377:95186f86029b 278 PUBWEAK FTM3_IRQHandler
mbed_official 377:95186f86029b 279 PUBWEAK DAC1_IRQHandler
mbed_official 377:95186f86029b 280 PUBWEAK ADC1_IRQHandler
mbed_official 377:95186f86029b 281 PUBWEAK I2C2_IRQHandler
mbed_official 377:95186f86029b 282 PUBWEAK CAN0_ORed_Message_buffer_IRQHandler
mbed_official 377:95186f86029b 283 PUBWEAK CAN0_Bus_Off_IRQHandler
mbed_official 377:95186f86029b 284 PUBWEAK CAN0_Error_IRQHandler
mbed_official 377:95186f86029b 285 PUBWEAK CAN0_Tx_Warning_IRQHandler
mbed_official 377:95186f86029b 286 PUBWEAK CAN0_Rx_Warning_IRQHandler
mbed_official 377:95186f86029b 287 PUBWEAK CAN0_Wake_Up_IRQHandler
mbed_official 377:95186f86029b 288 PUBWEAK SDHC_IRQHandler
mbed_official 377:95186f86029b 289 PUBWEAK ENET_1588_Timer_IRQHandler
mbed_official 377:95186f86029b 290 PUBWEAK ENET_Transmit_IRQHandler
mbed_official 377:95186f86029b 291 PUBWEAK ENET_Receive_IRQHandler
mbed_official 377:95186f86029b 292 PUBWEAK ENET_Error_IRQHandler
mbed_official 377:95186f86029b 293
mbed_official 377:95186f86029b 294 SECTION .text:CODE:REORDER:NOROOT(1)
mbed_official 377:95186f86029b 295 THUMB
mbed_official 377:95186f86029b 296 NMI_Handler
mbed_official 377:95186f86029b 297 HardFault_Handler
mbed_official 377:95186f86029b 298 MemManage_Handler
mbed_official 377:95186f86029b 299 BusFault_Handler
mbed_official 377:95186f86029b 300 UsageFault_Handler
mbed_official 377:95186f86029b 301 SVC_Handler
mbed_official 377:95186f86029b 302 DebugMon_Handler
mbed_official 377:95186f86029b 303 PendSV_Handler
mbed_official 377:95186f86029b 304 SysTick_Handler
mbed_official 377:95186f86029b 305 DMA0_IRQHandler
mbed_official 377:95186f86029b 306 DMA1_IRQHandler
mbed_official 377:95186f86029b 307 DMA2_IRQHandler
mbed_official 377:95186f86029b 308 DMA3_IRQHandler
mbed_official 377:95186f86029b 309 DMA4_IRQHandler
mbed_official 377:95186f86029b 310 DMA5_IRQHandler
mbed_official 377:95186f86029b 311 DMA6_IRQHandler
mbed_official 377:95186f86029b 312 DMA7_IRQHandler
mbed_official 377:95186f86029b 313 DMA8_IRQHandler
mbed_official 377:95186f86029b 314 DMA9_IRQHandler
mbed_official 377:95186f86029b 315 DMA10_IRQHandler
mbed_official 377:95186f86029b 316 DMA11_IRQHandler
mbed_official 377:95186f86029b 317 DMA12_IRQHandler
mbed_official 377:95186f86029b 318 DMA13_IRQHandler
mbed_official 377:95186f86029b 319 DMA14_IRQHandler
mbed_official 377:95186f86029b 320 DMA15_IRQHandler
mbed_official 377:95186f86029b 321 DMA_Error_IRQHandler
mbed_official 377:95186f86029b 322 MCM_IRQHandler
mbed_official 377:95186f86029b 323 FTFE_IRQHandler
mbed_official 377:95186f86029b 324 Read_Collision_IRQHandler
mbed_official 377:95186f86029b 325 LVD_LVW_IRQHandler
mbed_official 377:95186f86029b 326 LLW_IRQHandler
mbed_official 377:95186f86029b 327 Watchdog_IRQHandler
mbed_official 377:95186f86029b 328 RNG_IRQHandler
mbed_official 377:95186f86029b 329 I2C0_IRQHandler
mbed_official 377:95186f86029b 330 I2C1_IRQHandler
mbed_official 377:95186f86029b 331 SPI0_IRQHandler
mbed_official 377:95186f86029b 332 SPI1_IRQHandler
mbed_official 377:95186f86029b 333 I2S0_Tx_IRQHandler
mbed_official 377:95186f86029b 334 I2S0_Rx_IRQHandler
mbed_official 377:95186f86029b 335 UART0_LON_IRQHandler
mbed_official 377:95186f86029b 336 UART0_RX_TX_IRQHandler
mbed_official 377:95186f86029b 337 UART0_ERR_IRQHandler
mbed_official 377:95186f86029b 338 UART1_RX_TX_IRQHandler
mbed_official 377:95186f86029b 339 UART1_ERR_IRQHandler
mbed_official 377:95186f86029b 340 UART2_RX_TX_IRQHandler
mbed_official 377:95186f86029b 341 UART2_ERR_IRQHandler
mbed_official 377:95186f86029b 342 UART3_RX_TX_IRQHandler
mbed_official 377:95186f86029b 343 UART3_ERR_IRQHandler
mbed_official 377:95186f86029b 344 ADC0_IRQHandler
mbed_official 377:95186f86029b 345 CMP0_IRQHandler
mbed_official 377:95186f86029b 346 CMP1_IRQHandler
mbed_official 377:95186f86029b 347 FTM0_IRQHandler
mbed_official 377:95186f86029b 348 FTM1_IRQHandler
mbed_official 377:95186f86029b 349 FTM2_IRQHandler
mbed_official 377:95186f86029b 350 CMT_IRQHandler
mbed_official 377:95186f86029b 351 RTC_IRQHandler
mbed_official 377:95186f86029b 352 RTC_Seconds_IRQHandler
mbed_official 377:95186f86029b 353 PIT0_IRQHandler
mbed_official 377:95186f86029b 354 PIT1_IRQHandler
mbed_official 377:95186f86029b 355 PIT2_IRQHandler
mbed_official 377:95186f86029b 356 PIT3_IRQHandler
mbed_official 377:95186f86029b 357 PDB0_IRQHandler
mbed_official 377:95186f86029b 358 USB0_IRQHandler
mbed_official 377:95186f86029b 359 USBDCD_IRQHandler
mbed_official 377:95186f86029b 360 Reserved71_IRQHandler
mbed_official 377:95186f86029b 361 DAC0_IRQHandler
mbed_official 377:95186f86029b 362 MCG_IRQHandler
mbed_official 377:95186f86029b 363 LPTimer_IRQHandler
mbed_official 377:95186f86029b 364 PORTA_IRQHandler
mbed_official 377:95186f86029b 365 PORTB_IRQHandler
mbed_official 377:95186f86029b 366 PORTC_IRQHandler
mbed_official 377:95186f86029b 367 PORTD_IRQHandler
mbed_official 377:95186f86029b 368 PORTE_IRQHandler
mbed_official 377:95186f86029b 369 SWI_IRQHandler
mbed_official 377:95186f86029b 370 SPI2_IRQHandler
mbed_official 377:95186f86029b 371 UART4_RX_TX_IRQHandler
mbed_official 377:95186f86029b 372 UART4_ERR_IRQHandler
mbed_official 377:95186f86029b 373 UART5_RX_TX_IRQHandler
mbed_official 377:95186f86029b 374 UART5_ERR_IRQHandler
mbed_official 377:95186f86029b 375 CMP2_IRQHandler
mbed_official 377:95186f86029b 376 FTM3_IRQHandler
mbed_official 377:95186f86029b 377 DAC1_IRQHandler
mbed_official 377:95186f86029b 378 ADC1_IRQHandler
mbed_official 377:95186f86029b 379 I2C2_IRQHandler
mbed_official 377:95186f86029b 380 CAN0_ORed_Message_buffer_IRQHandler
mbed_official 377:95186f86029b 381 CAN0_Bus_Off_IRQHandler
mbed_official 377:95186f86029b 382 CAN0_Error_IRQHandler
mbed_official 377:95186f86029b 383 CAN0_Tx_Warning_IRQHandler
mbed_official 377:95186f86029b 384 CAN0_Rx_Warning_IRQHandler
mbed_official 377:95186f86029b 385 CAN0_Wake_Up_IRQHandler
mbed_official 377:95186f86029b 386 SDHC_IRQHandler
mbed_official 377:95186f86029b 387 ENET_1588_Timer_IRQHandler
mbed_official 377:95186f86029b 388 ENET_Transmit_IRQHandler
mbed_official 377:95186f86029b 389 ENET_Receive_IRQHandler
mbed_official 377:95186f86029b 390 ENET_Error_IRQHandler
mbed_official 377:95186f86029b 391 Default_Handler
mbed_official 377:95186f86029b 392
mbed_official 377:95186f86029b 393 B Default_Handler
mbed_official 377:95186f86029b 394 END