I'm fairly new to OS development (I started this Friday), and I've run into a problem with making an image file.
I understand how a simple "Hello world" bootloader work, and also made a clear screen function. (Both without using interrupts)
I should mention that I started reading BrokenThorn's tutorials yesterday, and got to tutorial 6 before having a problem.
I want to write a floppy disk image in the FAT12 file system, so that I can continue to follow BrokenThorn's tutorials.
The problem I'm having isn't really related to actually loading it (since I haven't got that far yet).
I know that the problem with my current approach is that PowerISO is writing the FAT12 bootsector to the image. How do I avoid that?
When I at first only had a bootsector, it was all fine - because it's just those 512 bytes that the BIOS reads.
Now I also have a second bootloader (or mini asm kernel), so that won't work anymore.
I then tried to search this forum and Google on how to do it. (The forum archive here is huge, so it'll be a big help I bet!)
I'm testing if it works with the binaries downloaded from the tutorial.
When I've got that working, I'm going to start on my own implementation. I don't want to start writing something I can't test.

Thanks in advance!