dolphin_reset
Resets the GameCube or Wii console by tapping the hardware reset button, clearing live RAM and returning the CPU to boot. Use save states to preserve game data before resetting.
Instructions
PURPOSE: Tap the GameCube/Wii hardware reset button. USAGE: Equivalent to power-cycling the reset button on the console front — game state is lost. To preserve state across the reset, dolphin_save_state first and dolphin_load_state after. BEHAVIOR: DESTRUCTIVE: clears live RAM, returns the CPU to boot. Movie state (if recording) flags the reset. RETURNS: 'Reset triggered.'
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- bridge/mcp_bridge.py:121-121 (helper)Python bridge helper function _reset that calls Felk's emulation.reset() API
def _reset(_p): emulation.reset(); return None - bridge/mcp_bridge.py:162-162 (helper)Registration of 'emulation.reset' handler in the bridge's HANDLERS dispatch table
"emulation.reset": _reset,