
Bochs
lanseshenhua
这个作者很懒,什么都没留下…
展开
-
利用bochs完成《orange's一个人的操作系统》引导扇区的实验
一、安装nasm在终端里执行sudo apt-get install nasm(我用的是Ubuntu9.10)二、在某个文件夹(比如chapter1)中建立boot.asm文件,文件内容为:org 07c00h ; 告诉编译器程序加载到7c00处 mov ax, cs mov ds, ax mov es, ax call DispStr ; 调用显示字符原创 2010-04-16 14:16:00 · 2187 阅读 · 0 评论 -
在Ubuntu上使用Bochs
一、从官网下载bochs源代码,目前最新版为2.4.2http://bochs.sourceforge.net/getcurrent.html二、编译安装在编译之前应该执行以下命令:sudo apt-get install build-essentialsudo apt-get install xorg-devsudo apt-get install bisonsudo原创 2010-04-16 14:04:00 · 1919 阅读 · 0 评论