Bootable floppy in Mac
Bootable floppy in Mac
How can I make a virtual floppy image and copy my bootloader in the first sector in Mac?
-
- Member
- Posts: 199
- Joined: Fri Jul 13, 2007 6:37 am
- Location: Stuttgart/Germany
- Contact:
You should create an empty file with the exact size of sectors that your real floppy would have, i.e. the file size should be:
sectors_on_disk * sectorsize
then you copy you 512 byte-boot sector right at the start of this file and then you can use this file as a virtual floppy
with dd you can do just that
sectors_on_disk * sectorsize
then you copy you 512 byte-boot sector right at the start of this file and then you can use this file as a virtual floppy
with dd you can do just that