first commit

This commit is contained in:
Hjin-Linux
2026-03-04 17:54:26 +02:00
commit cf12e44902
16 changed files with 201 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