1
0
Fork 0
This repository has been archived on 2022-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
riscv-opensbi-hello/src/boot.s

18 lines
191 B
ArmAsm

.section .text
.global _start
# a0 - current hart id
# a1 - pointer to flattened device tree
_start:
# Initialise stack pointer
la sp, stack_top
mv fp, sp
j kinit
finish:
j finish