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

implemented simple vm2
author cin
date Fri, 25 Oct 2013 15:52:16 +0400
parents 033ebe7432d5
children
comparison
equal deleted inserted replaced
1:033ebe7432d5 2:4aed85a1f558
1 using System; 1 using System;
2 2
3 namespace Jint.Runtime.VM2 3 namespace Jint.Runtime.VM2
4 { 4 {
5 using OpCodes;
5 public struct Instruction 6 public struct Instruction
6 { 7 {
7 public Codes code; 8 public Codes code;
8 public int dest; 9 public int dest;
9 public int[] args; 10 public int[] args;