From 107bcedf90d0815456127d7c7010415458bbdeb0 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Thu, 16 Nov 2023 21:32:05 +0100 Subject: [PATCH] Fix boot.S compilation --- arch/x86/boot/boot.S | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/arch/x86/boot/boot.S b/arch/x86/boot/boot.S index 4a50200..e63dc0d 100644 --- a/arch/x86/boot/boot.S +++ b/arch/x86/boot/boot.S @@ -118,6 +118,8 @@ This is useful when debugging or when you implement call tracing. */ .size _start, . - _start .global _stack_bottom -_stack_bottom: stack_bottom -.global _stack_stop -_stack_stop: stack_top +_stack_bottom: + .long stack_bottom +.global _stack_top +_stack_top: + .long stack_top