File size: 397 Bytes
94f6f0e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | @echo off
title CustomMBR Image
color 0a
:Chek
rename Image\*.png Custom.png
if exist disk.img goto QEMU
if exist Image\Custom.bin del Image\Custom.bin
cls
:Start
Programs\png2bin.exe Image\Custom.png Image\Custom.bin
Programs\compress.exe Image\Custom.bin Image\Custom.bin
Programs\nasm -o disk.img Data\kernel.asm
goto QEMU
:QEMU
pause
Programs\QEMU\qemu -s -soundhw pcspk -fda disk.img
exit |