org 07c00h ;
mov ax, cs
mov ds, ax
mov es, ax
call DispStr ;
jmp $
DispStr:
mov ax, BootMessage
mov bp, ax
mov cx, 16
mov ax, 01301h
mov bx, 00ch
mov dl, 0
int 10h
ret
BootMessage: db "Hello,OS world!"
times 510-($-$$) db 0
dw 0xaa55
nasm Boot.asm -o Boot.bin
dd if=Boot.bin of=Boot.img bs=512 count=1
dd if=/dev/zero of=diska.img bs=512 count=2880
dd if=diska.img of=Boot.img skip=1 seek=1 bs=512 count=2879
(seek=x从输出文件开头跳过x个扇区,skip=x从输入文件开头跳过x个扇区)
手机扫一扫
移动阅读更方便
你可能感兴趣的文章