Mosa.Compiler.Framework.InstructionNode.SetInstruction2 C# (CSharp) Method

SetInstruction2() public method

Sets the instruction.
public SetInstruction2 ( BaseInstruction instruction, Operand result, Operand result2, Operand operand1, Operand operand2, Operand operand3 ) : void
instruction BaseInstruction The instruction.
result Operand The result.
result2 Operand The result2.
operand1 Operand The operand1.
operand2 Operand The operand2.
operand3 Operand The operand3.
return void
        public void SetInstruction2(BaseInstruction instruction, Operand result, Operand result2, Operand operand1, Operand operand2, Operand operand3)
        {
            SetInstruction(instruction, 3, 2);
            Result = result;
            Result2 = result2;
            Operand1 = operand1;
            Operand2 = operand2;
            Operand3 = operand3;
        }

Same methods

InstructionNode::SetInstruction2 ( BaseInstruction instruction, Operand result, Operand result2 ) : void
InstructionNode::SetInstruction2 ( BaseInstruction instruction, Operand result, Operand result2, Operand operand1 ) : void
InstructionNode::SetInstruction2 ( BaseInstruction instruction, Operand result, Operand result2, Operand operand1, Operand operand2 ) : void