genode/repos/base-hw/src/lib/startup/spec/riscv/crt0.s
Norman Feske 28f5688dcf base: reduce size of initial stack from 32K to 4K
The initial stack is solely used to initialize the Genode environment
along with the application stack located in the stack area. It never
executes application code. Hence, we can make it small. To check that it
is not dimensioned too small, the patch introduces a sanity check right
before switching to the application stack.
2016-12-02 15:20:31 +01:00

43 lines
738 B
ArmAsm

/**
* \brief Startup code for Genode applications
* \author Sebastian Sumpf
* \date 2016-02-16
*/
/*
* Copyright (C) 2016 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
.section ".text"
.global _start
_start:
/* load stack pointer */
lla sp, _stack_high
/* relocate linker */
jal init_rtld
/* create environment for main thread */
jal init_main_thread
/* load stack pointer from init_main_thread_result */
la sp, init_main_thread_result
ld sp, (sp)
mv s0, x0
/* jump into init C-code */
j _main
.bss
.p2align 8
.global __initial_stack_base
__initial_stack_base:
.space 4*1024
_stack_high: