rCore/os/src/entry.asm

13 lines
251 B
NASM
Raw Normal View History

2024-07-15 16:08:48 +08:00
.section .text.entry
.global _start
_start:
la sp, boot_stack_top
call rust_main
.section .bss.stack
.global boot_stack_lower_bound
boot_stack_lower_bound:
.space 4096 * 16
.global boot_stack_top
boot_stack_top: