actually jump to 'kernel'

This commit is contained in:
andromeda
2026-03-03 15:57:17 +01:00
parent 8dee59b744
commit 31c486acda
4 changed files with 197 additions and 21 deletions

23
kernel.asm Normal file
View File

@@ -0,0 +1,23 @@
[bits 32]
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
jmp $
times 512-($-$$) db 0