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 ) : void
instruction BaseInstruction The instruction.
result Operand The result.
result2 Operand The result2.
operand1 Operand The operand1.
operand2 Operand The operand2.
return void
        public void SetInstruction2(BaseInstruction instruction, Operand result, Operand result2, Operand operand1, Operand operand2)
        {
            SetInstruction(instruction, 2, 2);
            Result = result;
            Result2 = result2;
            Operand1 = operand1;
            Operand2 = operand2;
        }

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, Operand operand3 ) : void