Accessing Absolute Memory Locations

The C programming language does not support a method of explicitly specifying the memory location of a static or global variable. If you need to reference explicit memory location there are three methods you can use:

    Absolute Memory Access Macros

    Linker Location Controls

    The at Keyword.

Each of these three methods is described below.