This repository has been archived on 2026-03-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-02-27 22:22:48 +02:00

20 lines
215 B
NASM

[org 0x1000]
bits 16
start:
mov si, message
.print:
lodsb
cmp al, 0
je .hang
mov ah, 0x0E
int 0x10
jmp .print
.hang:
hlt
jmp .hang
message db "Kernel loaded successfully!", 0