Advance on bootloader: load cluster data

This commit is contained in:
Nero 2020-03-25 21:19:40 +00:00
parent c51dca9949
commit 76880e9275
3 changed files with 87 additions and 10 deletions

14
kernel.asm Normal file
View file

@ -0,0 +1,14 @@
org 0x7C00
main: mov si, msg
mov ah, 0x0e
xor bx, bx
loop: lodsb
test al, al
jz end
int 0x10
jmp loop
end: hlt
jmp end
msg: db "rdos kernel stub", 0x0A, 0x0D, 0