-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recompile all scripts and add changelogs
- Loading branch information
1 parent
bd7288d
commit 6314553
Showing
36 changed files
with
586 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,3 @@ for /f "tokens=* delims=" %%I in ('dir *.int /b') do ( | |
|
||
echo Done! | ||
pause | ||
cls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@ECHO OFF | ||
|
||
set int2ssl=%CD%\bin\int2ssl.exe | ||
|
||
cd ..\root\data\scripts | ||
mkdir _dump | ||
|
||
for /f "tokens=* delims=" %%I in ('dir *.int /b') do ( | ||
%int2ssl% -d "%%I" | ||
move /Y %%~nI.dump _dump\ | ||
) | ||
|
||
echo Done! | ||
pause |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export variable wtf; | ||
|
||
procedure start begin | ||
variable k := "a"; | ||
wtf := temp_array(-1, 0); | ||
wtf[k] := 1; | ||
display_msg(wtf[k]); | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
procedure test(variable x) begin | ||
return x*x; | ||
end | ||
|
||
|
||
procedure start begin | ||
variable k, a, arr2; | ||
arr2 := 111; | ||
foreach k in (arr2) | ||
if (k) then arr2[k] := 1; | ||
for k := 0; k < 2; k++; | ||
display_msg(1); | ||
|
||
foreach (k in arr2) if (k) then arr2[k] := 1; | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
procedure procedure1; | ||
procedure procedure2; | ||
|
||
variable procName; | ||
|
||
procedure procedure1 begin | ||
display_msg("yeees!"+procedure2+procedure1); | ||
end | ||
|
||
procedure procedure2 begin | ||
display_msg("double yes 121233!"+procedure2+procedure1); | ||
end | ||
|
||
procedure start begin | ||
variable localempty := "";// @procedure1; | ||
variable localNotEmpty := "noooot"; | ||
//localNotEmpty := "noooot"; | ||
//call procedure1; | ||
//call @procedure1; | ||
//call "procedure1"; | ||
//call procName; | ||
display_msg("No?" + localempty + localNotEmpty); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
procedure my_proc begin | ||
display_msg("my_proc called"); | ||
|
||
|
||
variable cond; | ||
|
||
procedure my_proc1(variable arg) when cond begin | ||
display_msg("my_proc1 called: "+arg+", cond: "+cond+"; "); | ||
end | ||
|
||
procedure descProc begin | ||
variable arg := get_sfall_arg; | ||
if (arg == dude_obj) then cond := not cond; | ||
call my_proc1(arg); | ||
end | ||
|
||
procedure start begin | ||
variable n; | ||
variable procName; | ||
call my_proc; | ||
n := dude_obj; | ||
//call my_proc1(1); | ||
//call "my_proc1"(2); | ||
//procName := @my_proc1; | ||
//call procName(3); | ||
n := dude_obj != 0; | ||
procName := "my_"+"proc"+n; | ||
call procName; | ||
end | ||
call procName(4); | ||
|
||
register_hook_proc(34, descProc); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.