BarryServer : Git

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

// Related

Nucleus

Barry Interrupt handlers b33d632 (3 years, 3 months ago)
diff --git a/kernel/000.S b/kernel/000.S
index 1ae6600..9c49ee8 100644
--- a/kernel/000.S
+++ b/kernel/000.S
@@ -7,7 +7,7 @@ header:
 
 	.long 0, 0, 0, 0, 0
 
-.section .bss
+.section .bss, "aw", @nobits
 stack_bottom:
 	.skip 16384
 stack_top:
@@ -16,7 +16,7 @@ stack_top:
 .extern kmain
 .global _start
 _start:
-	mov stack_top, %ebp
+	mov $stack_top, %ebp
 	mov %ebp, %esp
 	push %ebx
 	push %esp