aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_OPCODES.cs
diff options
context:
space:
mode:
authorTedd Hansen2007-08-10 16:22:20 +0000
committerTedd Hansen2007-08-10 16:22:20 +0000
commit8b17e4da10c6d5cb371909ec1d79c35c0ff55f8d (patch)
tree3ac6e0e15ed5c54db3a7a89bc96286ba6b784a76 /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_OPCODES.cs
parentRemoved a piece of debug code (diff)
downloadopensim-SC_OLD-8b17e4da10c6d5cb371909ec1d79c35c0ff55f8d.zip
opensim-SC_OLD-8b17e4da10c6d5cb371909ec1d79c35c0ff55f8d.tar.gz
opensim-SC_OLD-8b17e4da10c6d5cb371909ec1d79c35c0ff55f8d.tar.bz2
opensim-SC_OLD-8b17e4da10c6d5cb371909ec1d79c35c0ff55f8d.tar.xz
Renamed Compiler.LSL to Compiler.LSO
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_OPCODES.cs (renamed from OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass_OPCODES.cs)12
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass_OPCODES.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_OPCODES.cs
index b771678..e55f28d 100644
--- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass_OPCODES.cs
+++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_OPCODES.cs
@@ -2,11 +2,19 @@ using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4 4
5namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL 5namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSO
6{ 6{
7 public partial class LSL_BaseClass 7 public partial class LSL_BaseClass
8 { 8 {
9 9 /*
10 * OPCODES
11 *
12 * These are internal "assembly" commands,
13 * basic operators like "ADD", "PUSH" and "POP"
14 *
15 * It also contains managed stack and keeps track of internal variables, etc.
16 *
17 */
10 18
11 19
12 public void StoreToLocal(UInt32 index) 20 public void StoreToLocal(UInt32 index)