diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-24 10:09:43 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2021-04-24 10:09:43 +0200 |
| commit | 657372f1be95393b76a54f258ba3f937b4073abe (patch) | |
| tree | 18aa2cb9b7f3e4d38a5208d9db2811f6af46fa61 /src/boot/boot.S | |
| parent | 99019721a9e147c49becc466c5427609b937aca8 (diff) | |
New paging manager and multiboot2 tools
Diffstat (limited to 'src/boot/boot.S')
| -rw-r--r-- | src/boot/boot.S | 6 |
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 |
