aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/boot.asm
diff options
context:
space:
mode:
authorMarvin Borner2020-04-28 18:32:36 +0200
committerMarvin Borner2020-04-28 18:32:36 +0200
commit4b8518b4e791c68154ec52badcc921b62afafb49 (patch)
tree9c855266cf7451f503bf3cb849e63ac72ae48e74 /src/kernel/boot.asm
parent46007d2598b7aef13895b21669cfb6f24272e5fe (diff)
Maaaany fixes...
Sorry for the increasingly worse-getting commit messages :D
Diffstat (limited to 'src/kernel/boot.asm')
-rw-r--r--src/kernel/boot.asm17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm
index 363f76a..cc9c674 100644
--- a/src/kernel/boot.asm
+++ b/src/kernel/boot.asm
@@ -26,20 +26,19 @@ section .start_section
dd _start
; Initialize stack
-section .bss
- align 16
- global STACK_BOTTOM
- global STACK_TOP
-
- STACK_BOTTOM:
- resb 0x4000
- STACK_TOP:
+;section .bss
+; align 16
+;
+; STACK_BOTTOM:
+; resb 0x4000
+; STACK_TOP:
section .text
global _start
extern kernel_main
_start:
- mov esp, STACK_TOP
+ ;mov esp, STACK_TOP
+ push esp
push ebx
push eax
cli