遵循大量“如何构建自己的操作系统”教程,
我应该通过以下方式编写自定义加载程序到软盘引导扇区
#include <sys/types.h> /* unistd.h needs this */
#include <unistd.h> /* contains read/write */
#include <fcntl.h>
int main()
{
char boot_buf[512];
int floppy_desc, file_desc;
file_desc = open("./boot", O_RDONLY);
read(file_desc, boot_buf, 510);
close(file_desc);
boot_buf[510] = 0x55;
boot_buf[511] = 0xaa;
floppy_desc = open("/dev/fd0", O_RDWR);
lseek(floppy_desc, 0, SEEK_CUR);
write(floppy_desc, boot_buf, 512);
close(floppy_desc);
}
我没有带软驱的 PC,我更喜欢通过 VirtualBox 在虚拟机上尝试整个项目。
那么如何将自定义引导扇区写入将由我的虚拟机调用的虚拟 CD 映像?:)
如果您有任何替代方法,请提出建议:)