diff options
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/vectors.S | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/vectors.S b/os/common/startup/ARM/compilers/GCC/vectors.S index 39bd6db73..0584b4edc 100644 --- a/os/common/startup/ARM/compilers/GCC/vectors.S +++ b/os/common/startup/ARM/compilers/GCC/vectors.S @@ -56,7 +56,7 @@ _start: ldr pc, _fiq
_reset:
- .word Reset_Handler
+ .word Boot_Handler
_undefined:
.word Und_Handler
_swi:
@@ -92,6 +92,12 @@ Irq_Handler: .weak _unhandled_exception
_unhandled_exception:
b _unhandled_exception
+/*
+ * Default boot handler. Jump to Reset_Handler
+ */
+ .weak Boot_Handler
+Boot_Handler:
+ b Reset_Handler
#endif
|