diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-25 02:21:16 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-25 02:21:16 +0100 |
commit | 5a597d99c4fa249ff2e097356ee709c3f9724640 (patch) | |
tree | bc14d708eb2da5c5e2d8363f12ade96b1fd59ffa /arch/arm | |
parent | 0066036fc69e887b7f048aa48af61e0ead8daf90 (diff) |
Having the board actually booting; the reset handler needs to be referenced by name and not by section to have a proper thumb pointer.
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/lpc17xx/startup.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lpc17xx/startup.s b/arch/arm/lpc17xx/startup.s index 734e468..ff58b7b 100644 --- a/arch/arm/lpc17xx/startup.s +++ b/arch/arm/lpc17xx/startup.s @@ -58,7 +58,7 @@ __cs3_heap_end: __cs3_interrupt_vector_cortex_m: .long __cs3_stack /* Top of Stack */ - .long __cs3_reset /* Reset Handler */ + .long __cs3_reset_cortex_m /* Reset Handler */ .long NMI_Handler /* NMI Handler */ .long HardFault_Handler /* Hard Fault Handler */ .long MemManage_Handler /* MPU Fault Handler */ |