aboutsummaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-04-09 10:29:23 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-04-09 10:29:23 +0200
commitf6323421e22c3585c58b54658a11e1e4706cc8fa (patch)
treef317b7129dc4350fd088b59a43c1b6e80cd5c39b /src/boot
parent8fee35522dee033863f68c1d2b45f5fe988de9eb (diff)
Cleaning code and provide minimal libc
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/boot.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/boot.S b/src/boot/boot.S
index 469cc82..77b04c0 100644
--- a/src/boot/boot.S
+++ b/src/boot/boot.S
@@ -44,7 +44,7 @@ MB_INFO:
.int 0xABCDEF # Will contains the Multiboot2 information data structure address
_start:
-mov %ebx, (MB_INFO)
+mov %ebx, (MB_INFO) # Store Bootloader informations address
# Copy GDT into memory then load its register
call gdt_memcpy