$NOSP
Action
Instruct the compiler that the stack pointer must not be set.

Syntax
$NOSP

Remarks
BASCOM initializes the processor depending on the used statements.
When you want to handle this by yourself you can specify this with the compiler directive $NOINIT.
The only initialization that is always done is the setting of the stack pointer and the initialization of the LCD display (if LCD statements are used).
With the $NOSP directive the stack will not be initialized either.

See also
$NOINIT


Example


$NOSP
$NOINIT
End