引导硬盘访问
我正在尝试编写一个引导加载程序以获取乐趣,我一直在使用诸如以下的指南:
http://www.omninerd.com/articles/PC_Bootstrap_Loader_Programming_Tutorial_in_ASM
http://hem .passagen.se/danma/nboot.htm
http://en.skelix. org/skelixos/tutorial01.php
我能够成功地从软盘复制扇区,但是当我尝试访问硬盘时,除了重置之外,所有 int 13 函数都返回了错误代码。重置磁盘不会返回错误。
在 int 13 对硬盘起作用之前我必须做一些特殊的事情吗?
I'm trying to write a bootstrap loader for the fun of it, I've been using guides such as:
http://www.omninerd.com/articles/PC_Bootstrap_Loader_Programming_Tutorial_in_ASM
http://hem.passagen.se/danma/nboot.htm
http://en.skelix.org/skelixos/tutorial01.php
I'm able to successfully copy over sectors from a floppy disk but when I try to access a harddisk I'm returned an error code from all int 13 functions other than reset. reset disk doesn't return an error.
Is there something special I have to do before int 13 works for hard disks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知。你见过http://gaztek.sourceforge.net/osdev/boot/index.html ?其中有一个示例列表,其中至少有一个声称正在从“C:\”(可能是 DOS 格式的硬盘)读取文件
Not that I'm aware of. Have you seen http://gaztek.sourceforge.net/osdev/boot/index.html ? That has a list of examples, at least one of which claims to be reading a file from "C:\" (presumably a DOS-formatted harddisk)