style
[RRG-proxmark3.git] / bootrom / ram-reset.s
blobaed87a1ce99c84681b30875ebbc43b0fcd190529
1 @-----------------------------------------------------------------------------
2 @ Copyright (C) Jonathan Westhues, Mar 2006
3 @ Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
5 @ This program is free software: you can redistribute it and/or modify
6 @ it under the terms of the GNU General Public License as published by
7 @ the Free Software Foundation, either version 3 of the License, or
8 @ (at your option) any later version.
10 @ This program is distributed in the hope that it will be useful,
11 @ but WITHOUT ANY WARRANTY; without even the implied warranty of
12 @ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 @ GNU General Public License for more details.
15 @ See LICENSE.txt for the text of the license.
16 @-----------------------------------------------------------------------------
17 @ RAM reset vector for relaunching the bootloader
18 @-----------------------------------------------------------------------------
20 .extern BootROM
22 .section .startphase2,"ax"
24 .arm
26 .global ram_start
27 ram_start:
28 ldr sp, =_stack_end
29 bl BootROM
31 .ltorg