aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/boot.asm
diff options
context:
space:
mode:
authorMarvin Borner2020-04-17 14:31:30 +0200
committerMarvin Borner2020-04-17 14:31:30 +0200
commit1d763a07224504b645aea2f42699722ad0030cfb (patch)
treeac62ccef9f8df588125ed51fa4e88b727821b023 /src/kernel/boot.asm
parent203c6950ab45e89ababa594d5b359118e17bfd02 (diff)
OMG I feel very dumb now...
I forgot to actually pass the address to the parser! Why tf doesn't GCC tell me that? :D
Diffstat (limited to 'src/kernel/boot.asm')
-rw-r--r--src/kernel/boot.asm16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm
index 9086dbd..5ce6014 100644
--- a/src/kernel/boot.asm
+++ b/src/kernel/boot.asm
@@ -4,21 +4,21 @@ section .multiboot
dd 0
dd header_end - header_start
dd 0x100000000 - (0xe85250d6 + 0 + (header_end - header_start))
- mb2_tag_info_start:
+
+ ; Information tag (force)
+ align 8
dw 1
- dw 0 ; Non-optional
- dd mb2_tag_info_end - mb2_tag_info_start
- dd 1
+ dw 0
+ dd 20
dd 2
dd 4
dd 6
- mb2_tag_info_end:
+
+ ; Empty tag
align 8
- mb2_tag_end_start:
dw 0
dw 0
- dd mb2_tag_end_end - mb2_tag_end_start
- mb2_tag_end_end:
+ dd 8
header_end:
section .start_section