Back to Know-How on Development for F2MC-16LX Family
6. Using the Pack-Un Pack function
If the -pack option is specified before compiling a C source program, structure areas are packed without occurring empty areas.
Therefore it is possible to increase Memory efficiency.
Example:
struct a{
char a_char;
int a_int;
}struct_data;

But the boundary alignment of 2 byte structure is assigned to the odd address. Therefore read access time of the odd address is later than it of structure member assigned to even address. Pay attention to the above details.
