aboutsummaryrefslogtreecommitdiff
path: root/kernel/boot/init/boot.s
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/boot/init/boot.s')
-rw-r--r--kernel/boot/init/boot.s6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/boot/init/boot.s b/kernel/boot/init/boot.s
index a1a6ee5..8a134c4 100644
--- a/kernel/boot/init/boot.s
+++ b/kernel/boot/init/boot.s
@@ -28,9 +28,9 @@
/*
Declare a multiboot header that marks the program as a kernel. These are magic
values that are documented in the multiboot standard. The bootloader will
- search for this signature in the first 8 KiB of the kernel file, aligned at a
+ search for this signature in the first 8KiB of the kernel file, aligned at a
32-bit boundary. The signature is in its own section so the header can be
- forced to be within the first 8 KiB of the kernel file.
+ forced to be within the first 8KiB of the kernel file.
*/
.section .multiboot
.align 4
@@ -53,7 +53,7 @@
.section .bss
.align 16
stack_bottom:
-.skip 16384 # 16 KiB
+.skip 16384 # 16KiB
stack_top:
/*