public rulong GetContextData(eContextData eContextData) { switch (eContextData) { case eContextData.UE_EIP: return(emu.InstructionPointer.ToLinear()); } throw new NotImplementedException(); }
public rulong GetContextData(eContextData eContextData) { switch (eContextData) { case eContextData.UE_EIP: return emu.InstructionPointer.ToLinear(); } throw new NotImplementedException(); }
public bool SetContextData(eContextData reg, rulong value) { switch (reg) { case eContextData.UE_EIP: var cAddr = Constant.Create(arch.PointerType, value); emu.InstructionPointer = arch.MakeAddressFromConstant(cAddr, true); return(true); } throw new NotImplementedException(); }
public bool SetContextData(eContextData p1, rulong p2) { throw new NotImplementedException(); }