Lines Matching +full:- +full:- +full:form
5 * SPDX-License-Identifier: MIT AND BSD-3-Clause
36 * - Compiler: GNU GCC for AVR32
37 * - Supported devices: All AVR32UC devices with an INTC module can be used.
38 * - AppNote:
55 * 2. Redistributions in binary form must reproduce the above copyright notice,
88 // EVBA must be aligned with a power of two strictly greater than the EVBA-
153 // Floating-Point: UNUSED IN AVR32UC.
213 // R12 a pointer to a user-provided interrupt handler.
218 // R8-R12, LR, PC and SR are automatically pushed onto the system stack by the
230 sub sp, -6 * 4
241 // R8-R12, LR, PC and SR are automatically pushed onto the system stack by the
253 sub sp, -6 * 4
264 // R8-R12, LR, PC and SR are automatically pushed onto the system stack by the
276 sub sp, -6 * 4
287 // R8-R12, LR, PC and SR are automatically pushed onto the system stack by the
299 sub sp, -6 * 4
316 // the EVBA-relative interrupt vector offset.
320 .word (INT0 << AVR32_INTC_IPR0_INTLEV_OFFSET) | (_int0 - _evba),\
321 (INT1 << AVR32_INTC_IPR0_INTLEV_OFFSET) | (_int1 - _evba),\
322 (INT2 << AVR32_INTC_IPR0_INTLEV_OFFSET) | (_int2 - _evba),\
323 (INT3 << AVR32_INTC_IPR0_INTLEV_OFFSET) | (_int3 - _evba)