示例#1
0
文件: Instruction.cs 项目: Rohansi/VM
 protected Instruction()
 {
     Type = Instructions.None;
     Left = null;
     Right = null;
 }
示例#2
0
文件: Instruction.cs 项目: Rohansi/VM
 public Instruction(Instructions type, Operand left, Operand right)
 {
     Type = type;
     Left = left;
     Right = right;
 }