Files
2023-05-24 11:38:59 +08:00

17 lines
412 B
ArmAsm
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.equ STACK_SIZE, 8192
.global _start
_start:
csrr a0, mhartid #
bnez a0, park # 0 park
la sp, stacks + STACK_SIZE # 0
j os_main # 0 os_main
park:
wfi
j park
stacks:
.skip STACK_SIZE #