mirror of
https://github.com/Tolik-Trek/FORMAT.git
synced 2026-06-15 09:21:40 +03:00
23 lines
303 B
Batchfile
Executable File
23 lines
303 B
Batchfile
Executable File
@echo off
|
|
if EXIST format.exe (
|
|
del format.exe
|
|
)
|
|
if EXIST format.lst (
|
|
del format.lst
|
|
)
|
|
|
|
REM ..\..\asm\build.exe
|
|
..\..\asm\sjasmplus.exe format.asm --lst=format.lst
|
|
if errorlevel 1 goto ERR
|
|
echo Ok!
|
|
goto END
|
|
|
|
:ERR
|
|
del format.exe
|
|
del format.lst
|
|
pause
|
|
echo ERROR...
|
|
goto END
|
|
|
|
:END
|