CVAR
The CVAR macro accesses variables of any type at fixed absolute memory locations in the code memory class.
The CVAR macro is defined as:
#define CVAR(object, addr) (*((object volatile code *)(addr))) /* CODE */
You may use this macro in your programs as follows:
#include <absacc.h> /* include absolute memory access macros */
:
:
int i;
long l;
l = CVAR (long, 0xFFE0); /* read long value at CODE 0FFE0H */