Chinaunix首页 | 论坛 | 博客
  • 博客访问: 48574
  • 博文数量: 29
  • 博客积分: 718
  • 博客等级: 上士
  • 技术积分: 320
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-15 20:11
文章分类

全部博文(29)

文章存档

2011年(29)

分类:

2011-05-08 14:33:50

本实验是在Red Hat 5.4下进行的,使用 的是虚拟机是Bochs x86 Emulator 2.4.5,使用gcc-4.1.2-46编译

    1、使用AT&T编写一个引导代码 boot.S

.globl main
.code16
BOOTSET=0x07c0  #bios加载引导程序的内存段
main:ljmp $BOOTSET,$go
go:     mov  %cs,%ax#初使化es,ds
        mov  %ax,%es
        mov  %ax,%ds

        mov $0x03,%ah #获得光标位置
        xor %bh,%bh
        int $0x10

        mov $13,%cx   #显示Loading...
        mov $0x000c,%bx
        mov $msg,%bp
        mov $0x1301,%ax
        int $0x10
loopo:  jmp loopo
msg:.ascii  "Loading ..."
    .byte  13,10
.org  510
        .word  0xaa55

   2、编写Makefile文件

diskfile=/root/myworkspace/diska.img #生成的镜像文件位置
#生成镜像
#创建一个软盘镜像,把生成的引导代码copy入软盘
createdisk.img:boot
        dd  if=/dev/zero of=$(diskfile) bs=512 count=2880
        dd bs=512 if=boot of=$(diskfile) conv=notrunc
#生成无格式的二进制文件
boot:boot.o
        ld --oformat binary -s -e main -Ttext 0x0 -o boot  boot.o
boot.o:boot.S
        cc -c  boot.S
#启动bochs /root/dd 是一个bochs 配置文件,使用bochs 创建,注意创建的软盘镜像要与
diskfile一致
start:createdisk.img
        bochs -f /root/dd
clean:
        rm $(diskfile) boot  boot.o
       3、make  start启动bochs 如下图

阅读(770) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~