You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
217 B
12 lines
217 B
4 years ago
|
.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:
|