Files
Pegasys-RomWBW/Source/Prop/Build.cmd
Wayne Warthen 1e5b38c251 PS2INFO Update & OpenSpin Conversion
- Added support for Duodyne to PS2INFO application.
- Switched all build paths to consistently use OpenSpin since it appears to be compatible with all build environments supported by RomWBW.
2023-10-23 18:07:42 -07:00

20 lines
311 B
Batchfile

@echo off
setlocal
set TOOLS=../../Tools
set PATH=%TOOLS%\OpenSpin;%PATH%
call :openspin PropIO
call :openspin PropIO2
call :openspin ParPortProp
goto :eof
:openspin
echo.
echo Building %1...
openspin -e Spin\%1.spin || exit /b
move /Y Spin\%1.eeprom "..\..\Binary" || exit /b
goto :eof