initial commit

This commit is contained in:
2025-03-21 19:55:17 -07:00
commit 92049a5736
15 changed files with 96 additions and 0 deletions

7
entry.s Normal file
View File

@@ -0,0 +1,7 @@
.section .text
.globl _start # Declare _start as global
.extern kmain # Declare the external C function
_start:
call kmain # Call the C kernel entry point
hlt # Halt if kmain returns