X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/e30c654b196a87a13ae7f7d4ced930b296c038ec..ed1525805c940fe738fc05286ffd22e0ce3a0fbf:/bootrom/ram-reset.s

diff --git a/bootrom/ram-reset.s b/bootrom/ram-reset.s
index 3dd77a89..ade70d8c 100644
--- a/bootrom/ram-reset.s
+++ b/bootrom/ram-reset.s
@@ -1,13 +1,20 @@
+@-----------------------------------------------------------------------------
+@ 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
+@-----------------------------------------------------------------------------
+
 .extern BootROM
 
 .section .startphase2,"ax"
-         .code 32
-         .align 0
 
-.global ramstart
-ramstart:
-    ldr     sp,     .stack_end
-    bl      BootROM
+.arm
+
+.global ram_start
+ram_start:
+	ldr	sp,     =_stack_end
+	bl	BootROM
 
-	.stack_end:
-	.word _stack_end
+	.ltorg