csplus.add_address_breakpoint
|
This command adds an address breakpoint with additional type setting.
[Specification format]
csplus.add_address_breakpoint(address, breakpoint_type="", temporary=False)
|
[Argument(s)]
|
|
address
|
The address to set breakpoint at
|
breakpoint_type
|
The type of breakpoint to be set, either "Hardware" or "Software" (case-insensitive).
If not inputted or inputted with other value, the type will be decided by CS+.
|
temporary
|
A flag indicating whether the breakpoint should be hit only once or not
|
[Return value]
The index of the added breakpoint in the list of all breakpoints
[Detailed description]
- | The returned value is just the index at the time the breakpoint is added. It may be changed when other breakpoints are added/removed. |
[Example of use]
>>> csplus.add_address_breakpoint(0x12, "hardware", True)
2
|