You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rCore_stu/ch3/os/src/entry.asm

16 lines
433 B
NASM

.section .text.entry
.globl _start // _start
_start:
la sp, boot_stack_top_bound
call rust_main
// .bss.stack link .bss
.section .bss.stack
.globl boot_stack_lower_bound //
.globl boot_stack_top_bound //
boot_stack_lower_bound:
.space 4096 * 16
boot_stack_top_bound: