예제 #1
0
 public rulong GetContextData(eContextData eContextData)
 {
     switch (eContextData)
     {
     case eContextData.UE_EIP: return(emu.InstructionPointer.ToLinear());
     }
     throw new NotImplementedException();
 }
예제 #2
0
 public rulong GetContextData(eContextData eContextData)
 {
     switch (eContextData)
     {
     case eContextData.UE_EIP: return emu.InstructionPointer.ToLinear();
     }
     throw new NotImplementedException();
 }
예제 #3
0
 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();
 }
예제 #4
0
파일: Debugger.cs 프로젝트: nemerle/reko
 public bool SetContextData(eContextData p1, rulong p2)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 public bool SetContextData(eContextData p1, rulong p2)
 {
     throw new NotImplementedException();
 }