|
|||||||||||
|
Technical Support On-Line Manuals C166 User's Guide |
C166 User's GuidenearThe near memory type may be used for variables, constants, and functions. This memory is accessed using 16-bit addresses and may be on-chip or external.
Note
Declare near objects as follows:
unsigned char near near_variable;
unsigned char const near near_const_variable;
unsigned int near near_func (void)
{
return (0);
}
| ||||||||||
|
|||||||||||