mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-10 06:00:07 +00:00
54d3d93a92
Introduce stack and bss memory regions, rename Start.S to start.S This commit should allow jumping out of assembly code for certain SoCs that had issues with SP like MTK and QCOM. Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
15 lines
230 B
ArmAsm
15 lines
230 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2022, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
|
*/
|
|
.global _start
|
|
|
|
_start:
|
|
ldr r0, =dtb
|
|
ldr r1, =kernel
|
|
b main
|
|
|
|
.global load_kernel
|
|
load_kernel:
|
|
bx r4
|