操作系统第一课
org 07C00h ; 告诉编译器程序加载到07C00处 mov ax, cs mov ds, ax mov es, ax call DispStr ; 调用显示字符串例程 jmp $ ; 无限循环 DispStr: mov ax, BootMessage mov bp, ax ; es:bp = 串地址 mov cx, 16 ; cx = 串长度 mov ax, 01301h ; ah = 13, al = 01h mov bx, 000Ch ; 页号为0(bh = 0) 黑底红字 (bl = 0Ch,高亮) mov dl, 0 int10h ; 10h号中断 ret BootMessage: db "Hello,OS world! " times 510-($-$$) db 0 ; 填充剩下的空间,使生成的二进制代码恰好为512字节 dw 0xAA55 ; 结束标志