You copied the Doc URL to your clipboard.
Placement of __at sections at a specific address
You can give a section a special name that encodes the address where it must be placed.
You specify the special name as follows:
.ARM.__at_address
Where
is the required address of the section, normalized to
eight hexadecimal digits. You can specify this in hexadecimal or decimal. Sections in the
form of address
.ARM.__at_
are
referred to by the abbreviation address
__at
.
- Assigning variables to
__at
sections in C or C++ code -
// place
variable2
in a section called.ARM.__at_
int variable2 __attribute__((section(".ARM.__at_0x8000"))) = 10;0x8000