资源说明:操作系统开发
建筑
建筑物“第一阶段”
$ as boot0.asm -o boot0.out
$ ld boot0.out -o boot0.bin --oformat binary --Ttext 0x7c00
建筑物“第二阶段”
$ as boot1.asm -o boot1.out
$ ld boot1.out -o boot1.bin --oformat binary --Ttext 0x500 -e main
链接到“虚拟软盘”
$ cp boot0.bin boot.vfd
$ dd if=boot1.bin of=boot.vfd bs=512 count=1 seek=1
$ dd if=/dev/zero of=boot.vfd bs=512 count=2878 seek=2
--oformat binary为ELF以使用gdb进行调试时,
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。