Advance on bootloader: load cluster data
This commit is contained in:
parent
c51dca9949
commit
76880e9275
3 changed files with 87 additions and 10 deletions
14
kernel.asm
Normal file
14
kernel.asm
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue