public HxInstruction(HxOpCodes opcode, Value value)
 {
     OpCode = opcode;
     if (value == null)
         Operand = null;
     else
         Operand = value;
 }
 public HxInstruction(HxOpCodes opcode)
 {
     OpCode = opcode;
     Operand = null;
 }