When declared with __saddr, external variables and static variables in a function are allocated to the saddr area.
External variables and static variables in a function are allocated to the saddr area when they are declared with __saddr. |
Instructions that access the saddr area are shorter than those accessing the normal memory area and their object code also becomes smaller, leading to improved execution speed. |
Declare __saddr in the module or function that defines variables. |
__saddr variable-declaration; extern __saddr variable-declaration; static __saddr variable-declaration; __saddr extern variable-declaration; __saddr static variable-declaration; |
If __saddr is used for a purpose other than variable with static storage duration, a compilation error will occur. |
The following shows a sample C source code.
__saddr int hsmm0; //.sbss __saddr int hsmm1=1; //.sdata __saddr int *hsptr; //hsptr is allocated to. sbss //The pointed location is in a normal area. void main(){ hsmm0 -= hsmm1; hsptr = 0; } |
The following shows the declarations and section allocation in the assembly source code.
The following shows the code in the function.
The __saddr keyword cannot be used together with the __near or __far keyword, and a compilation error will occur if used so. |
#pragma saddr handles even a variable to which the __near or __far keyword is added as if __saddr was specified without a warning being output. |