Skript zur automatischen erzeugung von asm Dateien aus bestehenden .pars

This commit is contained in:
2025-06-30 11:14:17 +02:00
parent 190b17f2e0
commit a3e2905ac4
7 changed files with 138 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
@echo off
REM ~dp0 steht für das Verzeichnis, in der diese Datei liegt
call setenv.bat
REM Beispielaufruf mit Parametern:
REM --in: Ordner mit .par-Dateien
REM --out: Zielverzeichnis (optional)
python %PROJECT_LIB%\create_assemblies.py %*
+4
View File
@@ -0,0 +1,4 @@
@echo off
call setenv.bat
start
+13
View File
@@ -0,0 +1,13 @@
@echo off
REM ~dp0 steht für das Verzeichnis, in der diese Datei liegt
pushd %~dp0\..
set PROJECT_DIR=%cd%
set PROJECT_LIB=%PROJECT_DIR%\lib
set PROJECT_WORK=%PROJECT_DIR%\work
set PROJECT_DATA=%PROJECT_DIR%\data
set PROJECT_INPUT=%PROJECT_DIR%\input
popd
goto :eof