12 lines
No EOL
217 B
NASM
12 lines
No EOL
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: |