public NIDebugger SetHardBreakPoint(uint address, HWBP_MODE mode, HWBP_TYPE type, HWBP_SIZE size) { return SetHardBreakPoint(new NIHardBreakPoint(address, mode, type, size) { enabled = true }); }
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; }