2010-02-21 00:12:52 +00:00
|
|
|
@-----------------------------------------------------------------------------
|
|
|
|
@ This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
@ at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
@ the license.
|
|
|
|
@-----------------------------------------------------------------------------
|
|
|
|
@ RAM reset vector for relaunching the bootloader
|
|
|
|
@-----------------------------------------------------------------------------
|
|
|
|
|
2010-02-20 21:57:20 +00:00
|
|
|
.extern BootROM
|
|
|
|
|
|
|
|
.section .startphase2,"ax"
|
|
|
|
|
2010-02-26 15:14:47 +00:00
|
|
|
.arm
|
2010-02-20 21:57:20 +00:00
|
|
|
|
2010-02-26 15:14:47 +00:00
|
|
|
.global ram_start
|
|
|
|
ram_start:
|
2019-03-09 10:42:03 +01:00
|
|
|
ldr sp, =_stack_end
|
|
|
|
bl BootROM
|
2010-02-26 15:14:47 +00:00
|
|
|
|
2019-03-09 10:42:03 +01:00
|
|
|
.ltorg
|