Esempio n. 1
0
 public static LLXorInstruction Create(LLFunction pFunction, LLLocation pDestination, LLLocation pLeftSource, LLLocation pRightSource)
 {
     LLXorInstruction instruction = new LLXorInstruction(pFunction);
     instruction.mDestination = pDestination;
     instruction.mLeftSource = pLeftSource;
     instruction.mRightSource = pRightSource;
     return instruction;
 }
Esempio n. 2
0
        public static LLXorInstruction Create(LLFunction pFunction, LLLocation pDestination, LLLocation pLeftSource, LLLocation pRightSource)
        {
            LLXorInstruction instruction = new LLXorInstruction(pFunction);

            instruction.mDestination = pDestination;
            instruction.mLeftSource  = pLeftSource;
            instruction.mRightSource = pRightSource;
            return(instruction);
        }