gdb_next
Step over to the next line in Nintendo Switch debugging sessions using gdb-multiarch with Yuzu or hardware GDB stubs.
Instructions
Step over to the next line.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The `next` method implementation within `GDBSession` class, which sends the `-exec-next` GDB/MI command.
def next(self) -> dict[str, Any]: """ Step over (next source line, not entering functions). Waits for the step to complete before returning. The (gdb) prompt indicates GDB is ready for subsequent commands. Returns: Dict with status and execution result """ return self.execute_command("-exec-next") - src/gdb_multiarch_mcp/server.py:506-507 (handler)The tool handler logic in the server that dispatches the "gdb_next" request to `session.next()`.
elif name == "gdb_next": result = session.next()