summaryrefslogtreecommitdiff
path: root/asm/src/arch/x86_64/multiboot_header.asm
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2018-09-24 23:23:19 +0200
committerDaniel Weipert <code@drogueronin.de>2018-09-24 23:23:19 +0200
commit87293b0a1150b1bc7467f6916419f56f9f2be075 (patch)
treec254231193037001f6875286d80b13250e47b9f7 /asm/src/arch/x86_64/multiboot_header.asm
Initial commit
Diffstat (limited to 'asm/src/arch/x86_64/multiboot_header.asm')
-rw-r--r--asm/src/arch/x86_64/multiboot_header.asm15
1 files changed, 15 insertions, 0 deletions
diff --git a/asm/src/arch/x86_64/multiboot_header.asm b/asm/src/arch/x86_64/multiboot_header.asm
new file mode 100644
index 0000000..9a9289c
--- /dev/null
+++ b/asm/src/arch/x86_64/multiboot_header.asm
@@ -0,0 +1,15 @@
+section .multiboot_header
+header_start:
+ dd 0xe85250d6 ; magic number (multiboot 2)
+ dd 0 ; architecture 0 (protected mode i386)
+ dd header_end - header_start ; header length
+ ; checksum
+ dd 0x100000000 - (0xe85250d6 + 0 + (header_end - header_start))
+
+ ; insert optional multiboot tags here
+
+ ; required end tag
+ dw 0 ; type
+ dw 0 ; flags
+ dd 8 ; size
+header_end: