I made a simple bootloader with nasm (that works).. my second program also compiled with nasm should be started from the bootloader... but I don't know how to do that... any ideas?
Here my websitehere. You probably see two textareas, the upper textarea is the bootloader, the second should be the second program started from the bootloader(but which I can't get it to work). Then you should push the 'make iso' button. Then in php I use the command:
$op=system("genisoimage -b prog".$getal.".img -no-emul-boot -boot-load-size 4 -o prog".$getal.".iso /var/www/html/boot/ >> ".$getal."2.txt 2>&1 ",$back);
This makes an iso file, which burns the first program/bootloader on dvd in the bootsector(512)..this works, but now how to run the second program.
Any ideas?