aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorMarvin Borner2021-02-28 19:45:41 +0100
committerMarvin Borner2021-02-28 19:45:41 +0100
commit21522ad5f2fe55e633cd025e292537ca37e042fb (patch)
treeef195992681c69818e21ba2dd66d90af0d049b6f /boot
parentd50d3aeaaeaca4a75a807759a54d1d6ae8b5bce4 (diff)
Kinda working paging
Diffstat (limited to 'boot')
-rw-r--r--boot/entry.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/entry.asm b/boot/entry.asm
index 7285fb8..f77c4e7 100644
--- a/boot/entry.asm
+++ b/boot/entry.asm
@@ -94,7 +94,7 @@
%define GDT_DATA_OFFSET 0x10 ; Offset to GDT data segment
; Kernel constants
-%define STACK_POINTER 0x00900000 ; The initial stack pointer in kernel mode
+%define STACK_POINTER 0x00500000 ; The initial stack pointer in kernel mode
%define KERNEL_POSITION 0x00040000 ; Loaded kernel position in protected mode (* 0x10)
; ENOUGH, let's go!