From a645e6259a46d4c33d5c20309aaaf88c5af3612b Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Sat, 24 Apr 2021 18:26:31 +0200 Subject: [PATCH] Added more debugger documentation --- docs/debugging.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/debugging.md b/docs/debugging.md index 927e6a1..2bd2ec5 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -63,9 +63,10 @@ and most common tasks should have helper methods for them. **Available helpers are:** * `dump(regs | addr)` dumps either registers or memory address -* `cont(verbose=True)` continue execution (verbose prints each executed instruction) +* `cont(verbose=False)` continue execution (verbose prints each executed instruction) * `step()` run the next instruction * `ins()` get current instruction (this reference is mutable, if you want to edit your code on the fly) +* `run_ins(name, *args)` Run an instruction in the current context. Symbols, jumping, etc are supported! Example: