From f6214968c80a907113fb2d2402b24d1595e6739f Mon Sep 17 00:00:00 2001 From: Yifan Wu Date: Tue, 29 Nov 2022 10:33:55 +0800 Subject: [PATCH] in entry.asm: boot_stack->boot_stack_lower_bound --- os/src/entry.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/src/entry.asm b/os/src/entry.asm index a28dc8f..c32d68f 100644 --- a/os/src/entry.asm +++ b/os/src/entry.asm @@ -5,8 +5,8 @@ _start: call rust_main .section .bss.stack - .globl boot_stack -boot_stack: + .globl boot_stack_lower_bound +boot_stack_lower_bound: .space 4096 * 16 .globl boot_stack_top boot_stack_top: