File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed
regression/goto-interpreter/help-output Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 8
8
^m: output memory dump$
9
9
^o: output goto trace$
10
10
^q: quit$
11
- ^r: run until completion $
11
+ ^r: run up to entry point $
12
12
^s#: step a number of instructions$
13
13
^sa: step across a function$
14
14
^so: step out of a function$
15
+ ^se: step until end of program$
15
16
^\d+- Program End\.$
16
17
^EXIT=0$
17
18
^SIGNAL=0$
Original file line number Diff line number Diff line change @@ -140,18 +140,18 @@ void interpretert::command()
140
140
done=true ;
141
141
else if (ch==' h' )
142
142
{
143
- status ()
144
- << " Interpreter help \n "
145
- << " h: display this menu \n "
146
- << " j : output json trace \n "
147
- << " m : output memory dump \n "
148
- << " o: output goto trace \n "
149
- << " q: quit \n "
150
- << " r: run until completion \n "
151
- << " s# : step a number of instructions \n "
152
- << " sa : step across a function\n "
153
- << " so : step out of a function \n "
154
- << eom;
143
+ status () << " Interpreter help \n "
144
+ << " h: display this menu \n "
145
+ << " j: output json trace \n "
146
+ << " m : output memory dump \n "
147
+ << " o : output goto trace \n "
148
+ << " q: quit \n "
149
+ << " r: run up to entry point \n "
150
+ << " s#: step a number of instructions \n "
151
+ << " sa : step across a function \n "
152
+ << " so : step out of a function\n "
153
+ << " se : step until end of program \n "
154
+ << eom;
155
155
}
156
156
else if (ch==' j' )
157
157
{
You can’t perform that action at this time.
0 commit comments