-
Notifications
You must be signed in to change notification settings - Fork 0
/
unlock.bat
53 lines (41 loc) · 1.04 KB
/
unlock.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
@echo off
if exist testenv\locker.exe goto SKIPBUILD
cd testenv
tasm locker.asm
tlink locker
cd ..
:SKIPBUILD
testenv\locker.exe %1.bin %1.asm %2
cd testdata\bin
..\..\testenv\locker.exe %101.bin %101.tmp %2
copy %101.tmp ..\in\%101
del /Q %101.tmp
..\..\testenv\locker.exe %102.bin %102.tmp %2
copy %102.tmp ..\in\%102
del /Q %102.tmp
..\..\testenv\locker.exe %103.bin %103.tmp %2
copy %103.tmp ..\in\%103
del /Q %103.tmp
..\..\testenv\locker.exe %104.bin %104.tmp %2
copy %104.tmp ..\in\%104
del /Q %104.tmp
..\..\testenv\locker.exe %105.bin %105.tmp %2
copy %105.tmp ..\in\%105
del /Q %105.tmp
cd ..\bok
..\..\testenv\locker.exe %101.bin %101.tmp %2
copy %101.tmp ..\ok\%101
del /Q %101.tmp
..\..\testenv\locker.exe %102.bin %102.tmp %2
copy %102.tmp ..\ok\%102
del /Q %102.tmp
..\..\testenv\locker.exe %103.bin %103.tmp %2
copy %103.tmp ..\ok\%103
del /Q %103.tmp
..\..\testenv\locker.exe %104.bin %104.tmp %2
copy %104.tmp ..\ok\%104
del /Q %104.tmp
..\..\testenv\locker.exe %105.bin %105.tmp %2
copy %105.tmp ..\ok\%105
del /Q %105.tmp
cd ..\..\