set_count_breakpoint
Set a count breakpoint to stop execution after a specified number of hits, enabling breaking in a loop at a specific iteration.
Instructions
Set a count breakpoint that stops after N-th hit.
Useful for breaking in a loop at a specific iteration.
Args: address: Address or symbol name count: Number of hits before stopping (e.g., 100 = stop on 100th hit) impl: "auto", "soft" (software counter, intrusive), or "hard" (on-chip counter, real-time)
Returns: Confirmation of count breakpoint
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| impl | No | auto | |
| count | Yes | ||
| address | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |