partcopy help
Posted: Tue Aug 06, 2002 9:04 pm
I was looking at the Bona Fide OS Development website on how to copy a bootsector to a floppy. IT shows you how to copy your bootsector to a floppy disk without losing the dos boot record.
I want to know how to add the kernel to my floppy after I do this with partcopy.
add to bootsector:
jmp short begin
nop
times 0x3B db 0
begin:
times 510-($-$$) db 0
dw 0xAA55
copy to floppy:
partcopy boot.bin 0 3 -f0
partcopy boot.bin 3e lc2 -f0 3e
How to add the kernel to the disk using partcopy and this method?
I want to know how to add the kernel to my floppy after I do this with partcopy.
add to bootsector:
jmp short begin
nop
times 0x3B db 0
begin:
times 510-($-$$) db 0
dw 0xAA55
copy to floppy:
partcopy boot.bin 0 3 -f0
partcopy boot.bin 3e lc2 -f0 3e
How to add the kernel to the disk using partcopy and this method?