< Compile Options / Object Options >
When the stuff option is specified, all variables are allocated to 4-byte, 2-byte, or 1-byte boundary alignment sections depending on the alignment value (see Table 2.4). |
[V3.01.00 or later] When the dpfpu option is specified, double type and long double type variables are allocated to 8-byte boundary alignment sections. |
C, D, and B are the section names specified by the section option or #pragma section. W is the section name specified by the section option. The data contents allocated to each section are output in the order they were defined. |
.SECTION C_2,ROMDATA,ALIGN=2 .glb _c _c: .word 0000H .SECTION D_1,ROMDATA .glb _b _b: .byte 00H .SECTION B,DATA,ALIGN=4 .glb _a _a: .blkl 1 .SECTION B_1,DATA .glb _ST _ST .blkb 2 |