Mouse code for the MacroRat

Dependencies:   ITG3200 QEI

Committer:
sahilmgandhi
Date:
Sun May 14 23:18:57 2017 +0000
Revision:
18:6a4db94011d3
Publishing again

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sahilmgandhi 18:6a4db94011d3 1 ;/* Copyright (c) 2012 ARM LIMITED
sahilmgandhi 18:6a4db94011d3 2 ;
sahilmgandhi 18:6a4db94011d3 3 ; All rights reserved.
sahilmgandhi 18:6a4db94011d3 4 ; Redistribution and use in source and binary forms, with or without
sahilmgandhi 18:6a4db94011d3 5 ; modification, are permitted provided that the following conditions are met:
sahilmgandhi 18:6a4db94011d3 6 ; - Redistributions of source code must retain the above copyright
sahilmgandhi 18:6a4db94011d3 7 ; notice, this list of conditions and the following disclaimer.
sahilmgandhi 18:6a4db94011d3 8 ; - Redistributions in binary form must reproduce the above copyright
sahilmgandhi 18:6a4db94011d3 9 ; notice, this list of conditions and the following disclaimer in the
sahilmgandhi 18:6a4db94011d3 10 ; documentation and/or other materials provided with the distribution.
sahilmgandhi 18:6a4db94011d3 11 ; - Neither the name of ARM nor the names of its contributors may be used
sahilmgandhi 18:6a4db94011d3 12 ; to endorse or promote products derived from this software without
sahilmgandhi 18:6a4db94011d3 13 ; specific prior written permission.
sahilmgandhi 18:6a4db94011d3 14 ; *
sahilmgandhi 18:6a4db94011d3 15 ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
sahilmgandhi 18:6a4db94011d3 16 ; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sahilmgandhi 18:6a4db94011d3 17 ; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sahilmgandhi 18:6a4db94011d3 18 ; ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
sahilmgandhi 18:6a4db94011d3 19 ; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
sahilmgandhi 18:6a4db94011d3 20 ; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
sahilmgandhi 18:6a4db94011d3 21 ; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
sahilmgandhi 18:6a4db94011d3 22 ; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
sahilmgandhi 18:6a4db94011d3 23 ; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
sahilmgandhi 18:6a4db94011d3 24 ; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
sahilmgandhi 18:6a4db94011d3 25 ; POSSIBILITY OF SUCH DAMAGE.
sahilmgandhi 18:6a4db94011d3 26 ; ---------------------------------------------------------------------------*/
sahilmgandhi 18:6a4db94011d3 27
sahilmgandhi 18:6a4db94011d3 28
sahilmgandhi 18:6a4db94011d3 29 ; The modules in this file are included in the libraries, and may be replaced
sahilmgandhi 18:6a4db94011d3 30 ; by any user-defined modules that define the PUBLIC symbol _program_start or
sahilmgandhi 18:6a4db94011d3 31 ; a user defined start symbol.
sahilmgandhi 18:6a4db94011d3 32 ; To override the cstartup defined in the library, simply add your modified
sahilmgandhi 18:6a4db94011d3 33 ; version to the workbench project.
sahilmgandhi 18:6a4db94011d3 34 ;
sahilmgandhi 18:6a4db94011d3 35 ; The vector table is normally located at address 0.
sahilmgandhi 18:6a4db94011d3 36 ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
sahilmgandhi 18:6a4db94011d3 37 ; The name "__vector_table" has special meaning for C-SPY:
sahilmgandhi 18:6a4db94011d3 38 ; it is where the SP start value is found, and the NVIC vector
sahilmgandhi 18:6a4db94011d3 39 ; table register (VTOR) is initialized to this address if != 0.
sahilmgandhi 18:6a4db94011d3 40
sahilmgandhi 18:6a4db94011d3 41
sahilmgandhi 18:6a4db94011d3 42
sahilmgandhi 18:6a4db94011d3 43 MODULE ?cstartup
sahilmgandhi 18:6a4db94011d3 44
sahilmgandhi 18:6a4db94011d3 45 ;; Stack size default : Defined in *.icf (linker file). Can be modified inside EW.
sahilmgandhi 18:6a4db94011d3 46 ;; Heap size default : Defined in *.icf (linker file). Can be modified inside EW.
sahilmgandhi 18:6a4db94011d3 47
sahilmgandhi 18:6a4db94011d3 48 ;; Forward declaration of sections.
sahilmgandhi 18:6a4db94011d3 49 SECTION CSTACK:DATA:NOROOT(3)
sahilmgandhi 18:6a4db94011d3 50
sahilmgandhi 18:6a4db94011d3 51 SECTION .intvec:CODE:NOROOT(2)
sahilmgandhi 18:6a4db94011d3 52
sahilmgandhi 18:6a4db94011d3 53 EXTERN __iar_program_start
sahilmgandhi 18:6a4db94011d3 54 EXTERN SystemInit
sahilmgandhi 18:6a4db94011d3 55 EXTERN nrf_reloc_vector_table
sahilmgandhi 18:6a4db94011d3 56 PUBLIC __vector_table
sahilmgandhi 18:6a4db94011d3 57 PUBLIC __Vectors
sahilmgandhi 18:6a4db94011d3 58 PUBLIC __Vectors_End
sahilmgandhi 18:6a4db94011d3 59 PUBLIC __Vectors_Size
sahilmgandhi 18:6a4db94011d3 60
sahilmgandhi 18:6a4db94011d3 61 DATA
sahilmgandhi 18:6a4db94011d3 62
sahilmgandhi 18:6a4db94011d3 63 __vector_table
sahilmgandhi 18:6a4db94011d3 64 DCD sfe(CSTACK)
sahilmgandhi 18:6a4db94011d3 65 DCD Reset_Handler
sahilmgandhi 18:6a4db94011d3 66 DCD NMI_Handler
sahilmgandhi 18:6a4db94011d3 67 DCD HardFault_Handler
sahilmgandhi 18:6a4db94011d3 68 DCD MemoryManagement_Handler
sahilmgandhi 18:6a4db94011d3 69 DCD BusFault_Handler
sahilmgandhi 18:6a4db94011d3 70 DCD UsageFault_Handler
sahilmgandhi 18:6a4db94011d3 71 DCD 0 ; Reserved
sahilmgandhi 18:6a4db94011d3 72 DCD 0 ; Reserved
sahilmgandhi 18:6a4db94011d3 73 DCD 0 ; Reserved
sahilmgandhi 18:6a4db94011d3 74 DCD 0 ; Reserved
sahilmgandhi 18:6a4db94011d3 75 DCD SVC_Handler
sahilmgandhi 18:6a4db94011d3 76 DCD DebugMonitor_Handler
sahilmgandhi 18:6a4db94011d3 77 DCD 0 ; Reserved
sahilmgandhi 18:6a4db94011d3 78 DCD PendSV_Handler
sahilmgandhi 18:6a4db94011d3 79 DCD SysTick_Handler
sahilmgandhi 18:6a4db94011d3 80
sahilmgandhi 18:6a4db94011d3 81 ; External Interrupts
sahilmgandhi 18:6a4db94011d3 82 DCD POWER_CLOCK_IRQHandler
sahilmgandhi 18:6a4db94011d3 83 DCD RADIO_IRQHandler
sahilmgandhi 18:6a4db94011d3 84 DCD UARTE0_UART0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 85 DCD SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 86 DCD SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 87 DCD NFCT_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 88 DCD GPIOTE_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 89 DCD SAADC_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 90 DCD TIMER0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 91 DCD TIMER1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 92 DCD TIMER2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 93 DCD RTC0_IRQHandler
sahilmgandhi 18:6a4db94011d3 94 DCD TEMP_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 95 DCD RNG_IRQHandler
sahilmgandhi 18:6a4db94011d3 96 DCD ECB_IRQHandler
sahilmgandhi 18:6a4db94011d3 97 DCD CCM_AAR_IRQHandler
sahilmgandhi 18:6a4db94011d3 98 DCD WDT_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 99 DCD RTC1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 100 DCD QDEC_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 101 DCD COMP_LPCOMP_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 102 DCD SWI0_EGU0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 103 DCD SWI1_EGU1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 104 DCD SWI2_EGU2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 105 DCD SWI3_EGU3_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 106 DCD SWI4_EGU4_IRQHandler
sahilmgandhi 18:6a4db94011d3 107 DCD SWI5_EGU5_IRQHandler
sahilmgandhi 18:6a4db94011d3 108 DCD TIMER3_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 109 DCD TIMER4_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 110 DCD PWM0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 111 DCD PDM_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 112 DCD 0 ; Reserved
sahilmgandhi 18:6a4db94011d3 113 DCD 0 ; Reserved
sahilmgandhi 18:6a4db94011d3 114 DCD MWU_IRQHandler
sahilmgandhi 18:6a4db94011d3 115 DCD PWM1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 116 DCD PWM2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 117 DCD SPIM2_SPIS2_SPI2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 118 DCD RTC2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 119 DCD I2S_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 120 DCD FPU_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 121
sahilmgandhi 18:6a4db94011d3 122
sahilmgandhi 18:6a4db94011d3 123 __Vectors_End
sahilmgandhi 18:6a4db94011d3 124 __Vectors EQU __vector_table
sahilmgandhi 18:6a4db94011d3 125 __Vectors_Size EQU __Vectors_End - __Vectors
sahilmgandhi 18:6a4db94011d3 126
sahilmgandhi 18:6a4db94011d3 127
sahilmgandhi 18:6a4db94011d3 128 ; Default handlers.
sahilmgandhi 18:6a4db94011d3 129 THUMB
sahilmgandhi 18:6a4db94011d3 130
sahilmgandhi 18:6a4db94011d3 131 PUBWEAK Reset_Handler
sahilmgandhi 18:6a4db94011d3 132 SECTION .text:CODE:NOROOT(2)
sahilmgandhi 18:6a4db94011d3 133 Reset_Handler
sahilmgandhi 18:6a4db94011d3 134
sahilmgandhi 18:6a4db94011d3 135 LDR R0, =SystemInit
sahilmgandhi 18:6a4db94011d3 136 BLX R0
sahilmgandhi 18:6a4db94011d3 137 LDR R0, =nrf_reloc_vector_table
sahilmgandhi 18:6a4db94011d3 138 BLX R0
sahilmgandhi 18:6a4db94011d3 139 LDR R0, =__iar_program_start
sahilmgandhi 18:6a4db94011d3 140 BX R0
sahilmgandhi 18:6a4db94011d3 141
sahilmgandhi 18:6a4db94011d3 142 ; Dummy exception handlers
sahilmgandhi 18:6a4db94011d3 143
sahilmgandhi 18:6a4db94011d3 144
sahilmgandhi 18:6a4db94011d3 145 PUBWEAK NMI_Handler
sahilmgandhi 18:6a4db94011d3 146 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 147 NMI_Handler
sahilmgandhi 18:6a4db94011d3 148 B .
sahilmgandhi 18:6a4db94011d3 149
sahilmgandhi 18:6a4db94011d3 150 PUBWEAK HardFault_Handler
sahilmgandhi 18:6a4db94011d3 151 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 152 HardFault_Handler
sahilmgandhi 18:6a4db94011d3 153 B .
sahilmgandhi 18:6a4db94011d3 154
sahilmgandhi 18:6a4db94011d3 155 PUBWEAK MemoryManagement_Handler
sahilmgandhi 18:6a4db94011d3 156 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 157 MemoryManagement_Handler
sahilmgandhi 18:6a4db94011d3 158 B .
sahilmgandhi 18:6a4db94011d3 159
sahilmgandhi 18:6a4db94011d3 160 PUBWEAK BusFault_Handler
sahilmgandhi 18:6a4db94011d3 161 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 162 BusFault_Handler
sahilmgandhi 18:6a4db94011d3 163 B .
sahilmgandhi 18:6a4db94011d3 164
sahilmgandhi 18:6a4db94011d3 165 PUBWEAK UsageFault_Handler
sahilmgandhi 18:6a4db94011d3 166 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 167 UsageFault_Handler
sahilmgandhi 18:6a4db94011d3 168 B .
sahilmgandhi 18:6a4db94011d3 169
sahilmgandhi 18:6a4db94011d3 170 PUBWEAK SVC_Handler
sahilmgandhi 18:6a4db94011d3 171 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 172 SVC_Handler
sahilmgandhi 18:6a4db94011d3 173 B .
sahilmgandhi 18:6a4db94011d3 174
sahilmgandhi 18:6a4db94011d3 175 PUBWEAK DebugMonitor_Handler
sahilmgandhi 18:6a4db94011d3 176 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 177 DebugMonitor_Handler
sahilmgandhi 18:6a4db94011d3 178 B .
sahilmgandhi 18:6a4db94011d3 179
sahilmgandhi 18:6a4db94011d3 180 PUBWEAK PendSV_Handler
sahilmgandhi 18:6a4db94011d3 181 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 182 PendSV_Handler
sahilmgandhi 18:6a4db94011d3 183 B .
sahilmgandhi 18:6a4db94011d3 184
sahilmgandhi 18:6a4db94011d3 185 PUBWEAK SysTick_Handler
sahilmgandhi 18:6a4db94011d3 186 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 187 SysTick_Handler
sahilmgandhi 18:6a4db94011d3 188 B .
sahilmgandhi 18:6a4db94011d3 189
sahilmgandhi 18:6a4db94011d3 190
sahilmgandhi 18:6a4db94011d3 191 ; Dummy interrupt handlers
sahilmgandhi 18:6a4db94011d3 192
sahilmgandhi 18:6a4db94011d3 193 PUBWEAK POWER_CLOCK_IRQHandler
sahilmgandhi 18:6a4db94011d3 194 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 195 POWER_CLOCK_IRQHandler
sahilmgandhi 18:6a4db94011d3 196 B .
sahilmgandhi 18:6a4db94011d3 197
sahilmgandhi 18:6a4db94011d3 198 PUBWEAK RADIO_IRQHandler
sahilmgandhi 18:6a4db94011d3 199 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 200 RADIO_IRQHandler
sahilmgandhi 18:6a4db94011d3 201 B .
sahilmgandhi 18:6a4db94011d3 202
sahilmgandhi 18:6a4db94011d3 203 PUBWEAK UARTE0_UART0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 204 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 205 UARTE0_UART0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 206 B .
sahilmgandhi 18:6a4db94011d3 207
sahilmgandhi 18:6a4db94011d3 208 PUBWEAK SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 209 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 210 SPIM0_SPIS0_TWIM0_TWIS0_SPI0_TWI0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 211 B .
sahilmgandhi 18:6a4db94011d3 212
sahilmgandhi 18:6a4db94011d3 213 PUBWEAK SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 214 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 215 SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 216 B .
sahilmgandhi 18:6a4db94011d3 217
sahilmgandhi 18:6a4db94011d3 218 PUBWEAK NFCT_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 219 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 220 NFCT_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 221 B .
sahilmgandhi 18:6a4db94011d3 222
sahilmgandhi 18:6a4db94011d3 223 PUBWEAK GPIOTE_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 224 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 225 GPIOTE_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 226 B .
sahilmgandhi 18:6a4db94011d3 227
sahilmgandhi 18:6a4db94011d3 228 PUBWEAK SAADC_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 229 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 230 SAADC_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 231 B .
sahilmgandhi 18:6a4db94011d3 232
sahilmgandhi 18:6a4db94011d3 233 PUBWEAK TIMER0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 234 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 235 TIMER0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 236 B .
sahilmgandhi 18:6a4db94011d3 237
sahilmgandhi 18:6a4db94011d3 238 PUBWEAK TIMER1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 239 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 240 TIMER1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 241 B .
sahilmgandhi 18:6a4db94011d3 242
sahilmgandhi 18:6a4db94011d3 243 PUBWEAK TIMER2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 244 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 245 TIMER2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 246 B .
sahilmgandhi 18:6a4db94011d3 247
sahilmgandhi 18:6a4db94011d3 248 PUBWEAK RTC0_IRQHandler
sahilmgandhi 18:6a4db94011d3 249 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 250 RTC0_IRQHandler
sahilmgandhi 18:6a4db94011d3 251 B .
sahilmgandhi 18:6a4db94011d3 252
sahilmgandhi 18:6a4db94011d3 253 PUBWEAK TEMP_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 254 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 255 TEMP_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 256 B .
sahilmgandhi 18:6a4db94011d3 257
sahilmgandhi 18:6a4db94011d3 258 PUBWEAK RNG_IRQHandler
sahilmgandhi 18:6a4db94011d3 259 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 260 RNG_IRQHandler
sahilmgandhi 18:6a4db94011d3 261 B .
sahilmgandhi 18:6a4db94011d3 262
sahilmgandhi 18:6a4db94011d3 263 PUBWEAK ECB_IRQHandler
sahilmgandhi 18:6a4db94011d3 264 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 265 ECB_IRQHandler
sahilmgandhi 18:6a4db94011d3 266 B .
sahilmgandhi 18:6a4db94011d3 267
sahilmgandhi 18:6a4db94011d3 268 PUBWEAK CCM_AAR_IRQHandler
sahilmgandhi 18:6a4db94011d3 269 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 270 CCM_AAR_IRQHandler
sahilmgandhi 18:6a4db94011d3 271 B .
sahilmgandhi 18:6a4db94011d3 272
sahilmgandhi 18:6a4db94011d3 273 PUBWEAK WDT_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 274 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 275 WDT_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 276 B .
sahilmgandhi 18:6a4db94011d3 277
sahilmgandhi 18:6a4db94011d3 278 PUBWEAK RTC1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 279 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 280 RTC1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 281 B .
sahilmgandhi 18:6a4db94011d3 282
sahilmgandhi 18:6a4db94011d3 283 PUBWEAK QDEC_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 284 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 285 QDEC_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 286 B .
sahilmgandhi 18:6a4db94011d3 287
sahilmgandhi 18:6a4db94011d3 288 PUBWEAK COMP_LPCOMP_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 289 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 290 COMP_LPCOMP_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 291 B .
sahilmgandhi 18:6a4db94011d3 292
sahilmgandhi 18:6a4db94011d3 293 PUBWEAK SWI0_EGU0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 294 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 295 SWI0_EGU0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 296 B .
sahilmgandhi 18:6a4db94011d3 297
sahilmgandhi 18:6a4db94011d3 298 PUBWEAK SWI1_EGU1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 299 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 300 SWI1_EGU1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 301 B .
sahilmgandhi 18:6a4db94011d3 302
sahilmgandhi 18:6a4db94011d3 303 PUBWEAK SWI2_EGU2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 304 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 305 SWI2_EGU2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 306 B .
sahilmgandhi 18:6a4db94011d3 307
sahilmgandhi 18:6a4db94011d3 308 PUBWEAK SWI3_EGU3_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 309 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 310 SWI3_EGU3_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 311 B .
sahilmgandhi 18:6a4db94011d3 312
sahilmgandhi 18:6a4db94011d3 313 PUBWEAK SWI4_EGU4_IRQHandler
sahilmgandhi 18:6a4db94011d3 314 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 315 SWI4_EGU4_IRQHandler
sahilmgandhi 18:6a4db94011d3 316 B .
sahilmgandhi 18:6a4db94011d3 317
sahilmgandhi 18:6a4db94011d3 318 PUBWEAK SWI5_EGU5_IRQHandler
sahilmgandhi 18:6a4db94011d3 319 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 320 SWI5_EGU5_IRQHandler
sahilmgandhi 18:6a4db94011d3 321 B .
sahilmgandhi 18:6a4db94011d3 322
sahilmgandhi 18:6a4db94011d3 323 PUBWEAK TIMER3_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 324 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 325 TIMER3_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 326 B .
sahilmgandhi 18:6a4db94011d3 327
sahilmgandhi 18:6a4db94011d3 328 PUBWEAK TIMER4_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 329 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 330 TIMER4_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 331 B .
sahilmgandhi 18:6a4db94011d3 332
sahilmgandhi 18:6a4db94011d3 333 PUBWEAK PWM0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 334 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 335 PWM0_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 336 B .
sahilmgandhi 18:6a4db94011d3 337
sahilmgandhi 18:6a4db94011d3 338 PUBWEAK PDM_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 339 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 340 PDM_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 341 B .
sahilmgandhi 18:6a4db94011d3 342
sahilmgandhi 18:6a4db94011d3 343 PUBWEAK MWU_IRQHandler
sahilmgandhi 18:6a4db94011d3 344 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 345 MWU_IRQHandler
sahilmgandhi 18:6a4db94011d3 346 B .
sahilmgandhi 18:6a4db94011d3 347
sahilmgandhi 18:6a4db94011d3 348 PUBWEAK PWM1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 349 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 350 PWM1_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 351 B .
sahilmgandhi 18:6a4db94011d3 352
sahilmgandhi 18:6a4db94011d3 353 PUBWEAK PWM2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 354 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 355 PWM2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 356 B .
sahilmgandhi 18:6a4db94011d3 357
sahilmgandhi 18:6a4db94011d3 358 PUBWEAK SPIM2_SPIS2_SPI2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 359 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 360 SPIM2_SPIS2_SPI2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 361 B .
sahilmgandhi 18:6a4db94011d3 362
sahilmgandhi 18:6a4db94011d3 363 PUBWEAK RTC2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 364 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 365 RTC2_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 366 B .
sahilmgandhi 18:6a4db94011d3 367
sahilmgandhi 18:6a4db94011d3 368 PUBWEAK I2S_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 369 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 370 I2S_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 371 B .
sahilmgandhi 18:6a4db94011d3 372
sahilmgandhi 18:6a4db94011d3 373 PUBWEAK FPU_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 374 SECTION .text:CODE:NOROOT(1)
sahilmgandhi 18:6a4db94011d3 375 FPU_IRQHandler_v
sahilmgandhi 18:6a4db94011d3 376 B .
sahilmgandhi 18:6a4db94011d3 377
sahilmgandhi 18:6a4db94011d3 378
sahilmgandhi 18:6a4db94011d3 379 END
sahilmgandhi 18:6a4db94011d3 380
sahilmgandhi 18:6a4db94011d3 381