User`s guide

Table Of Contents
User Commands 4–101
User Commands
next
Example
In the following example, the step command used at address 200034 steps to the first
instruction of the function being called at address 2000c0. The next command used
at address 2000ec executes the function being called and steps to the next instruction
at address 2000f0.
EB164> dis
00200030: a77d8010 ldq r27, 32784(r29)
00200034: 6b5b4000 jsr r26, r27
00200038: 27ba0001 ldah r29, 1(r26)
0020003c: 23bdc148 lda r29, 49480(r29)
EB164> step
00200030: a77d8010 ldq r27, 32784(r29)
EB164> step
00200034: 6b5b4000 jsr r26, r27
EB164> step
002000c0: 27bb0001 ldah r29, 1(r27)
.
.
.
EB164> dis
002000e8: a77d8040 ldq r27, 32832(r29)
002000ec: 6b5b46b8 jsr r26, r27
002000f0: 27ba0001 ldah r29, 1(r26)
EB164> step
002000e8: a77d8040 ldq r27, 32832(r29)
EB164> step
002000ec: 6b5b46b8 jsr r26, r27
EB164> next
002000f0: 27ba0001 ldah r29, 1(r26)
EB164>