BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / e07c7c5065fd619e18a774d172075aa95d1e2d8b / kernel / start.S

// Related

Nucleus

Barry Send APIC end of interrupt e07c7c5 (3 years, 3 months ago)
diff --git a/kernel/start.S b/kernel/start.S
index 9c49ee8..725d6e6 100644
--- a/kernel/start.S
+++ b/kernel/start.S
@@ -8,15 +8,16 @@ header:
 	.long 0, 0, 0, 0, 0
 
 .section .bss, "aw", @nobits
-stack_bottom:
+.global stackTop
+stackBottom:
 	.skip 16384
-stack_top:
+stackTop:
 
 .section .text
 .extern kmain
 .global _start
 _start:
-	mov $stack_top, %ebp
+	mov $stackTop, %ebp
 	mov %ebp, %esp
 	push %ebx
 	push %esp