How do I write a bin file (512 bytes) to the first sector (sector 0) of a floppy disk?
If you are on Linux you can do it with DD utility. There is a version of DD for Microsoft Windows as well. General DD usage If you wish to make a zero filled virtual disk image the size of a 720K floppy you can use dd like this: dd if=/dev/zero of=disk.img bs=1024 count=720 This … Read more