Initial bootloader and kernel loader

This commit is contained in:
Hjin-BF
2026-02-27 22:22:48 +02:00
parent cb85514593
commit d069fc23bd
7 changed files with 160 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
.section .multiboot
.align 4
.long 0x1BADB002
.long 0x0
.long -(0x1BADB002)
.section .text
.global _start
.type _start, @function
_start:
cli
call kernel_main
.hang:
hlt
jmp .hang