aboutsummaryrefslogtreecommitdiff
path: root/src/boot/boot.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/boot.S')
-rw-r--r--src/boot/boot.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/boot/boot.S b/src/boot/boot.S
index d90c4d8..5e4d82c 100644
--- a/src/boot/boot.S
+++ b/src/boot/boot.S
@@ -43,11 +43,11 @@ mb_header_end:
.section .text
.code32 # Require since grub do not enable long mode
-MB_INFO:
- .int 0xABCDEF # Will contains the Multiboot2 information data structure address
+MB_INFO: # Will contains the Multiboot2 information data structure address
+ .long 0x0
_start:
-mov %ebx,(MB_INFO)
+mov %ebx, (MB_INFO)
# Zeroing the .bss section
mov $_bss_start, %eax
mov $_bss_end, %ebx