diff options
| author | andromeda <andromeda@lenovo> | 2026-03-06 20:33:51 +0100 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-03-06 20:33:51 +0100 |
| commit | 9c65697dd8119ec9cee13f57f870b07e305d27ec (patch) | |
| tree | 27b61bd7a27df6e25db8b21dc0ee3daed01d79fb /bootler/asm/kernel.asm | |
| parent | fdf5bb9daf8574b7f993e2e38e400c35aedc3b96 (diff) | |
bunch of stuff idek
Diffstat (limited to 'bootler/asm/kernel.asm')
| -rw-r--r-- | bootler/asm/kernel.asm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/bootler/asm/kernel.asm b/bootler/asm/kernel.asm new file mode 100644 index 0000000..b4cbb30 --- /dev/null +++ b/bootler/asm/kernel.asm @@ -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 |
