4

我正在为自己编写一个引导程序和内核,引导程序和内核都将刻录在 CD-R 上,并将用作 CD-live。它不是 linux CD-Live 或其他东西,完全是我自己的引导程序和内核。我不想使用其他的加载程序(即 GRUB),所以请不要建议我使用它们。

这是我的问题:在我的引导加载程序 ASM 代码中,我想将我的内核和内核条目从 CD-ROM(而不是从硬盘或软盘)加载到 RAM 中,并假设我们知道内核的确切位置在CD-ROM(扇区号)。据我所知,我必须使用 int 0x13, AH = 02h 将扇区从驱动器读取到 RAM 中。为了使用这个中断服务,我必须设置几个寄存器,我将在下面列出: 参数:AH 02h AL Sectors To Read Count CX Track + Sector / See remark DH Head DL Drive ES:BX Buffer Address Pointer

我的问题是关于 DL 和 DH。为了指向要读取的第一个硬盘驱动器,我们可以将其设置为 80h,或者对于软盘,我们可以将其设置为 00h。但是我想从 CD-ROM 中读取,但我不知道我必须为 DH 和 DL 使用什么值。

为了从 CD-ROM 读取几个扇区到 RAM,它是一个正确的中断(int 0x13)吗?如果是,我应该为 DH 和 DL 赋予什么价值。

问候, 波利亚。

4

1 回答 1

9

要让 BIOS 从 CD 加载引导扇区,您需要使用“El Torito”标准使 CD 可引导。

一旦你使用它,你有两个选择
。模拟 - BIOS 模拟软盘或硬盘驱动器,您可以通过设备 00 或设备 80 的 INT13 调用来读取内核。
b.该设备不模拟,您可以使用 INT13 ExtendedRead 功能直接从 CD 读取。

要了解这是如何完成的,请查看 Linux “ISOLINUX”加载程序 - ISOLINUX.ASM

为了为您的问题提供更具体的起点,El Torito 规范,第 5.3 节:

Once the system jumps to segment:0, the program can retrieve its boot
information by issuing INT 13, Function 4B, AL=01.  After the boot process
has been initiated the INT 13 Extensions (functions 41-48) will access the
CD using 800 byte sectors and the LBA address provided to INT 13 is an
absolute sector number. This gives any program running in no emulation mode
the ability to locate the boot catalog, and any other information on the
CD, without providing a device driver.
于 2009-05-13T16:09:40.173 回答