Exemplo n.º 1
0
 protected Instruction()
 {
     Type = Instructions.None;
     Left = null;
     Right = null;
 }
Exemplo n.º 2
0
 public Instruction(Instructions type, Operand left, Operand right)
 {
     Type = type;
     Left = left;
     Right = right;
 }