Example #1
0
 public NIDebugger SetHardBreakPoint(uint address, HWBP_MODE mode, HWBP_TYPE type, HWBP_SIZE size)
 {
     return SetHardBreakPoint(new NIHardBreakPoint(address, mode, type, size) { enabled = true });
 }
Example #2
0
 public NIHardBreakPoint(uint address, HWBP_MODE mode, HWBP_TYPE type, HWBP_SIZE size)
 {
     this.mode = mode;
     this.size = size;
     this.type = type;
     this.bpAddress = address;
 }