add_watchpoint
Set a hardware watchpoint to halt execution when a specified memory location is accessed, read, or written. Configure address, size, and access type.
Instructions
Add a data watchpoint. address : hex address to watch length : size in bytes (usually 1, 2, or 4) type : 'r' (read), 'w' (write), or 'a' (access/any) value : optional hex value to match (hardware dependent) mask : optional hex mask for the value match
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mask | No | ||
| type | No | w | |
| value | No | ||
| length | No | ||
| address | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |