mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
- 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.
20 lines
311 B
Batchfile
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
|