44 lines
966 B
Batchfile
44 lines
966 B
Batchfile
del blend.exe
|
|
del "..\winuae\hd0\blend.exe"
|
|
|
|
@if X%VBCC%==X%~dp0 goto AlreadySet
|
|
@set VBCC=%~dp0
|
|
@set PATH=%VBCC%\..\tools;%PATH%
|
|
:AlreadySet
|
|
|
|
copy "..\tools\vc.cfg" %~dp0
|
|
|
|
pushd ..
|
|
|
|
tools\KingCon.exe @data/blend/assets.txt
|
|
@if %ERRORLEVEL% NEQ 0 goto failed
|
|
|
|
tools\juggler data/blend/juggle.txt
|
|
@if %ERRORLEVEL% NEQ 0 goto failed
|
|
|
|
tools\LSPConvert.exe data\music\dsr_68k_tune_2_v11.mod -setpos -v
|
|
@if %ERRORLEVEL% NEQ 0 goto failed
|
|
|
|
popd
|
|
|
|
vc -O2 -notmpfile -nostdlib -o "blend.exe" "blend.asm"
|
|
@if %ERRORLEVEL% NEQ 0 goto failed
|
|
|
|
copy blend.exe "..\winuae\hd0"
|
|
copy blend.exe "..\winuae\hd0\a"
|
|
|
|
@echo /|set /p =blend.exe>"..\winuae\hd0\s\startup-sequence"
|
|
|
|
"..\winuae\winuae64" -config="configs\a500_hrt_more_mem.uae" -log -s use_gui=no -s filesystem2=rw,hd0:test:%~dp0\..\winuae\hd0,0
|
|
|
|
del vc.cfg
|
|
@goto ok
|
|
|
|
rem ############ ERROR HANDLER ############
|
|
:failed
|
|
@echo error in directory "%CD%"
|
|
@echo !!!!!!!!! oh no !!!!!!!!!!!!
|
|
@pause
|
|
del vc.cfg
|
|
:ok
|