Mono.Debugger.Architectures.X86_Instruction.DecodeModRM C# (CSharp) Method

DecodeModRM() protected method

protected DecodeModRM ( TargetReader reader ) : void
reader Mono.Debugger.Backend.TargetReader
return void
        protected void DecodeModRM(TargetReader reader)
        {
            ModRM = new X86_ModRM (this, reader.ReadByte ());

            if (Is64BitMode && (ModRM.Mod == 0) && ((ModRM.R_M & 0x07) == 0x05)) {
                is_ip_relative = true;
            }
        }