aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/ARMCMx/LPC11xx/vectors.s
diff options
context:
space:
mode:
Diffstat (limited to 'os/ports/GCC/ARMCMx/LPC11xx/vectors.s')
-rw-r--r--os/ports/GCC/ARMCMx/LPC11xx/vectors.s18
1 files changed, 17 insertions, 1 deletions
diff --git a/os/ports/GCC/ARMCMx/LPC11xx/vectors.s b/os/ports/GCC/ARMCMx/LPC11xx/vectors.s
index 44ea654ce..3f44c900f 100644
--- a/os/ports/GCC/ARMCMx/LPC11xx/vectors.s
+++ b/os/ports/GCC/ARMCMx/LPC11xx/vectors.s
@@ -17,6 +17,16 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+/**
+ * @file LPC11xx/vectors.s
+ * @brief Interrupt vectors for the LPC11xx family.
+ *
+ * @addtogroup ARMCMx_CORE
+ * @{
+ */
+
+#if !defined(__DOXYGEN__)
+
.syntax unified
.thumb
@@ -209,4 +219,10 @@ VectorB8:
.weak VectorBC
VectorBC:
-here: b here
+ .global _unhandled_exception
+_unhandled_exception:
+ b _unhandled_exception
+
+#endif
+
+/** @} */