This commit is contained in:
mtgmonkey
2025-07-29 09:46:44 -04:00
commit 147702a8fa
14 changed files with 1020 additions and 0 deletions

15
asm/multiboot_header.asm Normal file
View File

@@ -0,0 +1,15 @@
section .multiboot_header
header_start:
dd 0xe85250d6 ; magic number multiboot 2
dd 0 ; magic number protected mode i386
dd header_end - header_start ; header length
; checksum
dd 0x100000000 - (0xe85250d6 + 0 + (header_end - header_start))
; multiboot tags
; end tag
dw 0 ; type
dw 0 ; flags
dd 8 ; size
header_end: