 | C251 User's Guide |  |
|
|
| XSMALL Compiler Directive| Abbreviation | XSM | | Arguments | None. | | Default | TINY | | µVision | Options — C251 Compiler — Memory Model — Memory Model. | | Description | This directive implements the XSMALL memory model. The XSMALL memory model places all function variables and local data segments in the near memory of the 251 system. This ensures efficient access to near data objects. The default data pointer is 4 bytes which allows full access to the entire 251 address space. Regardless of memory model type, you may declare variables in any of the 251 memory areas. However, placing frequently used directives (such as loop counters and array indices) in data memory significantly improves system performance. Note - The stack required for function calls is always placed in near memory, refered as memory class EDATA.
- If your total variable space is less than 64 Kbytes, you should attempt to use the XTINY memory model instead of XSMALL.
| | See Also | HPTR | | Example |
C251 SAMPLE.C XSMALL
#pragma xsmall
|
|
|