User`s manual

Dynamic C Users Manual digi.com 199
continue
Skip to the next iteration of a loop.
while( expression ){
if( nothing to do ) continue;
...
}
costate
Indicates the beginning of a costatement.
costate [ name [ state ] ] {
...
}
Name can be absent. If name is present, state can be always_on or init_on. If state is absent,
the costatement is initially off.
debug
Indicates a function is to be compiled in debug mode. This is the default case for Dynamic C functions
with the exception of pure assembly language functions.
Library functions compiled in debug mode can be single stepped into, and breakpoints can be set in them.
debug int func(){
...
}
#asm debug
...
#endasm
The debug keyword in combination with the norst keyword will give you run-time checking without
debug. For example,
debug norst foo() {
}
will perform run-time checking if enabled, but will not have rst instructions.