add kernel stub to distfiles

this way i can test if the bootloader works as intended
This commit is contained in:
Nero 2020-03-25 20:56:00 +00:00
parent 398395371b
commit c51dca9949
2 changed files with 19 additions and 9 deletions

14
rdos86.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