User`s guide

Table Of Contents
4–26 User Commands
User Commands
cont
cont
The cont command continues execution from a breakpoint.
Format
cont
Parameters
None.
Description
The cont command continues from a breakpoint. The program continues until
another breakpoint or the end of the program is reached.
Example
EB64> stop 100000
EB64> go
Executing at 0x100000...
00100000: C1000003 br r8, 100010
EB64> step
00100010: 2F880007 ldq_u r28, 7(r8)
EB64> step
00100014: A49E0000 ldq r4, 0(sp)
EB64> cont
This simple program prints the sizes of
various data types in bytes.
char = 1
short = 2
int = 4
long = 8
float = 4
double = 8