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 ?