reorganise

This commit is contained in:
andromeda
2026-03-06 16:53:18 +01:00
parent fdf5bb9daf
commit d35463e195
17 changed files with 89 additions and 95 deletions

23
bootler/asm/kernel.asm Normal file
View File

@@ -0,0 +1,23 @@
[bits 64]
mov al, 'K'
out dx, al
mov al, 'e'
out dx, al
mov al, 'r'
out dx, al
mov al, 'n'
out dx, al
mov al, 'e'
out dx, al
mov al, 'l'
out dx, al
mov al, 0x0D
out dx, al
mov al, 0x0A
out dx, al
mov al, 0x00
out dx, al
.done
hlt
jmp .done