Files
picovga-RGsB/_boot2/_c1.bat
2021-06-10 19:07:49 +02:00

19 lines
262 B
Batchfile

@echo off
rem Compilation...
if "%1" == "" goto end
make all TARGET=%1
if errorlevel 1 goto err
if not exist %1.bin goto err
boot2crc\boot2crc.exe %1.bin > %1_bin.S
if errorlevel 1 goto err
echo.
type %1.siz
goto end
:err
pause ERROR!
:end