Refractor: Moved each file to their respective folder.

This commit is contained in:
AfonsoCMSousa
2025-11-19 20:16:36 +00:00
parent 3bd026ca7a
commit 8f9ea8b71f
4 changed files with 1 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
; File: kernel.asm
; Assembly entry point for the kernel
[bits 64]
[extern kmain] ; kmain is defined in kernel.c
global _start ; Make _start visible to linker
_start:
; We're already in 64-bit mode with stack set up
; Just call the C kernel
call kmain
; If kmain returns, hang
jmp $