mirror of
https://github.com/opensim/opensim.git
synced 2026-06-07 12:08:48 +08:00
40 lines
734 B
C#
40 lines
734 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace libLSL
|
|
{
|
|
class lslByteCode
|
|
{
|
|
byte[] bytecode;
|
|
|
|
public void executeStep()
|
|
{
|
|
byte ins = nextInstruction();
|
|
lslOpcodes code = (lslOpcodes)ins;
|
|
|
|
switch (code)
|
|
{
|
|
case lslOpcodes.OP_NOOP:
|
|
break;
|
|
case lslOpcodes.OP_POP:
|
|
popBytes(4);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
byte nextInstruction()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void popBytes(int num)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|