User`s manual

Dynamic C Users Manual digi.com 227
#memmap
Syntax: #memmap options
Controls the default memory area for functions. The following options are available.
anymem NNNN: When code comes within NNNN bytes of the end of root code space, start putting it
in xmem. Default memory usage is #memmap anymem 0x2000.
root: All functions not declared as xmem go to root memory.
xmem: C functions not declared as root go to extended memory. Assembly blocks not marked as
xmem go to root memory. See the description for xmem for more information on this keyword.
#pragma
Syntax: #pragma nowarn [warnt|warns]
Trivial warnings (warnt) or trivial and serious warnings (warns) for the next physical line of code are
not displayed in the Compiler Messages window. The argument is optional; default behavior is warnt.
Syntax: #pragma nowarn [warnt|warns] start
Trivial warnings (warnt) or trivial and serious warnings (warns) are not displayed in the Compiler Mes-
sages window until the #pragma nowarn end statement is encountered. The argument is optional;
default behavior is warnt. #pragma nowarn cannot be nested.