reorganise

This commit is contained in:
andromeda
2026-03-03 18:18:57 +01:00
parent ab30c23600
commit d879df630f
4 changed files with 4 additions and 4 deletions

23
asm/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