摘要: 1 org 0x7c00 ;告诉编译器程序加载到0x7c00位置 2 mov ax,cs 3 mov ds,ax 4 mov es,ax 5 Call DisPlayStr ;调用字符串显示例程 6 jmp $ ;无限循环 7 DisPlayStr: 8 mov ax,BootMessage 9 mov bp,ax ;es:bp = 串地址10 mov cx,16 ;cx = 长度11 mov ax,0130... 阅读全文
posted @ 2013-06-24 14:09 nXqaL 阅读(213) 评论(0) 推荐(0) 编辑