20 lines
564 B
Batchfile
20 lines
564 B
Batchfile
@rem COPY ROM TO EMULATOR
|
|
@rem
|
|
@echo -------------------------------------------------------[Copy to emul start]
|
|
@mkdir SPRINTER
|
|
@copy Build\_SPRIN.BIN SPRINTER\SP_304.BIN
|
|
@if errorlevel 1 goto error
|
|
@"C:\Program Files\7-Zip\7z.exe" a "Shared_Includes\Hide\Emulators\ZXMAK2\ROMS.PAK" SPRINTER\SP_304.BIN
|
|
@if errorlevel 1 goto error
|
|
@del SPRINTER\SP_304.BIN
|
|
@rmdir SPRINTER
|
|
|
|
@goto quit
|
|
|
|
:error
|
|
@echo ERROR during copying to emulator
|
|
@pause 0
|
|
@exit 3
|
|
|
|
:quit
|
|
@echo -------------------------------------------------------[Copy to emul done] |