From 57c4c43b8ad7777d66b4b6ddb6daed29ed796700 Mon Sep 17 00:00:00 2001 From: Simen Svale Date: Tue, 30 Dec 2025 03:46:39 +0100 Subject: [PATCH] Fix step() to use AdvanceInstructions command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Step command was removed in protocol cleanup, but step() still referenced it. Using AdvanceInstructions (0x71) which is the correct command for stepping. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/protocol/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/client.ts b/src/protocol/client.ts index 9621068..5ecf276 100644 --- a/src/protocol/client.ts +++ b/src/protocol/client.ts @@ -512,7 +512,7 @@ export class ViceClient { const body = Buffer.alloc(3); body[0] = stepOver ? 1 : 0; body.writeUInt16LE(count, 1); - const response = await this.sendCommand(Command.Step, body); + const response = await this.sendCommand(Command.AdvanceInstructions, body); this.state.running = false; return response; }