aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/boot/multiboot_header.asm
diff options
context:
space:
mode:
authorXander <xander@icth.xyz>2023-06-28 21:56:30 +0200
committerXander <xander@icth.xyz>2023-06-28 21:56:30 +0200
commit448ecd41edd95b86930b5ac7288f2ea9311d476c (patch)
tree64106ce37ea5c6067835ce747dd650a5e01a4c1e /arch/x86_64/boot/multiboot_header.asm
parentfd86b8a4769860f22fc04ce3b80510d809f68d3c (diff)
downloadats-os-448ecd41edd95b86930b5ac7288f2ea9311d476c.tar.xz
ats-os-448ecd41edd95b86930b5ac7288f2ea9311d476c.zip
Reorganizing
Diffstat (limited to 'arch/x86_64/boot/multiboot_header.asm')
-rw-r--r--arch/x86_64/boot/multiboot_header.asm15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/x86_64/boot/multiboot_header.asm b/arch/x86_64/boot/multiboot_header.asm
new file mode 100644
index 0000000..9a9289c
--- /dev/null
+++ b/arch/x86_64/boot/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: