protected Instruction() { Type = Instructions.None; Left = null; Right = null; }
public Instruction(Instructions type, Operand left, Operand right) { Type = type; Left = left; Right = right; }