9.10.1 address
(addr)
The address
attribute specifies an absolute address for
the variable. This attribute can be used in conjunction with a section
attribute. This can be used to start a group of variables at a specific address:
int foo __attribute__((section("mysection"),address(0x900)));
int bar __attribute__((section("mysection")));
int baz __attribute__((section("mysection")));