|
| Automatic VariablesThe C166 Compiler attempts to maintain automatic variables in CPU registers. Since the C16x/ST10 microcontroller has 16 registers, several automatic variables can be located in registers. When determining which automatic variables to store in registers, the optimizer in the C166 Compiler gives priority to index variables used in for and while loops. The best results are achieved by using int or unsigned int variables. |
|