Beispiel #1
0
        public static x86Instruction Create(x86OpCode opCode, params Ix86Operand[] operands)
        {
            var ret = new x86Instruction();

            ret.OpCode   = opCode;
            ret.Operands = operands;
            return(ret);
        }
Beispiel #2
0
 public static x86Instruction Create(x86OpCode opCode, params Ix86Operand[] operands)
 {
     var ret = new x86Instruction();
     ret.OpCode = opCode;
     ret.Operands = operands;
     return ret;
 }