mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-02-09 05:14:46 +08:00
12 lines
217 B
NASM
12 lines
217 B
NASM
.section .text.entry
|
|
.globl _start
|
|
_start:
|
|
la sp, boot_stack_top
|
|
call rust_main
|
|
|
|
.section .bss.stack
|
|
.globl boot_stack
|
|
boot_stack:
|
|
.space 4096 * 16
|
|
.globl boot_stack_top
|
|
boot_stack_top: |