view Jint.Runtime/VM2/Instruction.cs @ 2:4aed85a1f558

implemented simple vm2
author cin
date Fri, 25 Oct 2013 15:52:16 +0400
parents 033ebe7432d5
children
line wrap: on
line source

using System;

namespace Jint.Runtime.VM2
{
	using OpCodes;
	public struct Instruction
	{
		public Codes code;
		public int dest;
		public int[] args;
	}
}