aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/boot.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/boot.asm')
-rw-r--r--src/kernel/boot.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm
index 97e68f5..de5a386 100644
--- a/src/kernel/boot.asm
+++ b/src/kernel/boot.asm
@@ -54,7 +54,7 @@ copy_page_physical:
and edx, 0x7fffffff
mov cr0, edx
- mov edx, 1024
+ mov edx, 0x400
%include "src/kernel/gdt/gdt.asm"
@@ -68,5 +68,5 @@ copy_page_physical:
; Store the stack
SECTION .bss
- resb 8192 ; Reserve 8KiB
+ resb 0x2000 ; Reserve 8KiB
_sys_stack: \ No newline at end of file