Implement basic interpreter execution controls

This commit is contained in:
Yoshi Askharoun
2023-06-02 00:09:51 -05:00
parent 1dea74d1e5
commit f1a8627057
9 changed files with 153 additions and 45 deletions
@@ -0,0 +1,8 @@
namespace Microsoft.Iris.Debug.Data;
public enum InterpreterCommand : byte
{
Continue,
Break,
Step,
}