< Compile Options / Object Options >
When the nostuff option is specified, the compiler allocates the variables belonging to the specified <section type> to 4-byte boundary alignment sections. When <section type> is omitted, variables of all section types are applicable. |
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,ROMDATA,ALIGN=4 .glb _c _c: .word 0000H .SECTION D,ROMDATA,ALIGN=4 .glb _b _b: .byte 00H .SECTION B,DATA,ALIGN=4 .glb _a _a: .blkl 1 .glb _ST _ST .blkb 2 |