aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/boot.asm
diff options
context:
space:
mode:
authorMarvin Borner2019-11-20 22:17:48 +0100
committerMarvin Borner2019-11-20 22:28:30 +0100
commit0ba991750314310a5e53b0d8135aef5b1352b261 (patch)
treeacae7106a24b85116cd7119bd239c3d9299f2ba8 /src/kernel/boot.asm
parent6ca5f1bcec7f0716bad5e1cdd38d41be137fe7e5 (diff)
Began two-stage hdd bootloader and os installer
Diffstat (limited to 'src/kernel/boot.asm')
-rw-r--r--src/kernel/boot.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm
index b1f6018..9b4ddc7 100644
--- a/src/kernel/boot.asm
+++ b/src/kernel/boot.asm
@@ -18,7 +18,7 @@ section .text
mov esp, STACK_TOP
push ebx
push eax
-
+ cli
call kernel_main
cli