Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/custom/run_abcexport.bat
Jindra Petřík 98c2b1eba9 AS3 p-code more RAbcDasm like
- get/setlocal_x renamed to get/setlocalx
- QName casing changed from Qname

Better increment/decrement detection, chained assignments.
2021-02-08 20:15:19 +01:00

13 lines
258 B
Batchfile

@echo off
set RABCDASM_PATH=c:\RABCDasm
rd /s /q .\abc
%RABCDASM_PATH%\abcexport.exe .\bin\custom.swf
mkdir .\abc
move .\bin\*.abc abc\>NUL
set ABC_DIR=.\abc
for /F %%x in ('dir /B/D %ABC_DIR%') do (
%RABCDASM_PATH%\rabcdasm.exe %ABC_DIR%\%%x
)
pause