From f3f1842aa5f70477c2013fd08a744985ab835d73 Mon Sep 17 00:00:00 2001 From: empathicqubit Date: Thu, 25 Nov 2021 22:23:32 +0100 Subject: [PATCH] Document stepOut/stepOver functions. --- Docs/content/apireference/Emulation.md | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Docs/content/apireference/Emulation.md b/Docs/content/apireference/Emulation.md index 4d3ed495..785936dd 100644 --- a/Docs/content/apireference/Emulation.md +++ b/Docs/content/apireference/Emulation.md @@ -224,6 +224,36 @@ type - *Enum* See [executeCountType](/apireference/enums.html#executecounttype) **Description** Runs the emulator for the specified number of cycles/instructions and then breaks the execution. +## stepOut ## + +**Syntax** + + emu.stepOut() + +**Parameters** +*None* + +**Return value** +*None* + +**Description** +Steps over the next instruction and then breaks the execution. + +## stepOver ## + +**Syntax** + + emu.stepOver() + +**Parameters** +*None* + +**Return value** +*None* + +**Description** +Steps out of the current subroutine and then breaks the execution. + ## reset ## **Syntax**