2014-05-26 14:43:02 +00:00
|
|
|
/*
|
2014-07-26 09:00:40 +00:00
|
|
|
ChibiOS - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011,2012,2013,2014 Giovanni Di Sirio.
|
2014-05-26 14:43:02 +00:00
|
|
|
|
2014-07-26 09:00:40 +00:00
|
|
|
This file is part of ChibiOS.
|
2014-05-26 14:43:02 +00:00
|
|
|
|
2014-07-26 09:00:40 +00:00
|
|
|
ChibiOS is free software; you can redistribute it and/or modify
|
2014-05-26 14:43:02 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2014-07-26 09:00:40 +00:00
|
|
|
ChibiOS is distributed in the hope that it will be useful,
|
2014-05-26 14:43:02 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file ARM/compilers/GCC/vectors.s
|
|
|
|
* @brief Interrupt vectors for ARM devices.
|
|
|
|
*
|
|
|
|
* @defgroup ARM_VECTORS ARM Exception Vectors
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Unhandled exceptions handler.
|
|
|
|
* @details Any undefined exception vector points to this function by default.
|
|
|
|
* This function simply stops the system into an infinite loop.
|
|
|
|
* @note The default implementation is a weak symbol, the application
|
|
|
|
* can override the default implementation.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void _unhandled_exception(void) {}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(__DOXYGEN__)
|
|
|
|
|
2014-10-13 19:50:41 +00:00
|
|
|
.section vectors, "ax"
|
2014-05-26 14:43:02 +00:00
|
|
|
.code 32
|
|
|
|
.balign 4
|
|
|
|
|
|
|
|
/*
|
|
|
|
* System entry points.
|
|
|
|
*/
|
2014-10-13 19:50:41 +00:00
|
|
|
.global _start
|
2014-05-26 14:43:02 +00:00
|
|
|
_start:
|
|
|
|
ldr pc, _reset
|
|
|
|
ldr pc, _undefined
|
|
|
|
ldr pc, _swi
|
|
|
|
ldr pc, _prefetch
|
|
|
|
ldr pc, _abort
|
|
|
|
nop
|
|
|
|
ldr pc, _irq
|
|
|
|
ldr pc, _fiq
|
|
|
|
|
|
|
|
_reset:
|
2014-10-13 19:50:41 +00:00
|
|
|
.word Reset_Handler
|
2014-05-26 14:43:02 +00:00
|
|
|
_undefined:
|
2014-10-13 19:50:41 +00:00
|
|
|
.word Und_Handler
|
2014-05-26 14:43:02 +00:00
|
|
|
_swi:
|
2014-10-13 19:50:41 +00:00
|
|
|
.word Swi_Handler
|
2014-05-26 14:43:02 +00:00
|
|
|
_prefetch:
|
2014-10-13 19:50:41 +00:00
|
|
|
.word Prefetch_Handler
|
2014-05-26 14:43:02 +00:00
|
|
|
_abort:
|
2014-10-13 19:50:41 +00:00
|
|
|
.word Abort_Handler
|
2014-05-26 14:43:02 +00:00
|
|
|
_fiq:
|
2014-10-13 19:50:41 +00:00
|
|
|
.word Fiq_Handler
|
2014-05-26 14:43:02 +00:00
|
|
|
_irq:
|
2014-10-13 19:50:41 +00:00
|
|
|
.word Irq_Handler
|
2014-05-26 14:43:02 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Default exceptions handlers. The handlers are declared weak in order to be
|
|
|
|
* replaced by the real handling code. Everything is defaulted to an infinite
|
|
|
|
* loop.
|
|
|
|
*/
|
2014-10-13 19:50:41 +00:00
|
|
|
.weak Reset_Handler
|
|
|
|
Reset_Handler:
|
|
|
|
.weak Und_Handler
|
|
|
|
Und_Handler:
|
|
|
|
.weak Swi_Handler
|
|
|
|
Swi_Handler:
|
|
|
|
.weak Prefetch_Handler
|
|
|
|
Prefetch_Handler:
|
|
|
|
.weak Abort_Handler
|
|
|
|
Abort_Handler:
|
|
|
|
.weak Fiq_Handler
|
|
|
|
Fiq_Handler:
|
|
|
|
.weak Irq_Handler
|
|
|
|
Irq_Handler:
|
2014-05-26 14:43:02 +00:00
|
|
|
.weak _unhandled_exception
|
|
|
|
_unhandled_exception:
|
|
|
|
b _unhandled_exception
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** @} */
|