0

So, I have compiled an ASM boot program like this :

nasm -f bin -o bootsect bootsect.asm

And now I need to run the next UNIX command to generate a floppy image from the output, but i'm using MS Windows...

cat bootsect /dev/zero | dd of=floppyA bs=512 count=2880

Does someone know how can I do the equivalent in the Windows' cmd ?

Maxime R.
  • 133
  • 1
  • 9

1 Answers1

1

There is a port of Unix dd to the Win32 environment. Or you could use rawwrite. Both are available for download at http://www.chrysocome.net.

Ansgar Wiechers
  • 193,178
  • 25
  • 254
  • 328
Corwin
  • 645
  • 1
  • 9
  • 17