GNIDA.mediana.tq_R C# (CSharp) Method

tq_R() public static method

public static tq_R ( long origin_offset, long offset, INSTRUCTION &instr, int op_index, OPERAND_SIZE opsize, INTERNAL_DATA idata, DISMODE mode ) : UInt32
origin_offset long
offset long
instr INSTRUCTION
op_index int
opsize OPERAND_SIZE
idata INTERNAL_DATA
mode DISMODE
return UInt32
        public static UInt32 tq_R(long origin_offset, long offset, ref INSTRUCTION instr, int op_index, OPERAND_SIZE opsize, INTERNAL_DATA idata, DISMODE mode)
        {
            UInt32 res = parse_rm_operand(origin_offset, offset, ref instr, op_index, opsize, ref idata, mode);
            if ((instr.modrm & 0xC0) != 0xC0)
            {
            idata.err = ERRS.ERR_RM_MEM;//error: rm encodes memory.
            }
            return res;
        }