mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 09:02:50 +00:00
Currently the vm is at a early stage and very limited: currently only supports static methods (instance methods support is nearly finished though) currently a class can't have member variables, so currently only local variables in the methods. Also in this branch, connecting the vm to opensim is not completely finished: it is being uploaded just for viewing purposes.
20 lines
445 B
C#
20 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Scripting.EmbeddedJVM
|
|
{
|
|
public class MethodMemory
|
|
{
|
|
public byte[] MethodBuffer;
|
|
public List<ClassRecord> Classes = new List<ClassRecord>();
|
|
public int NextMethodPC = 0;
|
|
public int Methodcount = 0;
|
|
|
|
public MethodMemory()
|
|
{
|
|
MethodBuffer = new byte[20000];
|
|
}
|
|
}
|
|
}
|